Home | History | Annotate | Line # | Download | only in ic
rtl81x9.c revision 1.55
      1 /*	$NetBSD: rtl81x9.c,v 1.55 2006/09/29 13:59:40 tsutsui Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997, 1998
      5  *	Bill Paul <wpaul (at) ctr.columbia.edu>.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by Bill Paul.
     18  * 4. Neither the name of the author nor the names of any co-contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
     26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     32  * THE POSSIBILITY OF SUCH DAMAGE.
     33  *
     34  *	FreeBSD Id: if_rl.c,v 1.17 1999/06/19 20:17:37 wpaul Exp
     35  */
     36 
     37 /*
     38  * RealTek 8129/8139 PCI NIC driver
     39  *
     40  * Supports several extremely cheap PCI 10/100 adapters based on
     41  * the RealTek chipset. Datasheets can be obtained from
     42  * www.realtek.com.tw.
     43  *
     44  * Written by Bill Paul <wpaul (at) ctr.columbia.edu>
     45  * Electrical Engineering Department
     46  * Columbia University, New York City
     47  */
     48 
     49 /*
     50  * The RealTek 8139 PCI NIC redefines the meaning of 'low end.' This is
     51  * probably the worst PCI ethernet controller ever made, with the possible
     52  * exception of the FEAST chip made by SMC. The 8139 supports bus-master
     53  * DMA, but it has a terrible interface that nullifies any performance
     54  * gains that bus-master DMA usually offers.
     55  *
     56  * For transmission, the chip offers a series of four TX descriptor
     57  * registers. Each transmit frame must be in a contiguous buffer, aligned
     58  * on a longword (32-bit) boundary. This means we almost always have to
     59  * do mbuf copies in order to transmit a frame, except in the unlikely
     60  * case where a) the packet fits into a single mbuf, and b) the packet
     61  * is 32-bit aligned within the mbuf's data area. The presence of only
     62  * four descriptor registers means that we can never have more than four
     63  * packets queued for transmission at any one time.
     64  *
     65  * Reception is not much better. The driver has to allocate a single large
     66  * buffer area (up to 64K in size) into which the chip will DMA received
     67  * frames. Because we don't know where within this region received packets
     68  * will begin or end, we have no choice but to copy data from the buffer
     69  * area into mbufs in order to pass the packets up to the higher protocol
     70  * levels.
     71  *
     72  * It's impossible given this rotten design to really achieve decent
     73  * performance at 100Mbps, unless you happen to have a 400MHz PII or
     74  * some equally overmuscled CPU to drive it.
     75  *
     76  * On the bright side, the 8139 does have a built-in PHY, although
     77  * rather than using an MDIO serial interface like most other NICs, the
     78  * PHY registers are directly accessible through the 8139's register
     79  * space. The 8139 supports autonegotiation, as well as a 64-bit multicast
     80  * filter.
     81  *
     82  * The 8129 chip is an older version of the 8139 that uses an external PHY
     83  * chip. The 8129 has a serial MDIO interface for accessing the MII where
     84  * the 8139 lets you directly access the on-board PHY registers. We need
     85  * to select which interface to use depending on the chip type.
     86  */
     87 
     88 #include <sys/cdefs.h>
     89 __KERNEL_RCSID(0, "$NetBSD: rtl81x9.c,v 1.55 2006/09/29 13:59:40 tsutsui Exp $");
     90 
     91 #include "bpfilter.h"
     92 #include "rnd.h"
     93 
     94 #include <sys/param.h>
     95 #include <sys/systm.h>
     96 #include <sys/callout.h>
     97 #include <sys/device.h>
     98 #include <sys/sockio.h>
     99 #include <sys/mbuf.h>
    100 #include <sys/malloc.h>
    101 #include <sys/kernel.h>
    102 #include <sys/socket.h>
    103 
    104 #include <uvm/uvm_extern.h>
    105 
    106 #include <net/if.h>
    107 #include <net/if_arp.h>
    108 #include <net/if_ether.h>
    109 #include <net/if_dl.h>
    110 #include <net/if_media.h>
    111 
    112 #if NBPFILTER > 0
    113 #include <net/bpf.h>
    114 #endif
    115 #if NRND > 0
    116 #include <sys/rnd.h>
    117 #endif
    118 
    119 #include <machine/bus.h>
    120 #include <machine/endian.h>
    121 
    122 #include <dev/mii/mii.h>
    123 #include <dev/mii/miivar.h>
    124 
    125 #include <dev/ic/rtl81x9reg.h>
    126 #include <dev/ic/rtl81x9var.h>
    127 
    128 #if defined(DEBUG)
    129 #define STATIC
    130 #else
    131 #define STATIC static
    132 #endif
    133 
    134 STATIC void rtk_reset		(struct rtk_softc *);
    135 STATIC void rtk_rxeof		(struct rtk_softc *);
    136 STATIC void rtk_txeof		(struct rtk_softc *);
    137 STATIC void rtk_start		(struct ifnet *);
    138 STATIC int rtk_ioctl		(struct ifnet *, u_long, caddr_t);
    139 STATIC int rtk_init		(struct ifnet *);
    140 STATIC void rtk_stop		(struct ifnet *, int);
    141 
    142 STATIC void rtk_watchdog(struct ifnet *);
    143 STATIC void rtk_shutdown(void *);
    144 STATIC int rtk_ifmedia_upd(struct ifnet *);
    145 STATIC void rtk_ifmedia_sts(struct ifnet *, struct ifmediareq *);
    146 
    147 STATIC void rtk_eeprom_putbyte(struct rtk_softc *, int, int);
    148 STATIC void rtk_mii_sync(struct rtk_softc *);
    149 STATIC void rtk_mii_send(struct rtk_softc *, u_int32_t, int);
    150 STATIC int rtk_mii_readreg(struct rtk_softc *, struct rtk_mii_frame *);
    151 STATIC int rtk_mii_writereg(struct rtk_softc *, struct rtk_mii_frame *);
    152 
    153 STATIC int rtk_phy_readreg(struct device *, int, int);
    154 STATIC void rtk_phy_writereg(struct device *, int, int, int);
    155 STATIC void rtk_phy_statchg(struct device *);
    156 STATIC void rtk_tick		(void *);
    157 
    158 STATIC int rtk_enable		(struct rtk_softc *);
    159 STATIC void rtk_disable		(struct rtk_softc *);
    160 STATIC void rtk_power		(int, void *);
    161 
    162 STATIC int rtk_list_tx_init(struct rtk_softc *);
    163 
    164 #define EE_SET(x)					\
    165 	CSR_WRITE_1(sc, RTK_EECMD,			\
    166 		CSR_READ_1(sc, RTK_EECMD) | (x))
    167 
    168 #define EE_CLR(x)					\
    169 	CSR_WRITE_1(sc, RTK_EECMD,			\
    170 		CSR_READ_1(sc, RTK_EECMD) & ~(x))
    171 
    172 #define ETHER_PAD_LEN (ETHER_MIN_LEN - ETHER_CRC_LEN)
    173 
    174 /*
    175  * Send a read command and address to the EEPROM, check for ACK.
    176  */
    177 STATIC void
    178 rtk_eeprom_putbyte(sc, addr, addr_len)
    179 	struct rtk_softc	*sc;
    180 	int			addr, addr_len;
    181 {
    182 	int			d, i;
    183 
    184 	d = (RTK_EECMD_READ << addr_len) | addr;
    185 
    186 	/*
    187 	 * Feed in each bit and stobe the clock.
    188 	 */
    189 	for (i = RTK_EECMD_LEN + addr_len; i > 0; i--) {
    190 		if (d & (1 << (i - 1))) {
    191 			EE_SET(RTK_EE_DATAIN);
    192 		} else {
    193 			EE_CLR(RTK_EE_DATAIN);
    194 		}
    195 		DELAY(4);
    196 		EE_SET(RTK_EE_CLK);
    197 		DELAY(4);
    198 		EE_CLR(RTK_EE_CLK);
    199 		DELAY(4);
    200 	}
    201 }
    202 
    203 /*
    204  * Read a word of data stored in the EEPROM at address 'addr.'
    205  */
    206 u_int16_t
    207 rtk_read_eeprom(sc, addr, addr_len)
    208 	struct rtk_softc	*sc;
    209 	int			addr, addr_len;
    210 {
    211 	u_int16_t		word = 0;
    212 	int			i;
    213 
    214 	/* Enter EEPROM access mode. */
    215 	CSR_WRITE_1(sc, RTK_EECMD, RTK_EEMODE_PROGRAM|RTK_EE_SEL);
    216 
    217 	/*
    218 	 * Send address of word we want to read.
    219 	 */
    220 	rtk_eeprom_putbyte(sc, addr, addr_len);
    221 
    222 	CSR_WRITE_1(sc, RTK_EECMD, RTK_EEMODE_PROGRAM|RTK_EE_SEL);
    223 
    224 	/*
    225 	 * Start reading bits from EEPROM.
    226 	 */
    227 	for (i = 16; i > 0; i--) {
    228 		EE_SET(RTK_EE_CLK);
    229 		DELAY(4);
    230 		if (CSR_READ_1(sc, RTK_EECMD) & RTK_EE_DATAOUT)
    231 			word |= 1 << (i - 1);
    232 		EE_CLR(RTK_EE_CLK);
    233 		DELAY(4);
    234 	}
    235 
    236 	/* Turn off EEPROM access mode. */
    237 	CSR_WRITE_1(sc, RTK_EECMD, RTK_EEMODE_OFF);
    238 
    239 	return (word);
    240 }
    241 
    242 /*
    243  * MII access routines are provided for the 8129, which
    244  * doesn't have a built-in PHY. For the 8139, we fake things
    245  * up by diverting rtk_phy_readreg()/rtk_phy_writereg() to the
    246  * direct access PHY registers.
    247  */
    248 #define MII_SET(x)					\
    249 	CSR_WRITE_1(sc, RTK_MII,			\
    250 		CSR_READ_1(sc, RTK_MII) | (x))
    251 
    252 #define MII_CLR(x)					\
    253 	CSR_WRITE_1(sc, RTK_MII,			\
    254 		CSR_READ_1(sc, RTK_MII) & ~(x))
    255 
    256 /*
    257  * Sync the PHYs by setting data bit and strobing the clock 32 times.
    258  */
    259 STATIC void
    260 rtk_mii_sync(sc)
    261 	struct rtk_softc	*sc;
    262 {
    263 	int			i;
    264 
    265 	MII_SET(RTK_MII_DIR|RTK_MII_DATAOUT);
    266 
    267 	for (i = 0; i < 32; i++) {
    268 		MII_SET(RTK_MII_CLK);
    269 		DELAY(1);
    270 		MII_CLR(RTK_MII_CLK);
    271 		DELAY(1);
    272 	}
    273 }
    274 
    275 /*
    276  * Clock a series of bits through the MII.
    277  */
    278 STATIC void
    279 rtk_mii_send(sc, bits, cnt)
    280 	struct rtk_softc	*sc;
    281 	u_int32_t		bits;
    282 	int			cnt;
    283 {
    284 	int			i;
    285 
    286 	MII_CLR(RTK_MII_CLK);
    287 
    288 	for (i = cnt; i > 0; i--) {
    289                 if (bits & (1 << (i - 1))) {
    290 			MII_SET(RTK_MII_DATAOUT);
    291                 } else {
    292 			MII_CLR(RTK_MII_DATAOUT);
    293                 }
    294 		DELAY(1);
    295 		MII_CLR(RTK_MII_CLK);
    296 		DELAY(1);
    297 		MII_SET(RTK_MII_CLK);
    298 	}
    299 }
    300 
    301 /*
    302  * Read an PHY register through the MII.
    303  */
    304 STATIC int
    305 rtk_mii_readreg(sc, frame)
    306 	struct rtk_softc	*sc;
    307 	struct rtk_mii_frame	*frame;
    308 {
    309 	int			i, ack, s;
    310 
    311 	s = splnet();
    312 
    313 	/*
    314 	 * Set up frame for RX.
    315 	 */
    316 	frame->mii_stdelim = RTK_MII_STARTDELIM;
    317 	frame->mii_opcode = RTK_MII_READOP;
    318 	frame->mii_turnaround = 0;
    319 	frame->mii_data = 0;
    320 
    321 	CSR_WRITE_2(sc, RTK_MII, 0);
    322 
    323 	/*
    324  	 * Turn on data xmit.
    325 	 */
    326 	MII_SET(RTK_MII_DIR);
    327 
    328 	rtk_mii_sync(sc);
    329 
    330 	/*
    331 	 * Send command/address info.
    332 	 */
    333 	rtk_mii_send(sc, frame->mii_stdelim, 2);
    334 	rtk_mii_send(sc, frame->mii_opcode, 2);
    335 	rtk_mii_send(sc, frame->mii_phyaddr, 5);
    336 	rtk_mii_send(sc, frame->mii_regaddr, 5);
    337 
    338 	/* Idle bit */
    339 	MII_CLR((RTK_MII_CLK|RTK_MII_DATAOUT));
    340 	DELAY(1);
    341 	MII_SET(RTK_MII_CLK);
    342 	DELAY(1);
    343 
    344 	/* Turn off xmit. */
    345 	MII_CLR(RTK_MII_DIR);
    346 
    347 	/* Check for ack */
    348 	MII_CLR(RTK_MII_CLK);
    349 	DELAY(1);
    350 	MII_SET(RTK_MII_CLK);
    351 	DELAY(1);
    352 	ack = CSR_READ_2(sc, RTK_MII) & RTK_MII_DATAIN;
    353 
    354 	/*
    355 	 * Now try reading data bits. If the ack failed, we still
    356 	 * need to clock through 16 cycles to keep the PHY(s) in sync.
    357 	 */
    358 	if (ack) {
    359 		for (i = 0; i < 16; i++) {
    360 			MII_CLR(RTK_MII_CLK);
    361 			DELAY(1);
    362 			MII_SET(RTK_MII_CLK);
    363 			DELAY(1);
    364 		}
    365 		goto fail;
    366 	}
    367 
    368 	for (i = 16; i > 0; i--) {
    369 		MII_CLR(RTK_MII_CLK);
    370 		DELAY(1);
    371 		if (!ack) {
    372 			if (CSR_READ_2(sc, RTK_MII) & RTK_MII_DATAIN)
    373 				frame->mii_data |= 1 << (i - 1);
    374 			DELAY(1);
    375 		}
    376 		MII_SET(RTK_MII_CLK);
    377 		DELAY(1);
    378 	}
    379 
    380  fail:
    381 	MII_CLR(RTK_MII_CLK);
    382 	DELAY(1);
    383 	MII_SET(RTK_MII_CLK);
    384 	DELAY(1);
    385 
    386 	splx(s);
    387 
    388 	if (ack)
    389 		return (1);
    390 	return (0);
    391 }
    392 
    393 /*
    394  * Write to a PHY register through the MII.
    395  */
    396 STATIC int
    397 rtk_mii_writereg(sc, frame)
    398 	struct rtk_softc	*sc;
    399 	struct rtk_mii_frame	*frame;
    400 {
    401 	int			s;
    402 
    403 	s = splnet();
    404 	/*
    405 	 * Set up frame for TX.
    406 	 */
    407 	frame->mii_stdelim = RTK_MII_STARTDELIM;
    408 	frame->mii_opcode = RTK_MII_WRITEOP;
    409 	frame->mii_turnaround = RTK_MII_TURNAROUND;
    410 
    411 	/*
    412  	 * Turn on data output.
    413 	 */
    414 	MII_SET(RTK_MII_DIR);
    415 
    416 	rtk_mii_sync(sc);
    417 
    418 	rtk_mii_send(sc, frame->mii_stdelim, 2);
    419 	rtk_mii_send(sc, frame->mii_opcode, 2);
    420 	rtk_mii_send(sc, frame->mii_phyaddr, 5);
    421 	rtk_mii_send(sc, frame->mii_regaddr, 5);
    422 	rtk_mii_send(sc, frame->mii_turnaround, 2);
    423 	rtk_mii_send(sc, frame->mii_data, 16);
    424 
    425 	/* Idle bit. */
    426 	MII_SET(RTK_MII_CLK);
    427 	DELAY(1);
    428 	MII_CLR(RTK_MII_CLK);
    429 	DELAY(1);
    430 
    431 	/*
    432 	 * Turn off xmit.
    433 	 */
    434 	MII_CLR(RTK_MII_DIR);
    435 
    436 	splx(s);
    437 
    438 	return (0);
    439 }
    440 
    441 STATIC int
    442 rtk_phy_readreg(self, phy, reg)
    443 	struct device		*self;
    444 	int			phy, reg;
    445 {
    446 	struct rtk_softc	*sc = (void *)self;
    447 	struct rtk_mii_frame	frame;
    448 	int			rval = 0;
    449 	int			rtk8139_reg = 0;
    450 
    451 	if (sc->rtk_type == RTK_8139) {
    452 		if (phy != 7)
    453 			return (0);
    454 
    455 		switch(reg) {
    456 		case MII_BMCR:
    457 			rtk8139_reg = RTK_BMCR;
    458 			break;
    459 		case MII_BMSR:
    460 			rtk8139_reg = RTK_BMSR;
    461 			break;
    462 		case MII_ANAR:
    463 			rtk8139_reg = RTK_ANAR;
    464 			break;
    465 		case MII_ANER:
    466 			rtk8139_reg = RTK_ANER;
    467 			break;
    468 		case MII_ANLPAR:
    469 			rtk8139_reg = RTK_LPAR;
    470 			break;
    471 		default:
    472 #if 0
    473 			printf("%s: bad phy register\n", sc->sc_dev.dv_xname);
    474 #endif
    475 			return (0);
    476 		}
    477 		rval = CSR_READ_2(sc, rtk8139_reg);
    478 		return (rval);
    479 	}
    480 
    481 	memset((char *)&frame, 0, sizeof(frame));
    482 
    483 	frame.mii_phyaddr = phy;
    484 	frame.mii_regaddr = reg;
    485 	rtk_mii_readreg(sc, &frame);
    486 
    487 	return (frame.mii_data);
    488 }
    489 
    490 STATIC void rtk_phy_writereg(self, phy, reg, data)
    491 	struct device		*self;
    492 	int			phy, reg;
    493 	int			data;
    494 {
    495 	struct rtk_softc	*sc = (void *)self;
    496 	struct rtk_mii_frame	frame;
    497 	int			rtk8139_reg = 0;
    498 
    499 	if (sc->rtk_type == RTK_8139) {
    500 		if (phy != 7)
    501 			return;
    502 
    503 		switch(reg) {
    504 		case MII_BMCR:
    505 			rtk8139_reg = RTK_BMCR;
    506 			break;
    507 		case MII_BMSR:
    508 			rtk8139_reg = RTK_BMSR;
    509 			break;
    510 		case MII_ANAR:
    511 			rtk8139_reg = RTK_ANAR;
    512 			break;
    513 		case MII_ANER:
    514 			rtk8139_reg = RTK_ANER;
    515 			break;
    516 		case MII_ANLPAR:
    517 			rtk8139_reg = RTK_LPAR;
    518 			break;
    519 		default:
    520 #if 0
    521 			printf("%s: bad phy register\n", sc->sc_dev.dv_xname);
    522 #endif
    523 			return;
    524 		}
    525 		CSR_WRITE_2(sc, rtk8139_reg, data);
    526 		return;
    527 	}
    528 
    529 	memset((char *)&frame, 0, sizeof(frame));
    530 
    531 	frame.mii_phyaddr = phy;
    532 	frame.mii_regaddr = reg;
    533 	frame.mii_data = data;
    534 
    535 	rtk_mii_writereg(sc, &frame);
    536 }
    537 
    538 STATIC void
    539 rtk_phy_statchg(v)
    540 	struct device *v;
    541 {
    542 
    543 	/* Nothing to do. */
    544 }
    545 
    546 #define	rtk_calchash(addr) \
    547 	(ether_crc32_be((addr), ETHER_ADDR_LEN) >> 26)
    548 
    549 /*
    550  * Program the 64-bit multicast hash filter.
    551  */
    552 void
    553 rtk_setmulti(sc)
    554 	struct rtk_softc	*sc;
    555 {
    556 	struct ifnet		*ifp;
    557 	int			h = 0;
    558 	u_int32_t		hashes[2] = { 0, 0 };
    559 	u_int32_t		rxfilt;
    560 	int			mcnt = 0;
    561 	struct ether_multi *enm;
    562 	struct ether_multistep step;
    563 
    564 	ifp = &sc->ethercom.ec_if;
    565 
    566 	rxfilt = CSR_READ_4(sc, RTK_RXCFG);
    567 
    568 	if (ifp->if_flags & IFF_PROMISC) {
    569 allmulti:
    570 		ifp->if_flags |= IFF_ALLMULTI;
    571 		rxfilt |= RTK_RXCFG_RX_MULTI;
    572 		CSR_WRITE_4(sc, RTK_RXCFG, rxfilt);
    573 		CSR_WRITE_4(sc, RTK_MAR0, 0xFFFFFFFF);
    574 		CSR_WRITE_4(sc, RTK_MAR4, 0xFFFFFFFF);
    575 		return;
    576 	}
    577 
    578 	/* first, zot all the existing hash bits */
    579 	CSR_WRITE_4(sc, RTK_MAR0, 0);
    580 	CSR_WRITE_4(sc, RTK_MAR4, 0);
    581 
    582 	/* now program new ones */
    583 	ETHER_FIRST_MULTI(step, &sc->ethercom, enm);
    584 	while (enm != NULL) {
    585 		if (memcmp(enm->enm_addrlo, enm->enm_addrhi,
    586 		    ETHER_ADDR_LEN) != 0)
    587 			goto allmulti;
    588 
    589 		h = rtk_calchash(enm->enm_addrlo);
    590 		if (h < 32)
    591 			hashes[0] |= (1 << h);
    592 		else
    593 			hashes[1] |= (1 << (h - 32));
    594 		mcnt++;
    595 		ETHER_NEXT_MULTI(step, enm);
    596 	}
    597 
    598 	ifp->if_flags &= ~IFF_ALLMULTI;
    599 
    600 	if (mcnt)
    601 		rxfilt |= RTK_RXCFG_RX_MULTI;
    602 	else
    603 		rxfilt &= ~RTK_RXCFG_RX_MULTI;
    604 
    605 	CSR_WRITE_4(sc, RTK_RXCFG, rxfilt);
    606 	CSR_WRITE_4(sc, RTK_MAR0, hashes[0]);
    607 	CSR_WRITE_4(sc, RTK_MAR4, hashes[1]);
    608 }
    609 
    610 void
    611 rtk_reset(sc)
    612 	struct rtk_softc	*sc;
    613 {
    614 	int			i;
    615 
    616 	CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_RESET);
    617 
    618 	for (i = 0; i < RTK_TIMEOUT; i++) {
    619 		DELAY(10);
    620 		if ((CSR_READ_1(sc, RTK_COMMAND) & RTK_CMD_RESET) == 0)
    621 			break;
    622 	}
    623 	if (i == RTK_TIMEOUT)
    624 		printf("%s: reset never completed!\n", sc->sc_dev.dv_xname);
    625 }
    626 
    627 /*
    628  * Attach the interface. Allocate softc structures, do ifmedia
    629  * setup and ethernet/BPF attach.
    630  */
    631 void
    632 rtk_attach(sc)
    633 	struct rtk_softc *sc;
    634 {
    635 	struct ifnet *ifp;
    636 	struct rtk_tx_desc *txd;
    637 	u_int16_t val;
    638 	u_int8_t eaddr[ETHER_ADDR_LEN];
    639 	int error;
    640 	int i, addr_len;
    641 
    642 	callout_init(&sc->rtk_tick_ch);
    643 
    644 	/*
    645 	 * Check EEPROM type 9346 or 9356.
    646 	 */
    647 	if (rtk_read_eeprom(sc, RTK_EE_ID, RTK_EEADDR_LEN1) == 0x8129)
    648 		addr_len = RTK_EEADDR_LEN1;
    649 	else
    650 		addr_len = RTK_EEADDR_LEN0;
    651 
    652 	/*
    653 	 * Get station address.
    654 	 */
    655 	val = rtk_read_eeprom(sc, RTK_EE_EADDR0, addr_len);
    656 	eaddr[0] = val & 0xff;
    657 	eaddr[1] = val >> 8;
    658 	val = rtk_read_eeprom(sc, RTK_EE_EADDR1, addr_len);
    659 	eaddr[2] = val & 0xff;
    660 	eaddr[3] = val >> 8;
    661 	val = rtk_read_eeprom(sc, RTK_EE_EADDR2, addr_len);
    662 	eaddr[4] = val & 0xff;
    663 	eaddr[5] = val >> 8;
    664 
    665 	if ((error = bus_dmamem_alloc(sc->sc_dmat,
    666 	    RTK_RXBUFLEN + 16, PAGE_SIZE, 0, &sc->sc_dmaseg, 1, &sc->sc_dmanseg,
    667 	    BUS_DMA_NOWAIT)) != 0) {
    668 		printf("%s: can't allocate recv buffer, error = %d\n",
    669 		       sc->sc_dev.dv_xname, error);
    670 		goto fail_0;
    671 	}
    672 
    673 	if ((error = bus_dmamem_map(sc->sc_dmat, &sc->sc_dmaseg, sc->sc_dmanseg,
    674 	    RTK_RXBUFLEN + 16, (caddr_t *)&sc->rtk_rx_buf,
    675 	    BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
    676 		printf("%s: can't map recv buffer, error = %d\n",
    677 		       sc->sc_dev.dv_xname, error);
    678 		goto fail_1;
    679 	}
    680 
    681 	if ((error = bus_dmamap_create(sc->sc_dmat,
    682 	    RTK_RXBUFLEN + 16, 1, RTK_RXBUFLEN + 16, 0, BUS_DMA_NOWAIT,
    683 	    &sc->recv_dmamap)) != 0) {
    684 		printf("%s: can't create recv buffer DMA map, error = %d\n",
    685 		       sc->sc_dev.dv_xname, error);
    686 		goto fail_2;
    687 	}
    688 
    689 	if ((error = bus_dmamap_load(sc->sc_dmat, sc->recv_dmamap,
    690 	    sc->rtk_rx_buf, RTK_RXBUFLEN + 16,
    691 	    NULL, BUS_DMA_READ|BUS_DMA_NOWAIT)) != 0) {
    692 		printf("%s: can't load recv buffer DMA map, error = %d\n",
    693 		       sc->sc_dev.dv_xname, error);
    694 		goto fail_3;
    695 	}
    696 
    697 	for (i = 0; i < RTK_TX_LIST_CNT; i++) {
    698 		txd = &sc->rtk_tx_descs[i];
    699 		if ((error = bus_dmamap_create(sc->sc_dmat,
    700 		    MCLBYTES, 1, MCLBYTES, 0, BUS_DMA_NOWAIT,
    701 		    &txd->txd_dmamap)) != 0) {
    702 			printf("%s: can't create snd buffer DMA map,"
    703 			    " error = %d\n", sc->sc_dev.dv_xname, error);
    704 			goto fail_4;
    705 		}
    706 		txd->txd_txaddr = RTK_TXADDR0 + (i * 4);
    707 		txd->txd_txstat = RTK_TXSTAT0 + (i * 4);
    708 	}
    709 	SIMPLEQ_INIT(&sc->rtk_tx_free);
    710 	SIMPLEQ_INIT(&sc->rtk_tx_dirty);
    711 
    712 	/*
    713 	 * From this point forward, the attachment cannot fail. A failure
    714 	 * before this releases all resources thar may have been
    715 	 * allocated.
    716 	 */
    717 	sc->sc_flags |= RTK_ATTACHED;
    718 
    719 	/* Init Early TX threshold. */
    720 	sc->sc_txthresh = TXTH_256;
    721 
    722 	/* Reset the adapter. */
    723 	rtk_reset(sc);
    724 
    725 	printf("%s: Ethernet address %s\n",
    726 	    sc->sc_dev.dv_xname, ether_sprintf(eaddr));
    727 
    728 	ifp = &sc->ethercom.ec_if;
    729 	ifp->if_softc = sc;
    730 	strcpy(ifp->if_xname, sc->sc_dev.dv_xname);
    731 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    732 	ifp->if_ioctl = rtk_ioctl;
    733 	ifp->if_start = rtk_start;
    734 	ifp->if_watchdog = rtk_watchdog;
    735 	ifp->if_init = rtk_init;
    736 	ifp->if_stop = rtk_stop;
    737 	IFQ_SET_READY(&ifp->if_snd);
    738 
    739 	/*
    740 	 * Do ifmedia setup.
    741 	 */
    742 	sc->mii.mii_ifp = ifp;
    743 	sc->mii.mii_readreg = rtk_phy_readreg;
    744 	sc->mii.mii_writereg = rtk_phy_writereg;
    745 	sc->mii.mii_statchg = rtk_phy_statchg;
    746 	ifmedia_init(&sc->mii.mii_media, IFM_IMASK, rtk_ifmedia_upd, rtk_ifmedia_sts);
    747 	mii_attach(&sc->sc_dev, &sc->mii, 0xffffffff,
    748 	    MII_PHY_ANY, MII_OFFSET_ANY, 0);
    749 
    750 	/* Choose a default media. */
    751 	if (LIST_FIRST(&sc->mii.mii_phys) == NULL) {
    752 		ifmedia_add(&sc->mii.mii_media, IFM_ETHER|IFM_NONE, 0, NULL);
    753 		ifmedia_set(&sc->mii.mii_media, IFM_ETHER|IFM_NONE);
    754 	} else {
    755 		ifmedia_set(&sc->mii.mii_media, IFM_ETHER|IFM_AUTO);
    756 	}
    757 
    758 	/*
    759 	 * Call MI attach routines.
    760 	 */
    761 	if_attach(ifp);
    762 	ether_ifattach(ifp, eaddr);
    763 
    764 	/*
    765 	 * Make sure the interface is shutdown during reboot.
    766 	 */
    767 	sc->sc_sdhook = shutdownhook_establish(rtk_shutdown, sc);
    768 	if (sc->sc_sdhook == NULL)
    769 		printf("%s: WARNING: unable to establish shutdown hook\n",
    770 		    sc->sc_dev.dv_xname);
    771 	/*
    772 	 * Add a suspend hook to make sure we come back up after a
    773 	 * resume.
    774 	 */
    775 	sc->sc_powerhook = powerhook_establish(sc->sc_dev.dv_xname,
    776 	    rtk_power, sc);
    777 	if (sc->sc_powerhook == NULL)
    778 		printf("%s: WARNING: unable to establish power hook\n",
    779 		    sc->sc_dev.dv_xname);
    780 
    781 
    782 #if NRND > 0
    783 	rnd_attach_source(&sc->rnd_source, sc->sc_dev.dv_xname,
    784 	    RND_TYPE_NET, 0);
    785 #endif
    786 
    787 	return;
    788  fail_4:
    789 	for (i = 0; i < RTK_TX_LIST_CNT; i++) {
    790 		txd = &sc->rtk_tx_descs[i];
    791 		if (txd->txd_dmamap != NULL)
    792 			bus_dmamap_destroy(sc->sc_dmat, txd->txd_dmamap);
    793 	}
    794  fail_3:
    795 	bus_dmamap_destroy(sc->sc_dmat, sc->recv_dmamap);
    796  fail_2:
    797 	bus_dmamem_unmap(sc->sc_dmat, (caddr_t)sc->rtk_rx_buf,
    798 	    RTK_RXBUFLEN + 16);
    799  fail_1:
    800 	bus_dmamem_free(sc->sc_dmat, &sc->sc_dmaseg, sc->sc_dmanseg);
    801  fail_0:
    802 	return;
    803 }
    804 
    805 /*
    806  * Initialize the transmit descriptors.
    807  */
    808 STATIC int
    809 rtk_list_tx_init(sc)
    810 	struct rtk_softc	*sc;
    811 {
    812 	struct rtk_tx_desc *txd;
    813 	int i;
    814 
    815 	while ((txd = SIMPLEQ_FIRST(&sc->rtk_tx_dirty)) != NULL)
    816 		SIMPLEQ_REMOVE_HEAD(&sc->rtk_tx_dirty, txd_q);
    817 	while ((txd = SIMPLEQ_FIRST(&sc->rtk_tx_free)) != NULL)
    818 		SIMPLEQ_REMOVE_HEAD(&sc->rtk_tx_free, txd_q);
    819 
    820 	for (i = 0; i < RTK_TX_LIST_CNT; i++) {
    821 		txd = &sc->rtk_tx_descs[i];
    822 		CSR_WRITE_4(sc, txd->txd_txaddr, 0);
    823 		SIMPLEQ_INSERT_TAIL(&sc->rtk_tx_free, txd, txd_q);
    824 	}
    825 
    826 	return (0);
    827 }
    828 
    829 /*
    830  * rtk_activate:
    831  *     Handle device activation/deactivation requests.
    832  */
    833 int
    834 rtk_activate(self, act)
    835 	struct device *self;
    836 	enum devact act;
    837 {
    838 	struct rtk_softc *sc = (void *) self;
    839 	int s, error = 0;
    840 
    841 	s = splnet();
    842 	switch (act) {
    843 	case DVACT_ACTIVATE:
    844 		error = EOPNOTSUPP;
    845 		break;
    846 	case DVACT_DEACTIVATE:
    847 		mii_activate(&sc->mii, act, MII_PHY_ANY, MII_OFFSET_ANY);
    848 		if_deactivate(&sc->ethercom.ec_if);
    849 		break;
    850 	}
    851 	splx(s);
    852 
    853 	return (error);
    854 }
    855 
    856 /*
    857  * rtk_detach:
    858  *     Detach a rtk interface.
    859  */
    860 int
    861 rtk_detach(sc)
    862 	struct rtk_softc *sc;
    863 {
    864 	struct ifnet *ifp = &sc->ethercom.ec_if;
    865 	struct rtk_tx_desc *txd;
    866 	int i;
    867 
    868 	/*
    869 	 * Succeed now if there isn't any work to do.
    870 	 */
    871 	if ((sc->sc_flags & RTK_ATTACHED) == 0)
    872 		return (0);
    873 
    874 	/* Unhook our tick handler. */
    875 	callout_stop(&sc->rtk_tick_ch);
    876 
    877 	/* Detach all PHYs. */
    878 	mii_detach(&sc->mii, MII_PHY_ANY, MII_OFFSET_ANY);
    879 
    880 	/* Delete all remaining media. */
    881 	ifmedia_delete_instance(&sc->mii.mii_media, IFM_INST_ANY);
    882 
    883 #if NRND > 0
    884 	rnd_detach_source(&sc->rnd_source);
    885 #endif
    886 
    887 	ether_ifdetach(ifp);
    888 	if_detach(ifp);
    889 
    890 	for (i = 0; i < RTK_TX_LIST_CNT; i++) {
    891 		txd = &sc->rtk_tx_descs[i];
    892 		if (txd->txd_dmamap != NULL)
    893 			bus_dmamap_destroy(sc->sc_dmat, txd->txd_dmamap);
    894 	}
    895 	bus_dmamap_destroy(sc->sc_dmat, sc->recv_dmamap);
    896 	bus_dmamem_unmap(sc->sc_dmat, (caddr_t)sc->rtk_rx_buf,
    897 	    RTK_RXBUFLEN + 16);
    898 	bus_dmamem_free(sc->sc_dmat, &sc->sc_dmaseg, sc->sc_dmanseg);
    899 
    900 	shutdownhook_disestablish(sc->sc_sdhook);
    901 	powerhook_disestablish(sc->sc_powerhook);
    902 
    903 	return (0);
    904 }
    905 
    906 /*
    907  * rtk_enable:
    908  *     Enable the RTL81X9 chip.
    909  */
    910 int
    911 rtk_enable(sc)
    912 	struct rtk_softc *sc;
    913 {
    914 
    915 	if (RTK_IS_ENABLED(sc) == 0 && sc->sc_enable != NULL) {
    916 		if ((*sc->sc_enable)(sc) != 0) {
    917 			printf("%s: device enable failed\n",
    918 			    sc->sc_dev.dv_xname);
    919 			return (EIO);
    920 		}
    921 		sc->sc_flags |= RTK_ENABLED;
    922 	}
    923 	return (0);
    924 }
    925 
    926 /*
    927  * rtk_disable:
    928  *     Disable the RTL81X9 chip.
    929  */
    930 void
    931 rtk_disable(sc)
    932 	struct rtk_softc *sc;
    933 {
    934 
    935 	if (RTK_IS_ENABLED(sc) && sc->sc_disable != NULL) {
    936 		(*sc->sc_disable)(sc);
    937 		sc->sc_flags &= ~RTK_ENABLED;
    938 	}
    939 }
    940 
    941 /*
    942  * rtk_power:
    943  *     Power management (suspend/resume) hook.
    944  */
    945 void
    946 rtk_power(why, arg)
    947 	int why;
    948 	void *arg;
    949 {
    950 	struct rtk_softc *sc = (void *) arg;
    951 	struct ifnet *ifp = &sc->ethercom.ec_if;
    952 	int s;
    953 
    954 	s = splnet();
    955 	switch (why) {
    956 	case PWR_SUSPEND:
    957 	case PWR_STANDBY:
    958 		rtk_stop(ifp, 0);
    959 		if (sc->sc_power != NULL)
    960 			(*sc->sc_power)(sc, why);
    961 		break;
    962 	case PWR_RESUME:
    963 		if (ifp->if_flags & IFF_UP) {
    964 			if (sc->sc_power != NULL)
    965 				(*sc->sc_power)(sc, why);
    966 			rtk_init(ifp);
    967 		}
    968 		break;
    969 	case PWR_SOFTSUSPEND:
    970 	case PWR_SOFTSTANDBY:
    971 	case PWR_SOFTRESUME:
    972 		break;
    973 	}
    974 	splx(s);
    975 }
    976 
    977 /*
    978  * A frame has been uploaded: pass the resulting mbuf chain up to
    979  * the higher level protocols.
    980  *
    981  * You know there's something wrong with a PCI bus-master chip design.
    982  *
    983  * The receive operation is badly documented in the datasheet, so I'll
    984  * attempt to document it here. The driver provides a buffer area and
    985  * places its base address in the RX buffer start address register.
    986  * The chip then begins copying frames into the RX buffer. Each frame
    987  * is preceded by a 32-bit RX status word which specifies the length
    988  * of the frame and certain other status bits. Each frame (starting with
    989  * the status word) is also 32-bit aligned. The frame length is in the
    990  * first 16 bits of the status word; the lower 15 bits correspond with
    991  * the 'rx status register' mentioned in the datasheet.
    992  *
    993  * Note: to make the Alpha happy, the frame payload needs to be aligned
    994  * on a 32-bit boundary. To achieve this, we copy the data to mbuf
    995  * shifted forward 2 bytes.
    996  */
    997 STATIC void
    998 rtk_rxeof(sc)
    999 	struct rtk_softc	*sc;
   1000 {
   1001         struct mbuf		*m;
   1002         struct ifnet		*ifp;
   1003 	caddr_t			rxbufpos, dst;
   1004 	u_int			total_len, wrap = 0;
   1005 	u_int32_t		rxstat;
   1006 	u_int16_t		cur_rx, new_rx;
   1007 	u_int16_t		limit;
   1008 	u_int16_t		rx_bytes = 0, max_bytes;
   1009 
   1010 	ifp = &sc->ethercom.ec_if;
   1011 
   1012 	cur_rx = (CSR_READ_2(sc, RTK_CURRXADDR) + 16) % RTK_RXBUFLEN;
   1013 
   1014 	/* Do not try to read past this point. */
   1015 	limit = CSR_READ_2(sc, RTK_CURRXBUF) % RTK_RXBUFLEN;
   1016 
   1017 	if (limit < cur_rx)
   1018 		max_bytes = (RTK_RXBUFLEN - cur_rx) + limit;
   1019 	else
   1020 		max_bytes = limit - cur_rx;
   1021 
   1022 	while((CSR_READ_1(sc, RTK_COMMAND) & RTK_CMD_EMPTY_RXBUF) == 0) {
   1023 		rxbufpos = sc->rtk_rx_buf + cur_rx;
   1024 		bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap, cur_rx,
   1025 		    RTK_RXSTAT_LEN, BUS_DMASYNC_POSTREAD);
   1026 		rxstat = le32toh(*(u_int32_t *)rxbufpos);
   1027 		bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap, cur_rx,
   1028 		    RTK_RXSTAT_LEN, BUS_DMASYNC_PREREAD);
   1029 
   1030 		/*
   1031 		 * Here's a totally undocumented fact for you. When the
   1032 		 * RealTek chip is in the process of copying a packet into
   1033 		 * RAM for you, the length will be 0xfff0. If you spot a
   1034 		 * packet header with this value, you need to stop. The
   1035 		 * datasheet makes absolutely no mention of this and
   1036 		 * RealTek should be shot for this.
   1037 		 */
   1038 		total_len = rxstat >> 16;
   1039 		if (total_len == RTK_RXSTAT_UNFINISHED)
   1040 			break;
   1041 
   1042 		if ((rxstat & RTK_RXSTAT_RXOK) == 0 ||
   1043 		    total_len < ETHER_MIN_LEN ||
   1044 		    total_len > ETHER_MAX_LEN) {
   1045 			ifp->if_ierrors++;
   1046 
   1047 			/*
   1048 			 * submitted by:[netbsd-pcmcia:00484]
   1049 			 *	Takahiro Kambe <taca (at) sky.yamashina.kyoto.jp>
   1050 			 * obtain from:
   1051 			 *     FreeBSD if_rl.c rev 1.24->1.25
   1052 			 *
   1053 			 */
   1054 #if 0
   1055 			if (rxstat & (RTK_RXSTAT_BADSYM|RTK_RXSTAT_RUNT|
   1056 			    RTK_RXSTAT_GIANT|RTK_RXSTAT_CRCERR|
   1057 			    RTK_RXSTAT_ALIGNERR)) {
   1058 				CSR_WRITE_2(sc, RTK_COMMAND, RTK_CMD_TX_ENB);
   1059 				CSR_WRITE_2(sc, RTK_COMMAND,
   1060 				    RTK_CMD_TX_ENB|RTK_CMD_RX_ENB);
   1061 				CSR_WRITE_4(sc, RTK_RXCFG, RTK_RXCFG_CONFIG);
   1062 				CSR_WRITE_4(sc, RTK_RXADDR,
   1063 				    sc->recv_dmamap->dm_segs[0].ds_addr);
   1064 				cur_rx = 0;
   1065 			}
   1066 			break;
   1067 #else
   1068 			rtk_init(ifp);
   1069 			return;
   1070 #endif
   1071 		}
   1072 
   1073 		/* No errors; receive the packet. */
   1074 		rx_bytes += total_len + RTK_RXSTAT_LEN;
   1075 
   1076 		/*
   1077 		 * Avoid trying to read more bytes than we know
   1078 		 * the chip has prepared for us.
   1079 		 */
   1080 		if (rx_bytes > max_bytes)
   1081 			break;
   1082 
   1083 		/*
   1084 		 * Skip the status word, wrapping around to the beginning
   1085 		 * of the Rx area, if necessary.
   1086 		 */
   1087 		cur_rx = (cur_rx + RTK_RXSTAT_LEN) % RTK_RXBUFLEN;
   1088 		rxbufpos = sc->rtk_rx_buf + cur_rx;
   1089 
   1090 		/*
   1091 		 * Compute the number of bytes at which the packet
   1092 		 * will wrap to the beginning of the ring buffer.
   1093 		 */
   1094 		wrap = RTK_RXBUFLEN - cur_rx;
   1095 
   1096 		/*
   1097 		 * Compute where the next pending packet is.
   1098 		 */
   1099 		if (total_len > wrap)
   1100 			new_rx = total_len - wrap;
   1101 		else
   1102 			new_rx = cur_rx + total_len;
   1103 		/* Round up to 32-bit boundary. */
   1104 		new_rx = (new_rx + 3) & ~3;
   1105 
   1106 		/*
   1107 		 * The RealTek chip includes the CRC with every
   1108 		 * incoming packet; trim it off here.
   1109 		 */
   1110 		total_len -= ETHER_CRC_LEN;
   1111 
   1112 		/*
   1113 		 * Now allocate an mbuf (and possibly a cluster) to hold
   1114 		 * the packet. Note we offset the packet 2 bytes so that
   1115 		 * data after the Ethernet header will be 4-byte aligned.
   1116 		 */
   1117 		MGETHDR(m, M_DONTWAIT, MT_DATA);
   1118 		if (m == NULL) {
   1119 			printf("%s: unable to allocate Rx mbuf\n",
   1120 			    sc->sc_dev.dv_xname);
   1121 			ifp->if_ierrors++;
   1122 			goto next_packet;
   1123 		}
   1124 		if (total_len > (MHLEN - RTK_ETHER_ALIGN)) {
   1125 			MCLGET(m, M_DONTWAIT);
   1126 			if ((m->m_flags & M_EXT) == 0) {
   1127 				printf("%s: unable to allocate Rx cluster\n",
   1128 				    sc->sc_dev.dv_xname);
   1129 				ifp->if_ierrors++;
   1130 				m_freem(m);
   1131 				m = NULL;
   1132 				goto next_packet;
   1133 			}
   1134 		}
   1135 		m->m_data += RTK_ETHER_ALIGN;	/* for alignment */
   1136 		m->m_pkthdr.rcvif = ifp;
   1137 		m->m_pkthdr.len = m->m_len = total_len;
   1138 		dst = mtod(m, caddr_t);
   1139 
   1140 		/*
   1141 		 * If the packet wraps, copy up to the wrapping point.
   1142 		 */
   1143 		if (total_len > wrap) {
   1144 			bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap,
   1145 			    cur_rx, wrap, BUS_DMASYNC_POSTREAD);
   1146 			memcpy(dst, rxbufpos, wrap);
   1147 			bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap,
   1148 			    cur_rx, wrap, BUS_DMASYNC_PREREAD);
   1149 			cur_rx = 0;
   1150 			rxbufpos = sc->rtk_rx_buf;
   1151 			total_len -= wrap;
   1152 			dst += wrap;
   1153 		}
   1154 
   1155 		/*
   1156 		 * ...and now the rest.
   1157 		 */
   1158 		bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap,
   1159 		    cur_rx, total_len, BUS_DMASYNC_POSTREAD);
   1160 		memcpy(dst, rxbufpos, total_len);
   1161 		bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap,
   1162 		    cur_rx, total_len, BUS_DMASYNC_PREREAD);
   1163 
   1164  next_packet:
   1165 		CSR_WRITE_2(sc, RTK_CURRXADDR, new_rx - 16);
   1166 		cur_rx = new_rx;
   1167 
   1168 		if (m == NULL)
   1169 			continue;
   1170 
   1171 		ifp->if_ipackets++;
   1172 
   1173 #if NBPFILTER > 0
   1174 		if (ifp->if_bpf)
   1175 			bpf_mtap(ifp->if_bpf, m);
   1176 #endif
   1177 		/* pass it on. */
   1178 		(*ifp->if_input)(ifp, m);
   1179 	}
   1180 }
   1181 
   1182 /*
   1183  * A frame was downloaded to the chip. It's safe for us to clean up
   1184  * the list buffers.
   1185  */
   1186 STATIC void
   1187 rtk_txeof(sc)
   1188 	struct rtk_softc	*sc;
   1189 {
   1190 	struct ifnet *ifp;
   1191 	struct rtk_tx_desc *txd;
   1192 	u_int32_t txstat;
   1193 
   1194 	ifp = &sc->ethercom.ec_if;
   1195 
   1196 	/*
   1197 	 * Go through our tx list and free mbufs for those
   1198 	 * frames that have been uploaded.
   1199 	 */
   1200 	while ((txd = SIMPLEQ_FIRST(&sc->rtk_tx_dirty)) != NULL) {
   1201 		txstat = CSR_READ_4(sc, txd->txd_txstat);
   1202 		if ((txstat & (RTK_TXSTAT_TX_OK|
   1203 		    RTK_TXSTAT_TX_UNDERRUN|RTK_TXSTAT_TXABRT)) == 0)
   1204 			break;
   1205 
   1206 		SIMPLEQ_REMOVE_HEAD(&sc->rtk_tx_dirty, txd_q);
   1207 
   1208 		bus_dmamap_sync(sc->sc_dmat, txd->txd_dmamap, 0,
   1209 		    txd->txd_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1210 		bus_dmamap_unload(sc->sc_dmat, txd->txd_dmamap);
   1211 		m_freem(txd->txd_mbuf);
   1212 		txd->txd_mbuf = NULL;
   1213 
   1214 		ifp->if_collisions += (txstat & RTK_TXSTAT_COLLCNT) >> 24;
   1215 
   1216 		if (txstat & RTK_TXSTAT_TX_OK)
   1217 			ifp->if_opackets++;
   1218 		else {
   1219 			ifp->if_oerrors++;
   1220 
   1221 			/*
   1222 			 * Increase Early TX threshold if underrun occurred.
   1223 			 * Increase step 64 bytes.
   1224 			 */
   1225 			if (txstat & RTK_TXSTAT_TX_UNDERRUN) {
   1226 #ifdef DEBUG
   1227 				printf("%s: transmit underrun;",
   1228 				    sc->sc_dev.dv_xname);
   1229 #endif
   1230 				if (sc->sc_txthresh < TXTH_MAX) {
   1231 					sc->sc_txthresh += 2;
   1232 #ifdef DEBUG
   1233 					printf(" new threshold: %d bytes",
   1234 					    sc->sc_txthresh * 32);
   1235 #endif
   1236 				}
   1237 				printf("\n");
   1238 			}
   1239 			if (txstat & (RTK_TXSTAT_TXABRT|RTK_TXSTAT_OUTOFWIN))
   1240 				CSR_WRITE_4(sc, RTK_TXCFG, RTK_TXCFG_CONFIG);
   1241 		}
   1242 		SIMPLEQ_INSERT_TAIL(&sc->rtk_tx_free, txd, txd_q);
   1243 		ifp->if_flags &= ~IFF_OACTIVE;
   1244 	}
   1245 
   1246 	/* Clear the timeout timer if there is no pending packet. */
   1247 	if (SIMPLEQ_FIRST(&sc->rtk_tx_dirty) == NULL)
   1248 		ifp->if_timer = 0;
   1249 
   1250 }
   1251 
   1252 int
   1253 rtk_intr(arg)
   1254 	void			*arg;
   1255 {
   1256 	struct rtk_softc	*sc;
   1257 	struct ifnet		*ifp;
   1258 	u_int16_t		status;
   1259 	int handled = 0;
   1260 
   1261 	sc = arg;
   1262 	ifp = &sc->ethercom.ec_if;
   1263 
   1264 	/* Disable interrupts. */
   1265 	CSR_WRITE_2(sc, RTK_IMR, 0x0000);
   1266 
   1267 	for (;;) {
   1268 
   1269 		status = CSR_READ_2(sc, RTK_ISR);
   1270 		if (status)
   1271 			CSR_WRITE_2(sc, RTK_ISR, status);
   1272 
   1273 		handled = 1;
   1274 
   1275 		if ((status & RTK_INTRS) == 0)
   1276 			break;
   1277 
   1278 		if (status & RTK_ISR_RX_OK)
   1279 			rtk_rxeof(sc);
   1280 
   1281 		if (status & RTK_ISR_RX_ERR)
   1282 			rtk_rxeof(sc);
   1283 
   1284 		if (status & (RTK_ISR_TX_OK|RTK_ISR_TX_ERR))
   1285 			rtk_txeof(sc);
   1286 
   1287 		if (status & RTK_ISR_SYSTEM_ERR) {
   1288 			rtk_reset(sc);
   1289 			rtk_init(ifp);
   1290 		}
   1291 	}
   1292 
   1293 	/* Re-enable interrupts. */
   1294 	CSR_WRITE_2(sc, RTK_IMR, RTK_INTRS);
   1295 
   1296 	if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
   1297 		rtk_start(ifp);
   1298 
   1299 #if NRND > 0
   1300 	if (RND_ENABLED(&sc->rnd_source))
   1301 		rnd_add_uint32(&sc->rnd_source, status);
   1302 #endif
   1303 
   1304 	return (handled);
   1305 }
   1306 
   1307 /*
   1308  * Main transmit routine.
   1309  */
   1310 
   1311 STATIC void
   1312 rtk_start(ifp)
   1313 	struct ifnet		*ifp;
   1314 {
   1315 	struct rtk_softc *sc;
   1316 	struct rtk_tx_desc *txd;
   1317 	struct mbuf *m_head = NULL, *m_new;
   1318 	int error, len;
   1319 
   1320 	sc = ifp->if_softc;
   1321 
   1322 	while ((txd = SIMPLEQ_FIRST(&sc->rtk_tx_free)) != NULL) {
   1323 		IFQ_POLL(&ifp->if_snd, m_head);
   1324 		if (m_head == NULL)
   1325 			break;
   1326 		m_new = NULL;
   1327 
   1328 		/*
   1329 		 * Load the DMA map.  If this fails, the packet didn't
   1330 		 * fit in one DMA segment, and we need to copy.  Note,
   1331 		 * the packet must also be aligned.
   1332 		 * if the packet is too small, copy it too, so we're sure
   1333 		 * so have enouth room for the pad buffer.
   1334 		 */
   1335 		if ((mtod(m_head, uintptr_t) & 3) != 0 ||
   1336 		    m_head->m_pkthdr.len < ETHER_PAD_LEN ||
   1337 		    bus_dmamap_load_mbuf(sc->sc_dmat, txd->txd_dmamap,
   1338 			m_head, BUS_DMA_WRITE|BUS_DMA_NOWAIT) != 0) {
   1339 			MGETHDR(m_new, M_DONTWAIT, MT_DATA);
   1340 			if (m_new == NULL) {
   1341 				printf("%s: unable to allocate Tx mbuf\n",
   1342 				    sc->sc_dev.dv_xname);
   1343 				break;
   1344 			}
   1345 			if (m_head->m_pkthdr.len > MHLEN) {
   1346 				MCLGET(m_new, M_DONTWAIT);
   1347 				if ((m_new->m_flags & M_EXT) == 0) {
   1348 					printf("%s: unable to allocate Tx "
   1349 					    "cluster\n", sc->sc_dev.dv_xname);
   1350 					m_freem(m_new);
   1351 					break;
   1352 				}
   1353 			}
   1354 			m_copydata(m_head, 0, m_head->m_pkthdr.len,
   1355 			    mtod(m_new, caddr_t));
   1356 			m_new->m_pkthdr.len = m_new->m_len =
   1357 			    m_head->m_pkthdr.len;
   1358 			if (m_head->m_pkthdr.len < ETHER_PAD_LEN) {
   1359 				memset(
   1360 				    mtod(m_new, caddr_t) + m_head->m_pkthdr.len,
   1361 				    0, ETHER_PAD_LEN - m_head->m_pkthdr.len);
   1362 				m_new->m_pkthdr.len = m_new->m_len =
   1363 				    ETHER_PAD_LEN;
   1364 			}
   1365 			error = bus_dmamap_load_mbuf(sc->sc_dmat,
   1366 			    txd->txd_dmamap, m_new,
   1367 			    BUS_DMA_WRITE|BUS_DMA_NOWAIT);
   1368 			if (error) {
   1369 				printf("%s: unable to load Tx buffer, "
   1370 				    "error = %d\n", sc->sc_dev.dv_xname, error);
   1371 				break;
   1372 			}
   1373 		}
   1374 		IFQ_DEQUEUE(&ifp->if_snd, m_head);
   1375 #if NBPFILTER > 0
   1376 		/*
   1377 		 * If there's a BPF listener, bounce a copy of this frame
   1378 		 * to him.
   1379 		 */
   1380 		if (ifp->if_bpf)
   1381 			bpf_mtap(ifp->if_bpf, m_head);
   1382 #endif
   1383 		if (m_new != NULL) {
   1384 			m_freem(m_head);
   1385 			m_head = m_new;
   1386 		}
   1387 		txd->txd_mbuf = m_head;
   1388 
   1389 		SIMPLEQ_REMOVE_HEAD(&sc->rtk_tx_free, txd_q);
   1390 		SIMPLEQ_INSERT_TAIL(&sc->rtk_tx_dirty, txd, txd_q);
   1391 
   1392 		/*
   1393 		 * Transmit the frame.
   1394 	 	 */
   1395 		bus_dmamap_sync(sc->sc_dmat,
   1396 		    txd->txd_dmamap, 0, txd->txd_dmamap->dm_mapsize,
   1397 		    BUS_DMASYNC_PREWRITE);
   1398 
   1399 		len = txd->txd_dmamap->dm_segs[0].ds_len;
   1400 
   1401 		CSR_WRITE_4(sc, txd->txd_txaddr,
   1402 		    txd->txd_dmamap->dm_segs[0].ds_addr);
   1403 		CSR_WRITE_4(sc, txd->txd_txstat, RTK_TX_THRESH(sc) | len);
   1404 	}
   1405 
   1406 	/*
   1407 	 * We broke out of the loop because all our TX slots are
   1408 	 * full. Mark the NIC as busy until it drains some of the
   1409 	 * packets from the queue.
   1410 	 */
   1411 	if (SIMPLEQ_EMPTY(&sc->rtk_tx_free))
   1412 		ifp->if_flags |= IFF_OACTIVE;
   1413 
   1414 	/*
   1415 	 * Set a timeout in case the chip goes out to lunch.
   1416 	 */
   1417 	ifp->if_timer = 5;
   1418 }
   1419 
   1420 STATIC int
   1421 rtk_init(ifp)
   1422 	struct ifnet *ifp;
   1423 {
   1424 	struct rtk_softc	*sc = ifp->if_softc;
   1425 	int			error = 0, i;
   1426 	u_int32_t		rxcfg;
   1427 
   1428 	if ((error = rtk_enable(sc)) != 0)
   1429 		goto out;
   1430 
   1431 	/*
   1432 	 * Cancel pending I/O.
   1433 	 */
   1434 	rtk_stop(ifp, 0);
   1435 
   1436 	/* Init our MAC address */
   1437 	for (i = 0; i < ETHER_ADDR_LEN; i++) {
   1438 		CSR_WRITE_1(sc, RTK_IDR0 + i, LLADDR(ifp->if_sadl)[i]);
   1439 	}
   1440 
   1441 	/* Init the RX buffer pointer register. */
   1442 	bus_dmamap_sync(sc->sc_dmat, sc->recv_dmamap, 0,
   1443 	    sc->recv_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
   1444 	CSR_WRITE_4(sc, RTK_RXADDR, sc->recv_dmamap->dm_segs[0].ds_addr);
   1445 
   1446 	/* Init TX descriptors. */
   1447 	rtk_list_tx_init(sc);
   1448 
   1449 	/* Init Early TX threshold. */
   1450 	sc->sc_txthresh = TXTH_256;
   1451 	/*
   1452 	 * Enable transmit and receive.
   1453 	 */
   1454 	CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_TX_ENB|RTK_CMD_RX_ENB);
   1455 
   1456 	/*
   1457 	 * Set the initial TX and RX configuration.
   1458 	 */
   1459 	CSR_WRITE_4(sc, RTK_TXCFG, RTK_TXCFG_CONFIG);
   1460 	CSR_WRITE_4(sc, RTK_RXCFG, RTK_RXCFG_CONFIG);
   1461 
   1462 	/* Set the individual bit to receive frames for this host only. */
   1463 	rxcfg = CSR_READ_4(sc, RTK_RXCFG);
   1464 	rxcfg |= RTK_RXCFG_RX_INDIV;
   1465 
   1466 	/* If we want promiscuous mode, set the allframes bit. */
   1467 	if (ifp->if_flags & IFF_PROMISC) {
   1468 		rxcfg |= RTK_RXCFG_RX_ALLPHYS;
   1469 		CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1470 	} else {
   1471 		rxcfg &= ~RTK_RXCFG_RX_ALLPHYS;
   1472 		CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1473 	}
   1474 
   1475 	/*
   1476 	 * Set capture broadcast bit to capture broadcast frames.
   1477 	 */
   1478 	if (ifp->if_flags & IFF_BROADCAST) {
   1479 		rxcfg |= RTK_RXCFG_RX_BROAD;
   1480 		CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1481 	} else {
   1482 		rxcfg &= ~RTK_RXCFG_RX_BROAD;
   1483 		CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1484 	}
   1485 
   1486 	/*
   1487 	 * Program the multicast filter, if necessary.
   1488 	 */
   1489 	rtk_setmulti(sc);
   1490 
   1491 	/*
   1492 	 * Enable interrupts.
   1493 	 */
   1494 	CSR_WRITE_2(sc, RTK_IMR, RTK_INTRS);
   1495 
   1496 	/* Start RX/TX process. */
   1497 	CSR_WRITE_4(sc, RTK_MISSEDPKT, 0);
   1498 
   1499 	/* Enable receiver and transmitter. */
   1500 	CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_TX_ENB|RTK_CMD_RX_ENB);
   1501 
   1502 	CSR_WRITE_1(sc, RTK_CFG1, RTK_CFG1_DRVLOAD|RTK_CFG1_FULLDUPLEX);
   1503 
   1504 	/*
   1505 	 * Set current media.
   1506 	 */
   1507 	mii_mediachg(&sc->mii);
   1508 
   1509 	ifp->if_flags |= IFF_RUNNING;
   1510 	ifp->if_flags &= ~IFF_OACTIVE;
   1511 
   1512 	callout_reset(&sc->rtk_tick_ch, hz, rtk_tick, sc);
   1513 
   1514  out:
   1515 	if (error) {
   1516 		ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   1517 		ifp->if_timer = 0;
   1518 		printf("%s: interface not running\n", sc->sc_dev.dv_xname);
   1519 	}
   1520 	return (error);
   1521 }
   1522 
   1523 /*
   1524  * Set media options.
   1525  */
   1526 STATIC int
   1527 rtk_ifmedia_upd(ifp)
   1528 	struct ifnet		*ifp;
   1529 {
   1530 	struct rtk_softc	*sc;
   1531 
   1532 	sc = ifp->if_softc;
   1533 
   1534 	return (mii_mediachg(&sc->mii));
   1535 }
   1536 
   1537 /*
   1538  * Report current media status.
   1539  */
   1540 STATIC void
   1541 rtk_ifmedia_sts(ifp, ifmr)
   1542 	struct ifnet		*ifp;
   1543 	struct ifmediareq	*ifmr;
   1544 {
   1545 	struct rtk_softc	*sc;
   1546 
   1547 	sc = ifp->if_softc;
   1548 
   1549 	mii_pollstat(&sc->mii);
   1550 	ifmr->ifm_status = sc->mii.mii_media_status;
   1551 	ifmr->ifm_active = sc->mii.mii_media_active;
   1552 }
   1553 
   1554 STATIC int
   1555 rtk_ioctl(ifp, command, data)
   1556 	struct ifnet		*ifp;
   1557 	u_long			command;
   1558 	caddr_t			data;
   1559 {
   1560 	struct rtk_softc	*sc = ifp->if_softc;
   1561 	struct ifreq		*ifr = (struct ifreq *) data;
   1562 	int			s, error = 0;
   1563 
   1564 	s = splnet();
   1565 
   1566 	switch (command) {
   1567 	case SIOCGIFMEDIA:
   1568 	case SIOCSIFMEDIA:
   1569 		error = ifmedia_ioctl(ifp, ifr, &sc->mii.mii_media, command);
   1570 		break;
   1571 
   1572 	default:
   1573 		error = ether_ioctl(ifp, command, data);
   1574 		if (error == ENETRESET) {
   1575 			if (ifp->if_flags & IFF_RUNNING) {
   1576 				/*
   1577 				 * Multicast list has changed.  Set the
   1578 				 * hardware filter accordingly.
   1579 				 */
   1580 				rtk_setmulti(sc);
   1581 			}
   1582 			error = 0;
   1583 		}
   1584 		break;
   1585 	}
   1586 
   1587 	splx(s);
   1588 
   1589 	return (error);
   1590 }
   1591 
   1592 STATIC void
   1593 rtk_watchdog(ifp)
   1594 	struct ifnet		*ifp;
   1595 {
   1596 	struct rtk_softc	*sc;
   1597 
   1598 	sc = ifp->if_softc;
   1599 
   1600 	printf("%s: watchdog timeout\n", sc->sc_dev.dv_xname);
   1601 	ifp->if_oerrors++;
   1602 	rtk_txeof(sc);
   1603 	rtk_rxeof(sc);
   1604 	rtk_init(ifp);
   1605 }
   1606 
   1607 /*
   1608  * Stop the adapter and free any mbufs allocated to the
   1609  * RX and TX lists.
   1610  */
   1611 STATIC void
   1612 rtk_stop(ifp, disable)
   1613 	struct ifnet *ifp;
   1614 	int disable;
   1615 {
   1616 	struct rtk_softc *sc = ifp->if_softc;
   1617 	struct rtk_tx_desc *txd;
   1618 
   1619 	callout_stop(&sc->rtk_tick_ch);
   1620 
   1621 	mii_down(&sc->mii);
   1622 
   1623 	CSR_WRITE_1(sc, RTK_COMMAND, 0x00);
   1624 	CSR_WRITE_2(sc, RTK_IMR, 0x0000);
   1625 
   1626 	/*
   1627 	 * Free the TX list buffers.
   1628 	 */
   1629 	while ((txd = SIMPLEQ_FIRST(&sc->rtk_tx_dirty)) != NULL) {
   1630 		SIMPLEQ_REMOVE_HEAD(&sc->rtk_tx_dirty, txd_q);
   1631 		bus_dmamap_unload(sc->sc_dmat, txd->txd_dmamap);
   1632 		m_freem(txd->txd_mbuf);
   1633 		txd->txd_mbuf = NULL;
   1634 		CSR_WRITE_4(sc, txd->txd_txaddr, 0);
   1635 	}
   1636 
   1637 	if (disable)
   1638 		rtk_disable(sc);
   1639 
   1640 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   1641 	ifp->if_timer = 0;
   1642 }
   1643 
   1644 /*
   1645  * Stop all chip I/O so that the kernel's probe routines don't
   1646  * get confused by errant DMAs when rebooting.
   1647  */
   1648 STATIC void
   1649 rtk_shutdown(vsc)
   1650 	void			*vsc;
   1651 {
   1652 	struct rtk_softc	*sc = (struct rtk_softc *)vsc;
   1653 
   1654 	rtk_stop(&sc->ethercom.ec_if, 0);
   1655 }
   1656 
   1657 STATIC void
   1658 rtk_tick(arg)
   1659 	void *arg;
   1660 {
   1661 	struct rtk_softc *sc = arg;
   1662 	int s = splnet();
   1663 
   1664 	mii_tick(&sc->mii);
   1665 	splx(s);
   1666 
   1667 	callout_reset(&sc->rtk_tick_ch, hz, rtk_tick, sc);
   1668 }
   1669