if_rl.c revision 78508
140516Swpaul/*
240516Swpaul * Copyright (c) 1997, 1998
340516Swpaul *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
440516Swpaul *
540516Swpaul * Redistribution and use in source and binary forms, with or without
640516Swpaul * modification, are permitted provided that the following conditions
740516Swpaul * are met:
840516Swpaul * 1. Redistributions of source code must retain the above copyright
940516Swpaul *    notice, this list of conditions and the following disclaimer.
1040516Swpaul * 2. Redistributions in binary form must reproduce the above copyright
1140516Swpaul *    notice, this list of conditions and the following disclaimer in the
1240516Swpaul *    documentation and/or other materials provided with the distribution.
1340516Swpaul * 3. All advertising materials mentioning features or use of this software
1440516Swpaul *    must display the following acknowledgement:
1540516Swpaul *	This product includes software developed by Bill Paul.
1640516Swpaul * 4. Neither the name of the author nor the names of any co-contributors
1740516Swpaul *    may be used to endorse or promote products derived from this software
1840516Swpaul *    without specific prior written permission.
1940516Swpaul *
2040516Swpaul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
2140516Swpaul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2240516Swpaul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2340516Swpaul * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
2440516Swpaul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2540516Swpaul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2640516Swpaul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2740516Swpaul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2840516Swpaul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2940516Swpaul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3040516Swpaul * THE POSSIBILITY OF SUCH DAMAGE.
3140516Swpaul *
3250477Speter * $FreeBSD: head/sys/pci/if_rl.c 78508 2001-06-20 19:48:35Z bmilekic $
3340516Swpaul */
3440516Swpaul
3540516Swpaul/*
3640516Swpaul * RealTek 8129/8139 PCI NIC driver
3740516Swpaul *
3840516Swpaul * Supports several extremely cheap PCI 10/100 adapters based on
3940516Swpaul * the RealTek chipset. Datasheets can be obtained from
4040516Swpaul * www.realtek.com.tw.
4140516Swpaul *
4240516Swpaul * Written by Bill Paul <wpaul@ctr.columbia.edu>
4340516Swpaul * Electrical Engineering Department
4440516Swpaul * Columbia University, New York City
4540516Swpaul */
4640516Swpaul
4740516Swpaul/*
4840516Swpaul * The RealTek 8139 PCI NIC redefines the meaning of 'low end.' This is
4940516Swpaul * probably the worst PCI ethernet controller ever made, with the possible
5040516Swpaul * exception of the FEAST chip made by SMC. The 8139 supports bus-master
5140516Swpaul * DMA, but it has a terrible interface that nullifies any performance
5240516Swpaul * gains that bus-master DMA usually offers.
5340516Swpaul *
5440516Swpaul * For transmission, the chip offers a series of four TX descriptor
5540516Swpaul * registers. Each transmit frame must be in a contiguous buffer, aligned
5641569Swpaul * on a longword (32-bit) boundary. This means we almost always have to
5740516Swpaul * do mbuf copies in order to transmit a frame, except in the unlikely
5840516Swpaul * case where a) the packet fits into a single mbuf, and b) the packet
5940516Swpaul * is 32-bit aligned within the mbuf's data area. The presence of only
6040516Swpaul * four descriptor registers means that we can never have more than four
6140516Swpaul * packets queued for transmission at any one time.
6240516Swpaul *
6340516Swpaul * Reception is not much better. The driver has to allocate a single large
6440516Swpaul * buffer area (up to 64K in size) into which the chip will DMA received
6540516Swpaul * frames. Because we don't know where within this region received packets
6640516Swpaul * will begin or end, we have no choice but to copy data from the buffer
6740516Swpaul * area into mbufs in order to pass the packets up to the higher protocol
6840516Swpaul * levels.
6940516Swpaul *
7040516Swpaul * It's impossible given this rotten design to really achieve decent
7140516Swpaul * performance at 100Mbps, unless you happen to have a 400Mhz PII or
7240516Swpaul * some equally overmuscled CPU to drive it.
7340516Swpaul *
7440516Swpaul * On the bright side, the 8139 does have a built-in PHY, although
7540516Swpaul * rather than using an MDIO serial interface like most other NICs, the
7640516Swpaul * PHY registers are directly accessible through the 8139's register
7740516Swpaul * space. The 8139 supports autonegotiation, as well as a 64-bit multicast
7840516Swpaul * filter.
7940516Swpaul *
8040516Swpaul * The 8129 chip is an older version of the 8139 that uses an external PHY
8140516Swpaul * chip. The 8129 has a serial MDIO interface for accessing the MII where
8240516Swpaul * the 8139 lets you directly access the on-board PHY registers. We need
8340516Swpaul * to select which interface to use depending on the chip type.
8440516Swpaul */
8540516Swpaul
8640516Swpaul#include <sys/param.h>
8740516Swpaul#include <sys/systm.h>
8840516Swpaul#include <sys/sockio.h>
8940516Swpaul#include <sys/mbuf.h>
9040516Swpaul#include <sys/malloc.h>
9140516Swpaul#include <sys/kernel.h>
9240516Swpaul#include <sys/socket.h>
9340516Swpaul
9440516Swpaul#include <net/if.h>
9540516Swpaul#include <net/if_arp.h>
9640516Swpaul#include <net/ethernet.h>
9740516Swpaul#include <net/if_dl.h>
9840516Swpaul#include <net/if_media.h>
9940516Swpaul
10040516Swpaul#include <net/bpf.h>
10140516Swpaul
10240516Swpaul#include <vm/vm.h>              /* for vtophys */
10340516Swpaul#include <vm/pmap.h>            /* for vtophys */
10441569Swpaul#include <machine/bus_pio.h>
10541569Swpaul#include <machine/bus_memio.h>
10641569Swpaul#include <machine/bus.h>
10750703Swpaul#include <machine/resource.h>
10850703Swpaul#include <sys/bus.h>
10950703Swpaul#include <sys/rman.h>
11040516Swpaul
11150703Swpaul#include <dev/mii/mii.h>
11250703Swpaul#include <dev/mii/miivar.h>
11350703Swpaul
11440516Swpaul#include <pci/pcireg.h>
11540516Swpaul#include <pci/pcivar.h>
11640516Swpaul
11759758SpeterMODULE_DEPEND(rl, miibus, 1, 1, 1);
11859758Speter
11951089Speter/* "controller miibus0" required.  See GENERIC if you get errors here. */
12050703Swpaul#include "miibus_if.h"
12150703Swpaul
12240516Swpaul/*
12340516Swpaul * Default to using PIO access for this driver. On SMP systems,
12440516Swpaul * there appear to be problems with memory mapped mode: it looks like
12540516Swpaul * doing too many memory mapped access back to back in rapid succession
12640516Swpaul * can hang the bus. I'm inclined to blame this on crummy design/construction
12740516Swpaul * on the part of RealTek. Memory mapped mode does appear to work on
12840516Swpaul * uniprocessor systems though.
12940516Swpaul */
13040516Swpaul#define RL_USEIOSPACE
13140516Swpaul
13240516Swpaul#include <pci/if_rlreg.h>
13340516Swpaul
13440516Swpaul#ifndef lint
13541591Sarchiestatic const char rcsid[] =
13650477Speter  "$FreeBSD: head/sys/pci/if_rl.c 78508 2001-06-20 19:48:35Z bmilekic $";
13740516Swpaul#endif
13840516Swpaul
13940516Swpaul/*
14040516Swpaul * Various supported device vendors/types and their names.
14140516Swpaul */
14240516Swpaulstatic struct rl_type rl_devs[] = {
14340516Swpaul	{ RT_VENDORID, RT_DEVICEID_8129,
14440516Swpaul		"RealTek 8129 10/100BaseTX" },
14540516Swpaul	{ RT_VENDORID, RT_DEVICEID_8139,
14640516Swpaul		"RealTek 8139 10/100BaseTX" },
14767771Swpaul	{ RT_VENDORID, RT_DEVICEID_8138,
14867771Swpaul		"RealTek 8139 10/100BaseTX CardBus" },
14941243Swpaul	{ ACCTON_VENDORID, ACCTON_DEVICEID_5030,
15041243Swpaul		"Accton MPX 5030/5038 10/100BaseTX" },
15144238Swpaul	{ DELTA_VENDORID, DELTA_DEVICEID_8139,
15244238Swpaul		"Delta Electronics 8139 10/100BaseTX" },
15344238Swpaul	{ ADDTRON_VENDORID, ADDTRON_DEVICEID_8139,
15444238Swpaul		"Addtron Technolgy 8139 10/100BaseTX" },
15572813Swpaul	{ DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS,
15672813Swpaul		"D-Link DFE-530TX+ 10/100BaseTX" },
15740516Swpaul	{ 0, 0, NULL }
15840516Swpaul};
15940516Swpaul
16050703Swpaulstatic int rl_probe		__P((device_t));
16150703Swpaulstatic int rl_attach		__P((device_t));
16250703Swpaulstatic int rl_detach		__P((device_t));
16340516Swpaul
16445633Swpaulstatic int rl_encap		__P((struct rl_softc *, struct mbuf * ));
16540516Swpaul
16640516Swpaulstatic void rl_rxeof		__P((struct rl_softc *));
16740516Swpaulstatic void rl_txeof		__P((struct rl_softc *));
16840516Swpaulstatic void rl_intr		__P((void *));
16950703Swpaulstatic void rl_tick		__P((void *));
17040516Swpaulstatic void rl_start		__P((struct ifnet *));
17140516Swpaulstatic int rl_ioctl		__P((struct ifnet *, u_long, caddr_t));
17240516Swpaulstatic void rl_init		__P((void *));
17340516Swpaulstatic void rl_stop		__P((struct rl_softc *));
17440516Swpaulstatic void rl_watchdog		__P((struct ifnet *));
17550703Swpaulstatic void rl_shutdown		__P((device_t));
17640516Swpaulstatic int rl_ifmedia_upd	__P((struct ifnet *));
17740516Swpaulstatic void rl_ifmedia_sts	__P((struct ifnet *, struct ifmediareq *));
17840516Swpaul
17941656Swpaulstatic void rl_eeprom_putbyte	__P((struct rl_softc *, int));
18041656Swpaulstatic void rl_eeprom_getword	__P((struct rl_softc *, int, u_int16_t *));
18140516Swpaulstatic void rl_read_eeprom	__P((struct rl_softc *, caddr_t,
18240516Swpaul					int, int, int));
18340516Swpaulstatic void rl_mii_sync		__P((struct rl_softc *));
18440516Swpaulstatic void rl_mii_send		__P((struct rl_softc *, u_int32_t, int));
18540516Swpaulstatic int rl_mii_readreg	__P((struct rl_softc *, struct rl_mii_frame *));
18640516Swpaulstatic int rl_mii_writereg	__P((struct rl_softc *, struct rl_mii_frame *));
18740516Swpaul
18850703Swpaulstatic int rl_miibus_readreg	__P((device_t, int, int));
18950703Swpaulstatic int rl_miibus_writereg	__P((device_t, int, int, int));
19050703Swpaulstatic void rl_miibus_statchg	__P((device_t));
19140516Swpaul
19241656Swpaulstatic u_int8_t rl_calchash	__P((caddr_t));
19340516Swpaulstatic void rl_setmulti		__P((struct rl_softc *));
19440516Swpaulstatic void rl_reset		__P((struct rl_softc *));
19540516Swpaulstatic int rl_list_tx_init	__P((struct rl_softc *));
19640516Swpaul
19750703Swpaul#ifdef RL_USEIOSPACE
19850703Swpaul#define RL_RES			SYS_RES_IOPORT
19950703Swpaul#define RL_RID			RL_PCI_LOIO
20050703Swpaul#else
20150703Swpaul#define RL_RES			SYS_RES_MEMORY
20250703Swpaul#define RL_RID			RL_PCI_LOMEM
20350703Swpaul#endif
20450703Swpaul
20550703Swpaulstatic device_method_t rl_methods[] = {
20650703Swpaul	/* Device interface */
20750703Swpaul	DEVMETHOD(device_probe,		rl_probe),
20850703Swpaul	DEVMETHOD(device_attach,	rl_attach),
20950703Swpaul	DEVMETHOD(device_detach,	rl_detach),
21050703Swpaul	DEVMETHOD(device_shutdown,	rl_shutdown),
21150703Swpaul
21250703Swpaul	/* bus interface */
21350703Swpaul	DEVMETHOD(bus_print_child,	bus_generic_print_child),
21450703Swpaul	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
21550703Swpaul
21650703Swpaul	/* MII interface */
21750703Swpaul	DEVMETHOD(miibus_readreg,	rl_miibus_readreg),
21850703Swpaul	DEVMETHOD(miibus_writereg,	rl_miibus_writereg),
21950703Swpaul	DEVMETHOD(miibus_statchg,	rl_miibus_statchg),
22050703Swpaul
22150703Swpaul	{ 0, 0 }
22250703Swpaul};
22350703Swpaul
22450703Swpaulstatic driver_t rl_driver = {
22551455Swpaul	"rl",
22650703Swpaul	rl_methods,
22750703Swpaul	sizeof(struct rl_softc)
22850703Swpaul};
22950703Swpaul
23050703Swpaulstatic devclass_t rl_devclass;
23150703Swpaul
23251533SwpaulDRIVER_MODULE(if_rl, pci, rl_driver, rl_devclass, 0, 0);
23367931SwpaulDRIVER_MODULE(if_rl, cardbus, rl_driver, rl_devclass, 0, 0);
23451473SwpaulDRIVER_MODULE(miibus, rl, miibus_driver, miibus_devclass, 0, 0);
23550703Swpaul
23640516Swpaul#define EE_SET(x)					\
23740516Swpaul	CSR_WRITE_1(sc, RL_EECMD,			\
23840516Swpaul		CSR_READ_1(sc, RL_EECMD) | x)
23940516Swpaul
24040516Swpaul#define EE_CLR(x)					\
24140516Swpaul	CSR_WRITE_1(sc, RL_EECMD,			\
24240516Swpaul		CSR_READ_1(sc, RL_EECMD) & ~x)
24340516Swpaul
24440516Swpaul/*
24540516Swpaul * Send a read command and address to the EEPROM, check for ACK.
24640516Swpaul */
24740516Swpaulstatic void rl_eeprom_putbyte(sc, addr)
24840516Swpaul	struct rl_softc		*sc;
24941656Swpaul	int			addr;
25040516Swpaul{
25140516Swpaul	register int		d, i;
25240516Swpaul
25367931Swpaul	d = addr | sc->rl_eecmd_read;
25440516Swpaul
25540516Swpaul	/*
25655170Sbillf	 * Feed in each bit and strobe the clock.
25740516Swpaul	 */
25840516Swpaul	for (i = 0x400; i; i >>= 1) {
25940516Swpaul		if (d & i) {
26040516Swpaul			EE_SET(RL_EE_DATAIN);
26140516Swpaul		} else {
26240516Swpaul			EE_CLR(RL_EE_DATAIN);
26340516Swpaul		}
26440516Swpaul		DELAY(100);
26540516Swpaul		EE_SET(RL_EE_CLK);
26640516Swpaul		DELAY(150);
26740516Swpaul		EE_CLR(RL_EE_CLK);
26840516Swpaul		DELAY(100);
26940516Swpaul	}
27040516Swpaul
27140516Swpaul	return;
27240516Swpaul}
27340516Swpaul
27440516Swpaul/*
27540516Swpaul * Read a word of data stored in the EEPROM at address 'addr.'
27640516Swpaul */
27740516Swpaulstatic void rl_eeprom_getword(sc, addr, dest)
27840516Swpaul	struct rl_softc		*sc;
27941656Swpaul	int			addr;
28040516Swpaul	u_int16_t		*dest;
28140516Swpaul{
28240516Swpaul	register int		i;
28340516Swpaul	u_int16_t		word = 0;
28440516Swpaul
28540516Swpaul	/* Enter EEPROM access mode. */
28640516Swpaul	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
28740516Swpaul
28840516Swpaul	/*
28940516Swpaul	 * Send address of word we want to read.
29040516Swpaul	 */
29140516Swpaul	rl_eeprom_putbyte(sc, addr);
29240516Swpaul
29340516Swpaul	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
29440516Swpaul
29540516Swpaul	/*
29640516Swpaul	 * Start reading bits from EEPROM.
29740516Swpaul	 */
29840516Swpaul	for (i = 0x8000; i; i >>= 1) {
29940516Swpaul		EE_SET(RL_EE_CLK);
30040516Swpaul		DELAY(100);
30140516Swpaul		if (CSR_READ_1(sc, RL_EECMD) & RL_EE_DATAOUT)
30240516Swpaul			word |= i;
30340516Swpaul		EE_CLR(RL_EE_CLK);
30440516Swpaul		DELAY(100);
30540516Swpaul	}
30640516Swpaul
30740516Swpaul	/* Turn off EEPROM access mode. */
30840516Swpaul	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
30940516Swpaul
31040516Swpaul	*dest = word;
31140516Swpaul
31240516Swpaul	return;
31340516Swpaul}
31440516Swpaul
31540516Swpaul/*
31640516Swpaul * Read a sequence of words from the EEPROM.
31740516Swpaul */
31840516Swpaulstatic void rl_read_eeprom(sc, dest, off, cnt, swap)
31940516Swpaul	struct rl_softc		*sc;
32040516Swpaul	caddr_t			dest;
32140516Swpaul	int			off;
32240516Swpaul	int			cnt;
32340516Swpaul	int			swap;
32440516Swpaul{
32540516Swpaul	int			i;
32640516Swpaul	u_int16_t		word = 0, *ptr;
32740516Swpaul
32840516Swpaul	for (i = 0; i < cnt; i++) {
32940516Swpaul		rl_eeprom_getword(sc, off + i, &word);
33040516Swpaul		ptr = (u_int16_t *)(dest + (i * 2));
33140516Swpaul		if (swap)
33240516Swpaul			*ptr = ntohs(word);
33340516Swpaul		else
33440516Swpaul			*ptr = word;
33540516Swpaul	}
33640516Swpaul
33740516Swpaul	return;
33840516Swpaul}
33940516Swpaul
34040516Swpaul
34140516Swpaul/*
34240516Swpaul * MII access routines are provided for the 8129, which
34340516Swpaul * doesn't have a built-in PHY. For the 8139, we fake things
34440516Swpaul * up by diverting rl_phy_readreg()/rl_phy_writereg() to the
34540516Swpaul * direct access PHY registers.
34640516Swpaul */
34740516Swpaul#define MII_SET(x)					\
34840516Swpaul	CSR_WRITE_1(sc, RL_MII,				\
34940516Swpaul		CSR_READ_1(sc, RL_MII) | x)
35040516Swpaul
35140516Swpaul#define MII_CLR(x)					\
35240516Swpaul	CSR_WRITE_1(sc, RL_MII,				\
35340516Swpaul		CSR_READ_1(sc, RL_MII) & ~x)
35440516Swpaul
35540516Swpaul/*
35640516Swpaul * Sync the PHYs by setting data bit and strobing the clock 32 times.
35740516Swpaul */
35840516Swpaulstatic void rl_mii_sync(sc)
35940516Swpaul	struct rl_softc		*sc;
36040516Swpaul{
36140516Swpaul	register int		i;
36240516Swpaul
36340516Swpaul	MII_SET(RL_MII_DIR|RL_MII_DATAOUT);
36440516Swpaul
36540516Swpaul	for (i = 0; i < 32; i++) {
36640516Swpaul		MII_SET(RL_MII_CLK);
36740516Swpaul		DELAY(1);
36840516Swpaul		MII_CLR(RL_MII_CLK);
36940516Swpaul		DELAY(1);
37040516Swpaul	}
37140516Swpaul
37240516Swpaul	return;
37340516Swpaul}
37440516Swpaul
37540516Swpaul/*
37640516Swpaul * Clock a series of bits through the MII.
37740516Swpaul */
37840516Swpaulstatic void rl_mii_send(sc, bits, cnt)
37940516Swpaul	struct rl_softc		*sc;
38040516Swpaul	u_int32_t		bits;
38140516Swpaul	int			cnt;
38240516Swpaul{
38340516Swpaul	int			i;
38440516Swpaul
38540516Swpaul	MII_CLR(RL_MII_CLK);
38640516Swpaul
38740516Swpaul	for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
38840516Swpaul                if (bits & i) {
38940516Swpaul			MII_SET(RL_MII_DATAOUT);
39040516Swpaul                } else {
39140516Swpaul			MII_CLR(RL_MII_DATAOUT);
39240516Swpaul                }
39340516Swpaul		DELAY(1);
39440516Swpaul		MII_CLR(RL_MII_CLK);
39540516Swpaul		DELAY(1);
39640516Swpaul		MII_SET(RL_MII_CLK);
39740516Swpaul	}
39840516Swpaul}
39940516Swpaul
40040516Swpaul/*
40140516Swpaul * Read an PHY register through the MII.
40240516Swpaul */
40340516Swpaulstatic int rl_mii_readreg(sc, frame)
40440516Swpaul	struct rl_softc		*sc;
40540516Swpaul	struct rl_mii_frame	*frame;
40640516Swpaul
40740516Swpaul{
40867087Swpaul	int			i, ack;
40940516Swpaul
41067087Swpaul	RL_LOCK(sc);
41140516Swpaul
41240516Swpaul	/*
41340516Swpaul	 * Set up frame for RX.
41440516Swpaul	 */
41540516Swpaul	frame->mii_stdelim = RL_MII_STARTDELIM;
41640516Swpaul	frame->mii_opcode = RL_MII_READOP;
41740516Swpaul	frame->mii_turnaround = 0;
41840516Swpaul	frame->mii_data = 0;
41940516Swpaul
42040516Swpaul	CSR_WRITE_2(sc, RL_MII, 0);
42140516Swpaul
42240516Swpaul	/*
42340516Swpaul 	 * Turn on data xmit.
42440516Swpaul	 */
42540516Swpaul	MII_SET(RL_MII_DIR);
42640516Swpaul
42740516Swpaul	rl_mii_sync(sc);
42840516Swpaul
42940516Swpaul	/*
43040516Swpaul	 * Send command/address info.
43140516Swpaul	 */
43240516Swpaul	rl_mii_send(sc, frame->mii_stdelim, 2);
43340516Swpaul	rl_mii_send(sc, frame->mii_opcode, 2);
43440516Swpaul	rl_mii_send(sc, frame->mii_phyaddr, 5);
43540516Swpaul	rl_mii_send(sc, frame->mii_regaddr, 5);
43640516Swpaul
43740516Swpaul	/* Idle bit */
43840516Swpaul	MII_CLR((RL_MII_CLK|RL_MII_DATAOUT));
43940516Swpaul	DELAY(1);
44040516Swpaul	MII_SET(RL_MII_CLK);
44140516Swpaul	DELAY(1);
44240516Swpaul
44340516Swpaul	/* Turn off xmit. */
44440516Swpaul	MII_CLR(RL_MII_DIR);
44540516Swpaul
44640516Swpaul	/* Check for ack */
44740516Swpaul	MII_CLR(RL_MII_CLK);
44840516Swpaul	DELAY(1);
44940516Swpaul	MII_SET(RL_MII_CLK);
45040516Swpaul	DELAY(1);
45140516Swpaul	ack = CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN;
45240516Swpaul
45340516Swpaul	/*
45440516Swpaul	 * Now try reading data bits. If the ack failed, we still
45540516Swpaul	 * need to clock through 16 cycles to keep the PHY(s) in sync.
45640516Swpaul	 */
45740516Swpaul	if (ack) {
45840516Swpaul		for(i = 0; i < 16; i++) {
45940516Swpaul			MII_CLR(RL_MII_CLK);
46040516Swpaul			DELAY(1);
46140516Swpaul			MII_SET(RL_MII_CLK);
46240516Swpaul			DELAY(1);
46340516Swpaul		}
46440516Swpaul		goto fail;
46540516Swpaul	}
46640516Swpaul
46740516Swpaul	for (i = 0x8000; i; i >>= 1) {
46840516Swpaul		MII_CLR(RL_MII_CLK);
46940516Swpaul		DELAY(1);
47040516Swpaul		if (!ack) {
47140516Swpaul			if (CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN)
47240516Swpaul				frame->mii_data |= i;
47340516Swpaul			DELAY(1);
47440516Swpaul		}
47540516Swpaul		MII_SET(RL_MII_CLK);
47640516Swpaul		DELAY(1);
47740516Swpaul	}
47840516Swpaul
47940516Swpaulfail:
48040516Swpaul
48140516Swpaul	MII_CLR(RL_MII_CLK);
48240516Swpaul	DELAY(1);
48340516Swpaul	MII_SET(RL_MII_CLK);
48440516Swpaul	DELAY(1);
48540516Swpaul
48667087Swpaul	RL_UNLOCK(sc);
48740516Swpaul
48840516Swpaul	if (ack)
48940516Swpaul		return(1);
49040516Swpaul	return(0);
49140516Swpaul}
49240516Swpaul
49340516Swpaul/*
49440516Swpaul * Write to a PHY register through the MII.
49540516Swpaul */
49640516Swpaulstatic int rl_mii_writereg(sc, frame)
49740516Swpaul	struct rl_softc		*sc;
49840516Swpaul	struct rl_mii_frame	*frame;
49940516Swpaul
50040516Swpaul{
50167087Swpaul	RL_LOCK(sc);
50240516Swpaul
50340516Swpaul	/*
50440516Swpaul	 * Set up frame for TX.
50540516Swpaul	 */
50640516Swpaul
50740516Swpaul	frame->mii_stdelim = RL_MII_STARTDELIM;
50840516Swpaul	frame->mii_opcode = RL_MII_WRITEOP;
50940516Swpaul	frame->mii_turnaround = RL_MII_TURNAROUND;
51040516Swpaul
51140516Swpaul	/*
51240516Swpaul 	 * Turn on data output.
51340516Swpaul	 */
51440516Swpaul	MII_SET(RL_MII_DIR);
51540516Swpaul
51640516Swpaul	rl_mii_sync(sc);
51740516Swpaul
51840516Swpaul	rl_mii_send(sc, frame->mii_stdelim, 2);
51940516Swpaul	rl_mii_send(sc, frame->mii_opcode, 2);
52040516Swpaul	rl_mii_send(sc, frame->mii_phyaddr, 5);
52140516Swpaul	rl_mii_send(sc, frame->mii_regaddr, 5);
52240516Swpaul	rl_mii_send(sc, frame->mii_turnaround, 2);
52340516Swpaul	rl_mii_send(sc, frame->mii_data, 16);
52440516Swpaul
52540516Swpaul	/* Idle bit. */
52640516Swpaul	MII_SET(RL_MII_CLK);
52740516Swpaul	DELAY(1);
52840516Swpaul	MII_CLR(RL_MII_CLK);
52940516Swpaul	DELAY(1);
53040516Swpaul
53140516Swpaul	/*
53240516Swpaul	 * Turn off xmit.
53340516Swpaul	 */
53440516Swpaul	MII_CLR(RL_MII_DIR);
53540516Swpaul
53667087Swpaul	RL_UNLOCK(sc);
53740516Swpaul
53840516Swpaul	return(0);
53940516Swpaul}
54040516Swpaul
54150703Swpaulstatic int rl_miibus_readreg(dev, phy, reg)
54250703Swpaul	device_t		dev;
54350703Swpaul	int			phy, reg;
54450703Swpaul{
54540516Swpaul	struct rl_softc		*sc;
54640516Swpaul	struct rl_mii_frame	frame;
54740516Swpaul	u_int16_t		rval = 0;
54840516Swpaul	u_int16_t		rl8139_reg = 0;
54940516Swpaul
55050703Swpaul	sc = device_get_softc(dev);
55167087Swpaul	RL_LOCK(sc);
55250703Swpaul
55340516Swpaul	if (sc->rl_type == RL_8139) {
55450703Swpaul		/* Pretend the internal PHY is only at address 0 */
55567087Swpaul		if (phy) {
55667087Swpaul			RL_UNLOCK(sc);
55750703Swpaul			return(0);
55867087Swpaul		}
55940516Swpaul		switch(reg) {
56050703Swpaul		case MII_BMCR:
56140516Swpaul			rl8139_reg = RL_BMCR;
56240516Swpaul			break;
56350703Swpaul		case MII_BMSR:
56440516Swpaul			rl8139_reg = RL_BMSR;
56540516Swpaul			break;
56650703Swpaul		case MII_ANAR:
56740516Swpaul			rl8139_reg = RL_ANAR;
56840516Swpaul			break;
56950703Swpaul		case MII_ANER:
57050703Swpaul			rl8139_reg = RL_ANER;
57150703Swpaul			break;
57250703Swpaul		case MII_ANLPAR:
57340516Swpaul			rl8139_reg = RL_LPAR;
57440516Swpaul			break;
57550703Swpaul		case MII_PHYIDR1:
57650703Swpaul		case MII_PHYIDR2:
57767087Swpaul			RL_UNLOCK(sc);
57850703Swpaul			return(0);
57950703Swpaul			break;
58040516Swpaul		default:
58140516Swpaul			printf("rl%d: bad phy register\n", sc->rl_unit);
58267087Swpaul			RL_UNLOCK(sc);
58340516Swpaul			return(0);
58440516Swpaul		}
58540516Swpaul		rval = CSR_READ_2(sc, rl8139_reg);
58667087Swpaul		RL_UNLOCK(sc);
58740516Swpaul		return(rval);
58840516Swpaul	}
58940516Swpaul
59040516Swpaul	bzero((char *)&frame, sizeof(frame));
59140516Swpaul
59250703Swpaul	frame.mii_phyaddr = phy;
59340516Swpaul	frame.mii_regaddr = reg;
59440516Swpaul	rl_mii_readreg(sc, &frame);
59567087Swpaul	RL_UNLOCK(sc);
59640516Swpaul
59740516Swpaul	return(frame.mii_data);
59840516Swpaul}
59940516Swpaul
60050703Swpaulstatic int rl_miibus_writereg(dev, phy, reg, data)
60150703Swpaul	device_t		dev;
60250703Swpaul	int			phy, reg, data;
60350703Swpaul{
60440516Swpaul	struct rl_softc		*sc;
60540516Swpaul	struct rl_mii_frame	frame;
60640516Swpaul	u_int16_t		rl8139_reg = 0;
60740516Swpaul
60850703Swpaul	sc = device_get_softc(dev);
60967087Swpaul	RL_LOCK(sc);
61050703Swpaul
61140516Swpaul	if (sc->rl_type == RL_8139) {
61250703Swpaul		/* Pretend the internal PHY is only at address 0 */
61367087Swpaul		if (phy) {
61467087Swpaul			RL_UNLOCK(sc);
61550703Swpaul			return(0);
61667087Swpaul		}
61740516Swpaul		switch(reg) {
61850703Swpaul		case MII_BMCR:
61940516Swpaul			rl8139_reg = RL_BMCR;
62040516Swpaul			break;
62150703Swpaul		case MII_BMSR:
62240516Swpaul			rl8139_reg = RL_BMSR;
62340516Swpaul			break;
62450703Swpaul		case MII_ANAR:
62540516Swpaul			rl8139_reg = RL_ANAR;
62640516Swpaul			break;
62750703Swpaul		case MII_ANER:
62850703Swpaul			rl8139_reg = RL_ANER;
62950703Swpaul			break;
63050703Swpaul		case MII_ANLPAR:
63140516Swpaul			rl8139_reg = RL_LPAR;
63240516Swpaul			break;
63350703Swpaul		case MII_PHYIDR1:
63450703Swpaul		case MII_PHYIDR2:
63567087Swpaul			RL_UNLOCK(sc);
63650703Swpaul			return(0);
63750703Swpaul			break;
63840516Swpaul		default:
63940516Swpaul			printf("rl%d: bad phy register\n", sc->rl_unit);
64067087Swpaul			RL_UNLOCK(sc);
64150703Swpaul			return(0);
64240516Swpaul		}
64340516Swpaul		CSR_WRITE_2(sc, rl8139_reg, data);
64467087Swpaul		RL_UNLOCK(sc);
64550703Swpaul		return(0);
64640516Swpaul	}
64740516Swpaul
64840516Swpaul	bzero((char *)&frame, sizeof(frame));
64940516Swpaul
65050703Swpaul	frame.mii_phyaddr = phy;
65140516Swpaul	frame.mii_regaddr = reg;
65240516Swpaul	frame.mii_data = data;
65340516Swpaul
65440516Swpaul	rl_mii_writereg(sc, &frame);
65540516Swpaul
65667087Swpaul	RL_UNLOCK(sc);
65750703Swpaul	return(0);
65850703Swpaul}
65950703Swpaul
66050703Swpaulstatic void rl_miibus_statchg(dev)
66150703Swpaul	device_t		dev;
66250703Swpaul{
66340516Swpaul	return;
66440516Swpaul}
66540516Swpaul
66640516Swpaul/*
66743062Swpaul * Calculate CRC of a multicast group address, return the upper 6 bits.
66840516Swpaul */
66940516Swpaulstatic u_int8_t rl_calchash(addr)
67041656Swpaul	caddr_t			addr;
67140516Swpaul{
67240516Swpaul	u_int32_t		crc, carry;
67340516Swpaul	int			i, j;
67440516Swpaul	u_int8_t		c;
67540516Swpaul
67640516Swpaul	/* Compute CRC for the address value. */
67740516Swpaul	crc = 0xFFFFFFFF; /* initial value */
67840516Swpaul
67940516Swpaul	for (i = 0; i < 6; i++) {
68040516Swpaul		c = *(addr + i);
68140516Swpaul		for (j = 0; j < 8; j++) {
68240516Swpaul			carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
68340516Swpaul			crc <<= 1;
68440516Swpaul			c >>= 1;
68540516Swpaul			if (carry)
68640516Swpaul				crc = (crc ^ 0x04c11db6) | carry;
68740516Swpaul		}
68840516Swpaul	}
68940516Swpaul
69040516Swpaul	/* return the filter bit position */
69143062Swpaul	return(crc >> 26);
69240516Swpaul}
69340516Swpaul
69440516Swpaul/*
69540516Swpaul * Program the 64-bit multicast hash filter.
69640516Swpaul */
69740516Swpaulstatic void rl_setmulti(sc)
69840516Swpaul	struct rl_softc		*sc;
69940516Swpaul{
70040516Swpaul	struct ifnet		*ifp;
70140516Swpaul	int			h = 0;
70240516Swpaul	u_int32_t		hashes[2] = { 0, 0 };
70340516Swpaul	struct ifmultiaddr	*ifma;
70440516Swpaul	u_int32_t		rxfilt;
70540516Swpaul	int			mcnt = 0;
70640516Swpaul
70740516Swpaul	ifp = &sc->arpcom.ac_if;
70840516Swpaul
70940516Swpaul	rxfilt = CSR_READ_4(sc, RL_RXCFG);
71040516Swpaul
71143062Swpaul	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
71240516Swpaul		rxfilt |= RL_RXCFG_RX_MULTI;
71340516Swpaul		CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
71440516Swpaul		CSR_WRITE_4(sc, RL_MAR0, 0xFFFFFFFF);
71540516Swpaul		CSR_WRITE_4(sc, RL_MAR4, 0xFFFFFFFF);
71640516Swpaul		return;
71740516Swpaul	}
71840516Swpaul
71940516Swpaul	/* first, zot all the existing hash bits */
72040516Swpaul	CSR_WRITE_4(sc, RL_MAR0, 0);
72140516Swpaul	CSR_WRITE_4(sc, RL_MAR4, 0);
72240516Swpaul
72340516Swpaul	/* now program new ones */
72472084Sphk	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
72540516Swpaul		if (ifma->ifma_addr->sa_family != AF_LINK)
72640516Swpaul			continue;
72740516Swpaul		h = rl_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
72840516Swpaul		if (h < 32)
72940516Swpaul			hashes[0] |= (1 << h);
73040516Swpaul		else
73140516Swpaul			hashes[1] |= (1 << (h - 32));
73240516Swpaul		mcnt++;
73340516Swpaul	}
73440516Swpaul
73540516Swpaul	if (mcnt)
73640516Swpaul		rxfilt |= RL_RXCFG_RX_MULTI;
73740516Swpaul	else
73840516Swpaul		rxfilt &= ~RL_RXCFG_RX_MULTI;
73940516Swpaul
74040516Swpaul	CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
74140516Swpaul	CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
74240516Swpaul	CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
74340516Swpaul
74440516Swpaul	return;
74540516Swpaul}
74640516Swpaul
74740516Swpaulstatic void rl_reset(sc)
74840516Swpaul	struct rl_softc		*sc;
74940516Swpaul{
75040516Swpaul	register int		i;
75140516Swpaul
75240516Swpaul	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_RESET);
75340516Swpaul
75440516Swpaul	for (i = 0; i < RL_TIMEOUT; i++) {
75540516Swpaul		DELAY(10);
75640516Swpaul		if (!(CSR_READ_1(sc, RL_COMMAND) & RL_CMD_RESET))
75740516Swpaul			break;
75840516Swpaul	}
75940516Swpaul	if (i == RL_TIMEOUT)
76040516Swpaul		printf("rl%d: reset never completed!\n", sc->rl_unit);
76140516Swpaul
76240516Swpaul        return;
76340516Swpaul}
76440516Swpaul
76540516Swpaul/*
76640516Swpaul * Probe for a RealTek 8129/8139 chip. Check the PCI vendor and device
76740516Swpaul * IDs against our list and return a device name if we find a match.
76840516Swpaul */
76950703Swpaulstatic int rl_probe(dev)
77050703Swpaul	device_t		dev;
77140516Swpaul{
77240516Swpaul	struct rl_type		*t;
77340516Swpaul
77440516Swpaul	t = rl_devs;
77540516Swpaul
77640516Swpaul	while(t->rl_name != NULL) {
77750703Swpaul		if ((pci_get_vendor(dev) == t->rl_vid) &&
77850703Swpaul		    (pci_get_device(dev) == t->rl_did)) {
77950703Swpaul			device_set_desc(dev, t->rl_name);
78050703Swpaul			return(0);
78140516Swpaul		}
78240516Swpaul		t++;
78340516Swpaul	}
78440516Swpaul
78550703Swpaul	return(ENXIO);
78640516Swpaul}
78740516Swpaul
78840516Swpaul/*
78940516Swpaul * Attach the interface. Allocate softc structures, do ifmedia
79040516Swpaul * setup and ethernet/BPF attach.
79140516Swpaul */
79250703Swpaulstatic int rl_attach(dev)
79350703Swpaul	device_t		dev;
79440516Swpaul{
79540516Swpaul	u_char			eaddr[ETHER_ADDR_LEN];
79640516Swpaul	u_int32_t		command;
79740516Swpaul	struct rl_softc		*sc;
79840516Swpaul	struct ifnet		*ifp;
79940516Swpaul	u_int16_t		rl_did = 0;
80050703Swpaul	int			unit, error = 0, rid;
80140516Swpaul
80250703Swpaul	sc = device_get_softc(dev);
80350703Swpaul	unit = device_get_unit(dev);
80440516Swpaul	bzero(sc, sizeof(struct rl_softc));
80540516Swpaul
80671228Sbmilekic	mtx_init(&sc->rl_mtx, device_get_nameunit(dev), MTX_DEF | MTX_RECURSE);
80769583Swpaul	RL_LOCK(sc);
80869583Swpaul
80940516Swpaul	/*
81040516Swpaul	 * Handle power management nonsense.
81140516Swpaul	 */
81240516Swpaul
81370167Swpaul	if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
81470167Swpaul		u_int32_t		iobase, membase, irq;
81540516Swpaul
81670167Swpaul		/* Save important PCI config data. */
81770167Swpaul		iobase = pci_read_config(dev, RL_PCI_LOIO, 4);
81870167Swpaul		membase = pci_read_config(dev, RL_PCI_LOMEM, 4);
81970167Swpaul		irq = pci_read_config(dev, RL_PCI_INTLINE, 4);
82040516Swpaul
82170167Swpaul		/* Reset the power state. */
82270167Swpaul		printf("rl%d: chip is is in D%d power mode "
82370167Swpaul		    "-- setting to D0\n", unit,
82470167Swpaul		    pci_get_powerstate(dev));
82540516Swpaul
82670167Swpaul		pci_set_powerstate(dev, PCI_POWERSTATE_D0);
82740516Swpaul
82870167Swpaul		/* Restore PCI config data. */
82970167Swpaul		pci_write_config(dev, RL_PCI_LOIO, iobase, 4);
83070167Swpaul		pci_write_config(dev, RL_PCI_LOMEM, membase, 4);
83170167Swpaul		pci_write_config(dev, RL_PCI_INTLINE, irq, 4);
83240516Swpaul	}
83340516Swpaul
83440516Swpaul	/*
83540516Swpaul	 * Map control/status registers.
83640516Swpaul	 */
83772813Swpaul	pci_enable_busmaster(dev);
83872813Swpaul	pci_enable_io(dev, PCIM_CMD_PORTEN);
83972813Swpaul	pci_enable_io(dev, PCIM_CMD_MEMEN);
84061041Speter	command = pci_read_config(dev, PCIR_COMMAND, 4);
84140516Swpaul
84240516Swpaul#ifdef RL_USEIOSPACE
84340516Swpaul	if (!(command & PCIM_CMD_PORTEN)) {
84440516Swpaul		printf("rl%d: failed to enable I/O ports!\n", unit);
84550703Swpaul		error = ENXIO;
84640516Swpaul		goto fail;
84740516Swpaul	}
84840516Swpaul#else
84940516Swpaul	if (!(command & PCIM_CMD_MEMEN)) {
85040516Swpaul		printf("rl%d: failed to enable memory mapping!\n", unit);
85150703Swpaul		error = ENXIO;
85240516Swpaul		goto fail;
85340516Swpaul	}
85450703Swpaul#endif
85540516Swpaul
85650703Swpaul	rid = RL_RID;
85750703Swpaul	sc->rl_res = bus_alloc_resource(dev, RL_RES, &rid,
85850703Swpaul	    0, ~0, 1, RF_ACTIVE);
85950703Swpaul
86050703Swpaul	if (sc->rl_res == NULL) {
86150703Swpaul		printf ("rl%d: couldn't map ports/memory\n", unit);
86250703Swpaul		error = ENXIO;
86340516Swpaul		goto fail;
86440516Swpaul	}
86540516Swpaul
86669127Sroger	/* Detect the Realtek 8139B. For some reason, this chip is very
86769127Sroger	 * unstable when left to autoselect the media
86869127Sroger	 * The best workaround is to set the device to the required
86969127Sroger	 * media type or to set it to the 10 Meg speed.
87069127Sroger	 */
87169127Sroger
87269127Sroger	if ((rman_get_end(sc->rl_res)-rman_get_start(sc->rl_res))==0xff) {
87369127Sroger		printf("rl%d: Realtek 8139B detected. Warning, this may be unstable in autoselect mode\n", unit);
87469127Sroger	}
87569127Sroger
87650703Swpaul	sc->rl_btag = rman_get_bustag(sc->rl_res);
87750703Swpaul	sc->rl_bhandle = rman_get_bushandle(sc->rl_res);
87850703Swpaul
87950703Swpaul	rid = 0;
88050703Swpaul	sc->rl_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
88150703Swpaul	    RF_SHAREABLE | RF_ACTIVE);
88250703Swpaul
88350703Swpaul	if (sc->rl_irq == NULL) {
88440516Swpaul		printf("rl%d: couldn't map interrupt\n", unit);
88550703Swpaul		bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
88650703Swpaul		error = ENXIO;
88740516Swpaul		goto fail;
88840516Swpaul	}
88940516Swpaul
89050703Swpaul	error = bus_setup_intr(dev, sc->rl_irq, INTR_TYPE_NET,
89150703Swpaul	    rl_intr, sc, &sc->rl_intrhand);
89250703Swpaul
89350703Swpaul	if (error) {
89468215Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
89550703Swpaul		bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
89650703Swpaul		printf("rl%d: couldn't set up irq\n", unit);
89750703Swpaul		goto fail;
89850703Swpaul	}
89950703Swpaul
90050703Swpaul	callout_handle_init(&sc->rl_stat_ch);
90150703Swpaul
90240516Swpaul	/* Reset the adapter. */
90340516Swpaul	rl_reset(sc);
90467931Swpaul	sc->rl_eecmd_read = RL_EECMD_READ_6BIT;
90567931Swpaul	rl_read_eeprom(sc, (caddr_t)&rl_did, 0, 1, 0);
90668215Swpaul	if (rl_did != 0x8129)
90767931Swpaul		sc->rl_eecmd_read = RL_EECMD_READ_8BIT;
90840516Swpaul
90940516Swpaul	/*
91040516Swpaul	 * Get station address from the EEPROM.
91140516Swpaul	 */
91240516Swpaul	rl_read_eeprom(sc, (caddr_t)&eaddr, RL_EE_EADDR, 3, 0);
91340516Swpaul
91440516Swpaul	/*
91540516Swpaul	 * A RealTek chip was detected. Inform the world.
91640516Swpaul	 */
91740516Swpaul	printf("rl%d: Ethernet address: %6D\n", unit, eaddr, ":");
91840516Swpaul
91940516Swpaul	sc->rl_unit = unit;
92040516Swpaul	bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
92140516Swpaul
92240516Swpaul	/*
92340516Swpaul	 * Now read the exact device type from the EEPROM to find
92440516Swpaul	 * out if it's an 8129 or 8139.
92540516Swpaul	 */
92640516Swpaul	rl_read_eeprom(sc, (caddr_t)&rl_did, RL_EE_PCI_DID, 1, 0);
92740516Swpaul
92844238Swpaul	if (rl_did == RT_DEVICEID_8139 || rl_did == ACCTON_DEVICEID_5030 ||
92967771Swpaul	    rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139 ||
93072813Swpaul	    rl_did == RT_DEVICEID_8138 || rl_did == DLINK_DEVICEID_530TXPLUS)
93140516Swpaul		sc->rl_type = RL_8139;
93240516Swpaul	else if (rl_did == RT_DEVICEID_8129)
93340516Swpaul		sc->rl_type = RL_8129;
93440516Swpaul	else {
93540516Swpaul		printf("rl%d: unknown device ID: %x\n", unit, rl_did);
93650703Swpaul		bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
93768215Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
93850703Swpaul		bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
93950703Swpaul		error = ENXIO;
94040516Swpaul		goto fail;
94140516Swpaul	}
94240516Swpaul
94360043Swpaul	sc->rl_cdata.rl_rx_buf = contigmalloc(RL_RXBUFLEN + 1518, M_DEVBUF,
94451657Swpaul		M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
94540516Swpaul
94640516Swpaul	if (sc->rl_cdata.rl_rx_buf == NULL) {
94740516Swpaul		printf("rl%d: no memory for list buffers!\n", unit);
94850703Swpaul		bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
94968215Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
95050703Swpaul		bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
95150703Swpaul		error = ENXIO;
95240516Swpaul		goto fail;
95340516Swpaul	}
95440516Swpaul
95548028Swpaul	/* Leave a few bytes before the start of the RX ring buffer. */
95648028Swpaul	sc->rl_cdata.rl_rx_buf_ptr = sc->rl_cdata.rl_rx_buf;
95748028Swpaul	sc->rl_cdata.rl_rx_buf += sizeof(u_int64_t);
95848028Swpaul
95950703Swpaul	/* Do MII setup */
96050703Swpaul	if (mii_phy_probe(dev, &sc->rl_miibus,
96150703Swpaul	    rl_ifmedia_upd, rl_ifmedia_sts)) {
96250703Swpaul		printf("rl%d: MII without any phy!\n", sc->rl_unit);
96350703Swpaul		bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
96468215Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
96550703Swpaul		bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
96650703Swpaul		free(sc->rl_cdata.rl_rx_buf, M_DEVBUF);
96750703Swpaul		error = ENXIO;
96850703Swpaul		goto fail;
96950703Swpaul	}
97050703Swpaul
97140516Swpaul	ifp = &sc->arpcom.ac_if;
97240516Swpaul	ifp->if_softc = sc;
97340516Swpaul	ifp->if_unit = unit;
97440516Swpaul	ifp->if_name = "rl";
97540516Swpaul	ifp->if_mtu = ETHERMTU;
97640516Swpaul	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
97740516Swpaul	ifp->if_ioctl = rl_ioctl;
97840516Swpaul	ifp->if_output = ether_output;
97940516Swpaul	ifp->if_start = rl_start;
98040516Swpaul	ifp->if_watchdog = rl_watchdog;
98140516Swpaul	ifp->if_init = rl_init;
98240516Swpaul	ifp->if_baudrate = 10000000;
98345633Swpaul	ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
98440516Swpaul
98540516Swpaul	/*
98663090Sarchie	 * Call MI attach routine.
98740516Swpaul	 */
98863090Sarchie	ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
98967087Swpaul	RL_UNLOCK(sc);
99067087Swpaul	return(0);
99140516Swpaul
99240516Swpaulfail:
99367087Swpaul	RL_UNLOCK(sc);
99467087Swpaul	mtx_destroy(&sc->rl_mtx);
99550703Swpaul	return(error);
99640516Swpaul}
99740516Swpaul
99850703Swpaulstatic int rl_detach(dev)
99950703Swpaul	device_t		dev;
100050703Swpaul{
100150703Swpaul	struct rl_softc		*sc;
100250703Swpaul	struct ifnet		*ifp;
100350703Swpaul
100450703Swpaul	sc = device_get_softc(dev);
100567087Swpaul	RL_LOCK(sc);
100650703Swpaul	ifp = &sc->arpcom.ac_if;
100750703Swpaul
100863090Sarchie	ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
100950703Swpaul	rl_stop(sc);
101050703Swpaul
101150703Swpaul	bus_generic_detach(dev);
101250703Swpaul	device_delete_child(dev, sc->rl_miibus);
101350703Swpaul
101450703Swpaul	bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
101568215Swpaul	bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
101650703Swpaul	bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
101750703Swpaul
101852426Swpaul	contigfree(sc->rl_cdata.rl_rx_buf, RL_RXBUFLEN + 32, M_DEVBUF);
101950703Swpaul
102067087Swpaul	RL_UNLOCK(sc);
102167087Swpaul	mtx_destroy(&sc->rl_mtx);
102250703Swpaul
102350703Swpaul	return(0);
102450703Swpaul}
102550703Swpaul
102640516Swpaul/*
102740516Swpaul * Initialize the transmit descriptors.
102840516Swpaul */
102940516Swpaulstatic int rl_list_tx_init(sc)
103040516Swpaul	struct rl_softc		*sc;
103140516Swpaul{
103240516Swpaul	struct rl_chain_data	*cd;
103340516Swpaul	int			i;
103440516Swpaul
103540516Swpaul	cd = &sc->rl_cdata;
103640516Swpaul	for (i = 0; i < RL_TX_LIST_CNT; i++) {
103745633Swpaul		cd->rl_tx_chain[i] = NULL;
103848028Swpaul		CSR_WRITE_4(sc,
103948028Swpaul		    RL_TXADDR0 + (i * sizeof(u_int32_t)), 0x0000000);
104040516Swpaul	}
104140516Swpaul
104245633Swpaul	sc->rl_cdata.cur_tx = 0;
104345633Swpaul	sc->rl_cdata.last_tx = 0;
104440516Swpaul
104540516Swpaul	return(0);
104640516Swpaul}
104740516Swpaul
104840516Swpaul/*
104940516Swpaul * A frame has been uploaded: pass the resulting mbuf chain up to
105040516Swpaul * the higher level protocols.
105140516Swpaul *
105240516Swpaul * You know there's something wrong with a PCI bus-master chip design
105340516Swpaul * when you have to use m_devget().
105440516Swpaul *
105540516Swpaul * The receive operation is badly documented in the datasheet, so I'll
105640516Swpaul * attempt to document it here. The driver provides a buffer area and
105740516Swpaul * places its base address in the RX buffer start address register.
105840516Swpaul * The chip then begins copying frames into the RX buffer. Each frame
105972645Sasmodai * is preceded by a 32-bit RX status word which specifies the length
106040516Swpaul * of the frame and certain other status bits. Each frame (starting with
106140516Swpaul * the status word) is also 32-bit aligned. The frame length is in the
106240516Swpaul * first 16 bits of the status word; the lower 15 bits correspond with
106340516Swpaul * the 'rx status register' mentioned in the datasheet.
106448028Swpaul *
106548028Swpaul * Note: to make the Alpha happy, the frame payload needs to be aligned
106678508Sbmilekic * on a 32-bit boundary. To achieve this, we pass RL_ETHER_ALIGN (2 bytes)
106778508Sbmilekic * as the offset argument to m_devget().
106840516Swpaul */
106940516Swpaulstatic void rl_rxeof(sc)
107040516Swpaul	struct rl_softc		*sc;
107140516Swpaul{
107240516Swpaul        struct ether_header	*eh;
107340516Swpaul        struct mbuf		*m;
107440516Swpaul        struct ifnet		*ifp;
107540516Swpaul	int			total_len = 0;
107640516Swpaul	u_int32_t		rxstat;
107740516Swpaul	caddr_t			rxbufpos;
107840516Swpaul	int			wrap = 0;
107940516Swpaul	u_int16_t		cur_rx;
108040516Swpaul	u_int16_t		limit;
108140516Swpaul	u_int16_t		rx_bytes = 0, max_bytes;
108240516Swpaul
108340516Swpaul	ifp = &sc->arpcom.ac_if;
108440516Swpaul
108540516Swpaul	cur_rx = (CSR_READ_2(sc, RL_CURRXADDR) + 16) % RL_RXBUFLEN;
108640516Swpaul
108740516Swpaul	/* Do not try to read past this point. */
108840516Swpaul	limit = CSR_READ_2(sc, RL_CURRXBUF) % RL_RXBUFLEN;
108940516Swpaul
109040516Swpaul	if (limit < cur_rx)
109140516Swpaul		max_bytes = (RL_RXBUFLEN - cur_rx) + limit;
109240516Swpaul	else
109340516Swpaul		max_bytes = limit - cur_rx;
109440516Swpaul
109542738Swpaul	while((CSR_READ_1(sc, RL_COMMAND) & RL_CMD_EMPTY_RXBUF) == 0) {
109640516Swpaul		rxbufpos = sc->rl_cdata.rl_rx_buf + cur_rx;
109740516Swpaul		rxstat = *(u_int32_t *)rxbufpos;
109840516Swpaul
109940516Swpaul		/*
110040516Swpaul		 * Here's a totally undocumented fact for you. When the
110140516Swpaul		 * RealTek chip is in the process of copying a packet into
110240516Swpaul		 * RAM for you, the length will be 0xfff0. If you spot a
110340516Swpaul		 * packet header with this value, you need to stop. The
110440516Swpaul		 * datasheet makes absolutely no mention of this and
110540516Swpaul		 * RealTek should be shot for this.
110640516Swpaul		 */
110740516Swpaul		if ((u_int16_t)(rxstat >> 16) == RL_RXSTAT_UNFINISHED)
110840516Swpaul			break;
110940516Swpaul
111040516Swpaul		if (!(rxstat & RL_RXSTAT_RXOK)) {
111140516Swpaul			ifp->if_ierrors++;
111250703Swpaul			rl_init(sc);
111350703Swpaul			return;
111440516Swpaul		}
111540516Swpaul
111640516Swpaul		/* No errors; receive the packet. */
111740516Swpaul		total_len = rxstat >> 16;
111840516Swpaul		rx_bytes += total_len + 4;
111940516Swpaul
112040516Swpaul		/*
112142051Swpaul		 * XXX The RealTek chip includes the CRC with every
112242051Swpaul		 * received frame, and there's no way to turn this
112342051Swpaul		 * behavior off (at least, I can't find anything in
112442051Swpaul	 	 * the manual that explains how to do it) so we have
112542051Swpaul		 * to trim off the CRC manually.
112642051Swpaul		 */
112742051Swpaul		total_len -= ETHER_CRC_LEN;
112842051Swpaul
112942051Swpaul		/*
113040516Swpaul		 * Avoid trying to read more bytes than we know
113140516Swpaul		 * the chip has prepared for us.
113240516Swpaul		 */
113340516Swpaul		if (rx_bytes > max_bytes)
113440516Swpaul			break;
113540516Swpaul
113640516Swpaul		rxbufpos = sc->rl_cdata.rl_rx_buf +
113740516Swpaul			((cur_rx + sizeof(u_int32_t)) % RL_RXBUFLEN);
113840516Swpaul
113940516Swpaul		if (rxbufpos == (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN))
114040516Swpaul			rxbufpos = sc->rl_cdata.rl_rx_buf;
114140516Swpaul
114240516Swpaul		wrap = (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN) - rxbufpos;
114340516Swpaul
114440516Swpaul		if (total_len > wrap) {
114578508Sbmilekic			m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
114678508Sbmilekic			    NULL);
114740516Swpaul			if (m == NULL) {
114840516Swpaul				ifp->if_ierrors++;
114940516Swpaul				printf("rl%d: out of mbufs, tried to "
115052426Swpaul				    "copy %d bytes\n", sc->rl_unit, wrap);
115152426Swpaul			} else {
115240516Swpaul				m_copyback(m, wrap, total_len - wrap,
115340516Swpaul					sc->rl_cdata.rl_rx_buf);
115448028Swpaul			}
115542051Swpaul			cur_rx = (total_len - wrap + ETHER_CRC_LEN);
115640516Swpaul		} else {
115778508Sbmilekic			m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
115878508Sbmilekic			    NULL);
115940516Swpaul			if (m == NULL) {
116040516Swpaul				ifp->if_ierrors++;
116140516Swpaul				printf("rl%d: out of mbufs, tried to "
116252426Swpaul				    "copy %d bytes\n", sc->rl_unit, total_len);
116378508Sbmilekic			}
116442051Swpaul			cur_rx += total_len + 4 + ETHER_CRC_LEN;
116540516Swpaul		}
116640516Swpaul
116740516Swpaul		/*
116840516Swpaul		 * Round up to 32-bit boundary.
116940516Swpaul		 */
117040516Swpaul		cur_rx = (cur_rx + 3) & ~3;
117140516Swpaul		CSR_WRITE_2(sc, RL_CURRXADDR, cur_rx - 16);
117240516Swpaul
117340516Swpaul		if (m == NULL)
117440516Swpaul			continue;
117540516Swpaul
117640516Swpaul		eh = mtod(m, struct ether_header *);
117740516Swpaul		ifp->if_ipackets++;
117840516Swpaul
117940516Swpaul		/* Remove header from mbuf and pass it on. */
118040516Swpaul		m_adj(m, sizeof(struct ether_header));
118140516Swpaul		ether_input(ifp, eh, m);
118240516Swpaul	}
118340516Swpaul
118440516Swpaul	return;
118540516Swpaul}
118640516Swpaul
118740516Swpaul/*
118840516Swpaul * A frame was downloaded to the chip. It's safe for us to clean up
118940516Swpaul * the list buffers.
119040516Swpaul */
119140516Swpaulstatic void rl_txeof(sc)
119240516Swpaul	struct rl_softc		*sc;
119340516Swpaul{
119440516Swpaul	struct ifnet		*ifp;
119540516Swpaul	u_int32_t		txstat;
119640516Swpaul
119740516Swpaul	ifp = &sc->arpcom.ac_if;
119840516Swpaul
119940516Swpaul	/* Clear the timeout timer. */
120040516Swpaul	ifp->if_timer = 0;
120140516Swpaul
120240516Swpaul	/*
120340516Swpaul	 * Go through our tx list and free mbufs for those
120440516Swpaul	 * frames that have been uploaded.
120540516Swpaul	 */
120645633Swpaul	do {
120745633Swpaul		txstat = CSR_READ_4(sc, RL_LAST_TXSTAT(sc));
120845633Swpaul		if (!(txstat & (RL_TXSTAT_TX_OK|
120945633Swpaul		    RL_TXSTAT_TX_UNDERRUN|RL_TXSTAT_TXABRT)))
121040516Swpaul			break;
121140516Swpaul
121245633Swpaul		ifp->if_collisions += (txstat & RL_TXSTAT_COLLCNT) >> 24;
121340516Swpaul
121445633Swpaul		if (RL_LAST_TXMBUF(sc) != NULL) {
121545633Swpaul			m_freem(RL_LAST_TXMBUF(sc));
121645633Swpaul			RL_LAST_TXMBUF(sc) = NULL;
121745633Swpaul		}
121845633Swpaul		if (txstat & RL_TXSTAT_TX_OK)
121945633Swpaul			ifp->if_opackets++;
122045633Swpaul		else {
122152426Swpaul			int			oldthresh;
122245633Swpaul			ifp->if_oerrors++;
122345633Swpaul			if ((txstat & RL_TXSTAT_TXABRT) ||
122445633Swpaul			    (txstat & RL_TXSTAT_OUTOFWIN))
122545633Swpaul				CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
122652426Swpaul			oldthresh = sc->rl_txthresh;
122752426Swpaul			/* error recovery */
122852426Swpaul			rl_reset(sc);
122952426Swpaul			rl_init(sc);
123052426Swpaul			/*
123152426Swpaul			 * If there was a transmit underrun,
123252426Swpaul			 * bump the TX threshold.
123352426Swpaul			 */
123452426Swpaul			if (txstat & RL_TXSTAT_TX_UNDERRUN)
123552426Swpaul				sc->rl_txthresh = oldthresh + 32;
123652426Swpaul			return;
123745633Swpaul		}
123845633Swpaul		RL_INC(sc->rl_cdata.last_tx);
123945633Swpaul		ifp->if_flags &= ~IFF_OACTIVE;
124045633Swpaul	} while (sc->rl_cdata.last_tx != sc->rl_cdata.cur_tx);
124140516Swpaul
124250703Swpaul	return;
124350703Swpaul}
124440516Swpaul
124550703Swpaulstatic void rl_tick(xsc)
124650703Swpaul	void			*xsc;
124750703Swpaul{
124850703Swpaul	struct rl_softc		*sc;
124950703Swpaul	struct mii_data		*mii;
125050703Swpaul
125150703Swpaul	sc = xsc;
125267087Swpaul	RL_LOCK(sc);
125350703Swpaul	mii = device_get_softc(sc->rl_miibus);
125450703Swpaul
125550703Swpaul	mii_tick(mii);
125650703Swpaul
125750703Swpaul	sc->rl_stat_ch = timeout(rl_tick, sc, hz);
125867087Swpaul	RL_UNLOCK(sc);
125950703Swpaul
126040516Swpaul	return;
126140516Swpaul}
126240516Swpaul
126340516Swpaulstatic void rl_intr(arg)
126440516Swpaul	void			*arg;
126540516Swpaul{
126640516Swpaul	struct rl_softc		*sc;
126740516Swpaul	struct ifnet		*ifp;
126840516Swpaul	u_int16_t		status;
126940516Swpaul
127040516Swpaul	sc = arg;
127167087Swpaul	RL_LOCK(sc);
127240516Swpaul	ifp = &sc->arpcom.ac_if;
127340516Swpaul
127440516Swpaul	/* Disable interrupts. */
127540516Swpaul	CSR_WRITE_2(sc, RL_IMR, 0x0000);
127640516Swpaul
127740516Swpaul	for (;;) {
127840516Swpaul
127940516Swpaul		status = CSR_READ_2(sc, RL_ISR);
128040516Swpaul		if (status)
128140516Swpaul			CSR_WRITE_2(sc, RL_ISR, status);
128240516Swpaul
128340516Swpaul		if ((status & RL_INTRS) == 0)
128440516Swpaul			break;
128540516Swpaul
128640516Swpaul		if (status & RL_ISR_RX_OK)
128740516Swpaul			rl_rxeof(sc);
128840516Swpaul
128940516Swpaul		if (status & RL_ISR_RX_ERR)
129040516Swpaul			rl_rxeof(sc);
129140516Swpaul
129245633Swpaul		if ((status & RL_ISR_TX_OK) || (status & RL_ISR_TX_ERR))
129340516Swpaul			rl_txeof(sc);
129440516Swpaul
129540516Swpaul		if (status & RL_ISR_SYSTEM_ERR) {
129640516Swpaul			rl_reset(sc);
129740516Swpaul			rl_init(sc);
129840516Swpaul		}
129940516Swpaul
130040516Swpaul	}
130140516Swpaul
130240516Swpaul	/* Re-enable interrupts. */
130340516Swpaul	CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
130440516Swpaul
130552426Swpaul	if (ifp->if_snd.ifq_head != NULL)
130640516Swpaul		rl_start(ifp);
130740516Swpaul
130867087Swpaul	RL_UNLOCK(sc);
130967087Swpaul
131040516Swpaul	return;
131140516Swpaul}
131240516Swpaul
131340516Swpaul/*
131440516Swpaul * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
131540516Swpaul * pointers to the fragment pointers.
131640516Swpaul */
131745633Swpaulstatic int rl_encap(sc, m_head)
131840516Swpaul	struct rl_softc		*sc;
131940516Swpaul	struct mbuf		*m_head;
132040516Swpaul{
132141243Swpaul	struct mbuf		*m_new = NULL;
132240516Swpaul
132340516Swpaul	/*
132445633Swpaul	 * The RealTek is brain damaged and wants longword-aligned
132545633Swpaul	 * TX buffers, plus we can only have one fragment buffer
132645633Swpaul	 * per packet. We have to copy pretty much all the time.
132740516Swpaul	 */
132840516Swpaul
132941243Swpaul	MGETHDR(m_new, M_DONTWAIT, MT_DATA);
133041243Swpaul	if (m_new == NULL) {
133141243Swpaul		printf("rl%d: no memory for tx list", sc->rl_unit);
133241243Swpaul		return(1);
133341243Swpaul	}
133441243Swpaul	if (m_head->m_pkthdr.len > MHLEN) {
133541243Swpaul		MCLGET(m_new, M_DONTWAIT);
133641243Swpaul		if (!(m_new->m_flags & M_EXT)) {
133741243Swpaul			m_freem(m_new);
133841243Swpaul			printf("rl%d: no memory for tx list",
133941243Swpaul					sc->rl_unit);
134040516Swpaul			return(1);
134140516Swpaul		}
134240516Swpaul	}
134352426Swpaul	m_copydata(m_head, 0, m_head->m_pkthdr.len, mtod(m_new, caddr_t));
134441243Swpaul	m_new->m_pkthdr.len = m_new->m_len = m_head->m_pkthdr.len;
134541243Swpaul	m_freem(m_head);
134641243Swpaul	m_head = m_new;
134740516Swpaul
134840516Swpaul	/* Pad frames to at least 60 bytes. */
134941243Swpaul	if (m_head->m_pkthdr.len < RL_MIN_FRAMELEN) {
135055058Swpaul		/*
135155058Swpaul		 * Make security concious people happy: zero out the
135255058Swpaul		 * bytes in the pad area, since we don't know what
135355058Swpaul		 * this mbuf cluster buffer's previous user might
135455058Swpaul		 * have left in it.
135555058Swpaul	 	 */
135655058Swpaul		bzero(mtod(m_head, char *) + m_head->m_pkthdr.len,
135755058Swpaul		     RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
135840516Swpaul		m_head->m_pkthdr.len +=
135952426Swpaul		    (RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
136041243Swpaul		m_head->m_len = m_head->m_pkthdr.len;
136141243Swpaul	}
136240516Swpaul
136345633Swpaul	RL_CUR_TXMBUF(sc) = m_head;
136440516Swpaul
136540516Swpaul	return(0);
136640516Swpaul}
136740516Swpaul
136840516Swpaul/*
136940516Swpaul * Main transmit routine.
137040516Swpaul */
137140516Swpaul
137240516Swpaulstatic void rl_start(ifp)
137340516Swpaul	struct ifnet		*ifp;
137440516Swpaul{
137540516Swpaul	struct rl_softc		*sc;
137640516Swpaul	struct mbuf		*m_head = NULL;
137740516Swpaul
137840516Swpaul	sc = ifp->if_softc;
137967087Swpaul	RL_LOCK(sc);
138040516Swpaul
138145633Swpaul	while(RL_CUR_TXMBUF(sc) == NULL) {
138240516Swpaul		IF_DEQUEUE(&ifp->if_snd, m_head);
138340516Swpaul		if (m_head == NULL)
138440516Swpaul			break;
138540516Swpaul
138658801Swpaul		if (rl_encap(sc, m_head)) {
138758801Swpaul			IF_PREPEND(&ifp->if_snd, m_head);
138858801Swpaul			ifp->if_flags |= IFF_OACTIVE;
138958801Swpaul			break;
139058801Swpaul		}
139140516Swpaul
139240516Swpaul		/*
139340516Swpaul		 * If there's a BPF listener, bounce a copy of this frame
139440516Swpaul		 * to him.
139540516Swpaul		 */
139640516Swpaul		if (ifp->if_bpf)
139745633Swpaul			bpf_mtap(ifp, RL_CUR_TXMBUF(sc));
139851583Swpaul
139940516Swpaul		/*
140040516Swpaul		 * Transmit the frame.
140140516Swpaul	 	 */
140245633Swpaul		CSR_WRITE_4(sc, RL_CUR_TXADDR(sc),
140345633Swpaul		    vtophys(mtod(RL_CUR_TXMBUF(sc), caddr_t)));
140445633Swpaul		CSR_WRITE_4(sc, RL_CUR_TXSTAT(sc),
140552426Swpaul		    RL_TXTHRESH(sc->rl_txthresh) |
140652426Swpaul		    RL_CUR_TXMBUF(sc)->m_pkthdr.len);
140745633Swpaul
140845633Swpaul		RL_INC(sc->rl_cdata.cur_tx);
140940516Swpaul	}
141040516Swpaul
141140516Swpaul	/*
141245633Swpaul	 * We broke out of the loop because all our TX slots are
141345633Swpaul	 * full. Mark the NIC as busy until it drains some of the
141445633Swpaul	 * packets from the queue.
141545633Swpaul	 */
141645633Swpaul	if (RL_CUR_TXMBUF(sc) != NULL)
141745633Swpaul		ifp->if_flags |= IFF_OACTIVE;
141845633Swpaul
141945633Swpaul	/*
142040516Swpaul	 * Set a timeout in case the chip goes out to lunch.
142140516Swpaul	 */
142240516Swpaul	ifp->if_timer = 5;
142367087Swpaul	RL_UNLOCK(sc);
142440516Swpaul
142540516Swpaul	return;
142640516Swpaul}
142740516Swpaul
142840516Swpaulstatic void rl_init(xsc)
142940516Swpaul	void			*xsc;
143040516Swpaul{
143140516Swpaul	struct rl_softc		*sc = xsc;
143240516Swpaul	struct ifnet		*ifp = &sc->arpcom.ac_if;
143350703Swpaul	struct mii_data		*mii;
143467087Swpaul	int			i;
143540516Swpaul	u_int32_t		rxcfg = 0;
143640516Swpaul
143767087Swpaul	RL_LOCK(sc);
143850703Swpaul	mii = device_get_softc(sc->rl_miibus);
143940516Swpaul
144040516Swpaul	/*
144140516Swpaul	 * Cancel pending I/O and free all RX/TX buffers.
144240516Swpaul	 */
144340516Swpaul	rl_stop(sc);
144440516Swpaul
144540516Swpaul	/* Init our MAC address */
144640516Swpaul	for (i = 0; i < ETHER_ADDR_LEN; i++) {
144740516Swpaul		CSR_WRITE_1(sc, RL_IDR0 + i, sc->arpcom.ac_enaddr[i]);
144840516Swpaul	}
144940516Swpaul
145040516Swpaul	/* Init the RX buffer pointer register. */
145140516Swpaul	CSR_WRITE_4(sc, RL_RXADDR, vtophys(sc->rl_cdata.rl_rx_buf));
145240516Swpaul
145340516Swpaul	/* Init TX descriptors. */
145440516Swpaul	rl_list_tx_init(sc);
145540516Swpaul
145640516Swpaul	/*
145740516Swpaul	 * Enable transmit and receive.
145840516Swpaul	 */
145940516Swpaul	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
146040516Swpaul
146140516Swpaul	/*
146245633Swpaul	 * Set the initial TX and RX configuration.
146340516Swpaul	 */
146445633Swpaul	CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
146540516Swpaul	CSR_WRITE_4(sc, RL_RXCFG, RL_RXCFG_CONFIG);
146640516Swpaul
146740516Swpaul	/* Set the individual bit to receive frames for this host only. */
146840516Swpaul	rxcfg = CSR_READ_4(sc, RL_RXCFG);
146940516Swpaul	rxcfg |= RL_RXCFG_RX_INDIV;
147040516Swpaul
147140516Swpaul	/* If we want promiscuous mode, set the allframes bit. */
147240516Swpaul	if (ifp->if_flags & IFF_PROMISC) {
147340516Swpaul		rxcfg |= RL_RXCFG_RX_ALLPHYS;
147440516Swpaul		CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
147540516Swpaul	} else {
147640516Swpaul		rxcfg &= ~RL_RXCFG_RX_ALLPHYS;
147740516Swpaul		CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
147840516Swpaul	}
147940516Swpaul
148040516Swpaul	/*
148140516Swpaul	 * Set capture broadcast bit to capture broadcast frames.
148240516Swpaul	 */
148340516Swpaul	if (ifp->if_flags & IFF_BROADCAST) {
148440516Swpaul		rxcfg |= RL_RXCFG_RX_BROAD;
148540516Swpaul		CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
148640516Swpaul	} else {
148740516Swpaul		rxcfg &= ~RL_RXCFG_RX_BROAD;
148840516Swpaul		CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
148940516Swpaul	}
149040516Swpaul
149140516Swpaul	/*
149240516Swpaul	 * Program the multicast filter, if necessary.
149340516Swpaul	 */
149440516Swpaul	rl_setmulti(sc);
149540516Swpaul
149640516Swpaul	/*
149740516Swpaul	 * Enable interrupts.
149840516Swpaul	 */
149940516Swpaul	CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
150040516Swpaul
150152426Swpaul	/* Set initial TX threshold */
150252426Swpaul	sc->rl_txthresh = RL_TX_THRESH_INIT;
150352426Swpaul
150440516Swpaul	/* Start RX/TX process. */
150540516Swpaul	CSR_WRITE_4(sc, RL_MISSEDPKT, 0);
150640516Swpaul
150740516Swpaul	/* Enable receiver and transmitter. */
150840516Swpaul	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
150940516Swpaul
151050703Swpaul	mii_mediachg(mii);
151140516Swpaul
151240516Swpaul	CSR_WRITE_1(sc, RL_CFG1, RL_CFG1_DRVLOAD|RL_CFG1_FULLDUPLEX);
151340516Swpaul
151440516Swpaul	ifp->if_flags |= IFF_RUNNING;
151540516Swpaul	ifp->if_flags &= ~IFF_OACTIVE;
151640516Swpaul
151750703Swpaul	sc->rl_stat_ch = timeout(rl_tick, sc, hz);
151867087Swpaul	RL_UNLOCK(sc);
151950703Swpaul
152040516Swpaul	return;
152140516Swpaul}
152240516Swpaul
152340516Swpaul/*
152440516Swpaul * Set media options.
152540516Swpaul */
152640516Swpaulstatic int rl_ifmedia_upd(ifp)
152740516Swpaul	struct ifnet		*ifp;
152840516Swpaul{
152940516Swpaul	struct rl_softc		*sc;
153050703Swpaul	struct mii_data		*mii;
153140516Swpaul
153240516Swpaul	sc = ifp->if_softc;
153350703Swpaul	mii = device_get_softc(sc->rl_miibus);
153450703Swpaul	mii_mediachg(mii);
153540516Swpaul
153640516Swpaul	return(0);
153740516Swpaul}
153840516Swpaul
153940516Swpaul/*
154040516Swpaul * Report current media status.
154140516Swpaul */
154240516Swpaulstatic void rl_ifmedia_sts(ifp, ifmr)
154340516Swpaul	struct ifnet		*ifp;
154440516Swpaul	struct ifmediareq	*ifmr;
154540516Swpaul{
154640516Swpaul	struct rl_softc		*sc;
154750703Swpaul	struct mii_data		*mii;
154840516Swpaul
154940516Swpaul	sc = ifp->if_softc;
155050703Swpaul	mii = device_get_softc(sc->rl_miibus);
155140516Swpaul
155250703Swpaul	mii_pollstat(mii);
155350703Swpaul	ifmr->ifm_active = mii->mii_media_active;
155450703Swpaul	ifmr->ifm_status = mii->mii_media_status;
155540516Swpaul
155640516Swpaul	return;
155740516Swpaul}
155840516Swpaul
155940516Swpaulstatic int rl_ioctl(ifp, command, data)
156040516Swpaul	struct ifnet		*ifp;
156140516Swpaul	u_long			command;
156240516Swpaul	caddr_t			data;
156340516Swpaul{
156440516Swpaul	struct rl_softc		*sc = ifp->if_softc;
156540516Swpaul	struct ifreq		*ifr = (struct ifreq *) data;
156650703Swpaul	struct mii_data		*mii;
156767087Swpaul	int			error = 0;
156840516Swpaul
156967087Swpaul	RL_LOCK(sc);
157040516Swpaul
157140516Swpaul	switch(command) {
157240516Swpaul	case SIOCSIFADDR:
157340516Swpaul	case SIOCGIFADDR:
157440516Swpaul	case SIOCSIFMTU:
157540516Swpaul		error = ether_ioctl(ifp, command, data);
157640516Swpaul		break;
157740516Swpaul	case SIOCSIFFLAGS:
157840516Swpaul		if (ifp->if_flags & IFF_UP) {
157940516Swpaul			rl_init(sc);
158040516Swpaul		} else {
158140516Swpaul			if (ifp->if_flags & IFF_RUNNING)
158240516Swpaul				rl_stop(sc);
158340516Swpaul		}
158440516Swpaul		error = 0;
158540516Swpaul		break;
158640516Swpaul	case SIOCADDMULTI:
158740516Swpaul	case SIOCDELMULTI:
158840516Swpaul		rl_setmulti(sc);
158940516Swpaul		error = 0;
159040516Swpaul		break;
159140516Swpaul	case SIOCGIFMEDIA:
159240516Swpaul	case SIOCSIFMEDIA:
159350703Swpaul		mii = device_get_softc(sc->rl_miibus);
159450703Swpaul		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
159540516Swpaul		break;
159640516Swpaul	default:
159740516Swpaul		error = EINVAL;
159840516Swpaul		break;
159940516Swpaul	}
160040516Swpaul
160167087Swpaul	RL_UNLOCK(sc);
160240516Swpaul
160340516Swpaul	return(error);
160440516Swpaul}
160540516Swpaul
160640516Swpaulstatic void rl_watchdog(ifp)
160740516Swpaul	struct ifnet		*ifp;
160840516Swpaul{
160940516Swpaul	struct rl_softc		*sc;
161040516Swpaul
161140516Swpaul	sc = ifp->if_softc;
161267087Swpaul	RL_LOCK(sc);
161340516Swpaul	printf("rl%d: watchdog timeout\n", sc->rl_unit);
161440516Swpaul	ifp->if_oerrors++;
161550703Swpaul
161640516Swpaul	rl_txeof(sc);
161740516Swpaul	rl_rxeof(sc);
161840516Swpaul	rl_init(sc);
161967087Swpaul	RL_UNLOCK(sc);
162040516Swpaul
162140516Swpaul	return;
162240516Swpaul}
162340516Swpaul
162440516Swpaul/*
162540516Swpaul * Stop the adapter and free any mbufs allocated to the
162640516Swpaul * RX and TX lists.
162740516Swpaul */
162840516Swpaulstatic void rl_stop(sc)
162940516Swpaul	struct rl_softc		*sc;
163040516Swpaul{
163140516Swpaul	register int		i;
163240516Swpaul	struct ifnet		*ifp;
163340516Swpaul
163467087Swpaul	RL_LOCK(sc);
163540516Swpaul	ifp = &sc->arpcom.ac_if;
163640516Swpaul	ifp->if_timer = 0;
163740516Swpaul
163850703Swpaul	untimeout(rl_tick, sc, sc->rl_stat_ch);
163950703Swpaul
164040516Swpaul	CSR_WRITE_1(sc, RL_COMMAND, 0x00);
164140516Swpaul	CSR_WRITE_2(sc, RL_IMR, 0x0000);
164240516Swpaul
164340516Swpaul	/*
164440516Swpaul	 * Free the TX list buffers.
164540516Swpaul	 */
164640516Swpaul	for (i = 0; i < RL_TX_LIST_CNT; i++) {
164745633Swpaul		if (sc->rl_cdata.rl_tx_chain[i] != NULL) {
164845633Swpaul			m_freem(sc->rl_cdata.rl_tx_chain[i]);
164945633Swpaul			sc->rl_cdata.rl_tx_chain[i] = NULL;
165045633Swpaul			CSR_WRITE_4(sc, RL_TXADDR0 + i, 0x0000000);
165140516Swpaul		}
165240516Swpaul	}
165340516Swpaul
165440516Swpaul	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
165567087Swpaul	RL_UNLOCK(sc);
165640516Swpaul	return;
165740516Swpaul}
165840516Swpaul
165940516Swpaul/*
166040516Swpaul * Stop all chip I/O so that the kernel's probe routines don't
166140516Swpaul * get confused by errant DMAs when rebooting.
166240516Swpaul */
166350703Swpaulstatic void rl_shutdown(dev)
166450703Swpaul	device_t		dev;
166540516Swpaul{
166650703Swpaul	struct rl_softc		*sc;
166740516Swpaul
166850703Swpaul	sc = device_get_softc(dev);
166950703Swpaul
167040516Swpaul	rl_stop(sc);
167140516Swpaul
167240516Swpaul	return;
167340516Swpaul}
1674