Home | History | Annotate | Line # | Download | only in ic
rtl8169.c revision 1.161.2.1
      1 /*	$NetBSD: rtl8169.c,v 1.161.2.1 2020/02/29 20:19:08 ad Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997, 1998-2003
      5  *	Bill Paul <wpaul (at) windriver.com>.  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 
     35 #include <sys/cdefs.h>
     36 __KERNEL_RCSID(0, "$NetBSD: rtl8169.c,v 1.161.2.1 2020/02/29 20:19:08 ad Exp $");
     37 /* $FreeBSD: /repoman/r/ncvs/src/sys/dev/re/if_re.c,v 1.20 2004/04/11 20:34:08 ru Exp $ */
     38 
     39 /*
     40  * RealTek 8139C+/8169/8169S/8168/8110S PCI NIC driver
     41  *
     42  * Written by Bill Paul <wpaul (at) windriver.com>
     43  * Senior Networking Software Engineer
     44  * Wind River Systems
     45  */
     46 
     47 /*
     48  * This driver is designed to support RealTek's next generation of
     49  * 10/100 and 10/100/1000 PCI ethernet controllers. There are currently
     50  * six devices in this family: the RTL8139C+, the RTL8169, the RTL8169S,
     51  * RTL8110S, the RTL8168 and the RTL8111.
     52  *
     53  * The 8139C+ is a 10/100 ethernet chip. It is backwards compatible
     54  * with the older 8139 family, however it also supports a special
     55  * C+ mode of operation that provides several new performance enhancing
     56  * features. These include:
     57  *
     58  *	o Descriptor based DMA mechanism. Each descriptor represents
     59  *	  a single packet fragment. Data buffers may be aligned on
     60  *	  any byte boundary.
     61  *
     62  *	o 64-bit DMA
     63  *
     64  *	o TCP/IP checksum offload for both RX and TX
     65  *
     66  *	o High and normal priority transmit DMA rings
     67  *
     68  *	o VLAN tag insertion and extraction
     69  *
     70  *	o TCP large send (segmentation offload)
     71  *
     72  * Like the 8139, the 8139C+ also has a built-in 10/100 PHY. The C+
     73  * programming API is fairly straightforward. The RX filtering, EEPROM
     74  * access and PHY access is the same as it is on the older 8139 series
     75  * chips.
     76  *
     77  * The 8169 is a 64-bit 10/100/1000 gigabit ethernet MAC. It has almost the
     78  * same programming API and feature set as the 8139C+ with the following
     79  * differences and additions:
     80  *
     81  *	o 1000Mbps mode
     82  *
     83  *	o Jumbo frames
     84  *
     85  *	o GMII and TBI ports/registers for interfacing with copper
     86  *	  or fiber PHYs
     87  *
     88  *      o RX and TX DMA rings can have up to 1024 descriptors
     89  *        (the 8139C+ allows a maximum of 64)
     90  *
     91  *	o Slight differences in register layout from the 8139C+
     92  *
     93  * The TX start and timer interrupt registers are at different locations
     94  * on the 8169 than they are on the 8139C+. Also, the status word in the
     95  * RX descriptor has a slightly different bit layout. The 8169 does not
     96  * have a built-in PHY. Most reference boards use a Marvell 88E1000 'Alaska'
     97  * copper gigE PHY.
     98  *
     99  * The 8169S/8110S 10/100/1000 devices have built-in copper gigE PHYs
    100  * (the 'S' stands for 'single-chip'). These devices have the same
    101  * programming API as the older 8169, but also have some vendor-specific
    102  * registers for the on-board PHY. The 8110S is a LAN-on-motherboard
    103  * part designed to be pin-compatible with the RealTek 8100 10/100 chip.
    104  *
    105  * This driver takes advantage of the RX and TX checksum offload and
    106  * VLAN tag insertion/extraction features. It also implements TX
    107  * interrupt moderation using the timer interrupt registers, which
    108  * significantly reduces TX interrupt load. There is also support
    109  * for jumbo frames, however the 8169/8169S/8110S can not transmit
    110  * jumbo frames larger than 7.5K, so the max MTU possible with this
    111  * driver is 7500 bytes.
    112  */
    113 
    114 
    115 #include <sys/param.h>
    116 #include <sys/endian.h>
    117 #include <sys/systm.h>
    118 #include <sys/sockio.h>
    119 #include <sys/mbuf.h>
    120 #include <sys/malloc.h>
    121 #include <sys/kernel.h>
    122 #include <sys/socket.h>
    123 #include <sys/device.h>
    124 
    125 #include <net/if.h>
    126 #include <net/if_arp.h>
    127 #include <net/if_dl.h>
    128 #include <net/if_ether.h>
    129 #include <net/if_media.h>
    130 #include <net/if_vlanvar.h>
    131 
    132 #include <netinet/in_systm.h>	/* XXX for IP_MAXPACKET */
    133 #include <netinet/in.h>		/* XXX for IP_MAXPACKET */
    134 #include <netinet/ip.h>		/* XXX for IP_MAXPACKET */
    135 
    136 #include <net/bpf.h>
    137 #include <sys/rndsource.h>
    138 
    139 #include <sys/bus.h>
    140 
    141 #include <dev/mii/mii.h>
    142 #include <dev/mii/miivar.h>
    143 
    144 #include <dev/ic/rtl81x9reg.h>
    145 #include <dev/ic/rtl81x9var.h>
    146 
    147 #include <dev/ic/rtl8169var.h>
    148 
    149 static inline void re_set_bufaddr(struct re_desc *, bus_addr_t);
    150 
    151 static int re_newbuf(struct rtk_softc *, int, struct mbuf *);
    152 static int re_rx_list_init(struct rtk_softc *);
    153 static int re_tx_list_init(struct rtk_softc *);
    154 static void re_rxeof(struct rtk_softc *);
    155 static void re_txeof(struct rtk_softc *);
    156 static void re_tick(void *);
    157 static void re_start(struct ifnet *);
    158 static int re_ioctl(struct ifnet *, u_long, void *);
    159 static int re_init(struct ifnet *);
    160 static void re_stop(struct ifnet *, int);
    161 static void re_watchdog(struct ifnet *);
    162 
    163 static int re_enable(struct rtk_softc *);
    164 static void re_disable(struct rtk_softc *);
    165 
    166 static int re_gmii_readreg(device_t, int, int, uint16_t *);
    167 static int re_gmii_writereg(device_t, int, int, uint16_t);
    168 
    169 static int re_miibus_readreg(device_t, int, int, uint16_t *);
    170 static int re_miibus_writereg(device_t, int, int, uint16_t);
    171 static void re_miibus_statchg(struct ifnet *);
    172 
    173 static void re_reset(struct rtk_softc *);
    174 
    175 static inline void
    176 re_set_bufaddr(struct re_desc *d, bus_addr_t addr)
    177 {
    178 
    179 	d->re_bufaddr_lo = htole32((uint32_t)addr);
    180 	if (sizeof(bus_addr_t) == sizeof(uint64_t))
    181 		d->re_bufaddr_hi = htole32((uint64_t)addr >> 32);
    182 	else
    183 		d->re_bufaddr_hi = 0;
    184 }
    185 
    186 static int
    187 re_gmii_readreg(device_t dev, int phy, int reg, uint16_t *val)
    188 {
    189 	struct rtk_softc *sc = device_private(dev);
    190 	uint32_t data;
    191 	int i;
    192 
    193 	if (phy != 7)
    194 		return -1;
    195 
    196 	/* Let the rgephy driver read the GMEDIASTAT register */
    197 
    198 	if (reg == RTK_GMEDIASTAT) {
    199 		*val = CSR_READ_1(sc, RTK_GMEDIASTAT);
    200 		return 0;
    201 	}
    202 
    203 	CSR_WRITE_4(sc, RTK_PHYAR, reg << 16);
    204 	DELAY(1000);
    205 
    206 	for (i = 0; i < RTK_TIMEOUT; i++) {
    207 		data = CSR_READ_4(sc, RTK_PHYAR);
    208 		if (data & RTK_PHYAR_BUSY)
    209 			break;
    210 		DELAY(100);
    211 	}
    212 
    213 	if (i == RTK_TIMEOUT) {
    214 		printf("%s: PHY read failed\n", device_xname(sc->sc_dev));
    215 		return ETIMEDOUT;
    216 	}
    217 
    218 	*val = data & RTK_PHYAR_PHYDATA;
    219 	return 0;
    220 }
    221 
    222 static int
    223 re_gmii_writereg(device_t dev, int phy, int reg, uint16_t val)
    224 {
    225 	struct rtk_softc *sc = device_private(dev);
    226 	uint32_t data;
    227 	int i;
    228 
    229 	CSR_WRITE_4(sc, RTK_PHYAR, (reg << 16) |
    230 	    (val & RTK_PHYAR_PHYDATA) | RTK_PHYAR_BUSY);
    231 	DELAY(1000);
    232 
    233 	for (i = 0; i < RTK_TIMEOUT; i++) {
    234 		data = CSR_READ_4(sc, RTK_PHYAR);
    235 		if (!(data & RTK_PHYAR_BUSY))
    236 			break;
    237 		DELAY(100);
    238 	}
    239 
    240 	if (i == RTK_TIMEOUT) {
    241 		printf("%s: PHY write reg %x <- %hx failed\n",
    242 		    device_xname(sc->sc_dev), reg, val);
    243 		return ETIMEDOUT;
    244 	}
    245 
    246 	return 0;
    247 }
    248 
    249 static int
    250 re_miibus_readreg(device_t dev, int phy, int reg, uint16_t *val)
    251 {
    252 	struct rtk_softc *sc = device_private(dev);
    253 	uint16_t re8139_reg = 0;
    254 	int s, rv = 0;
    255 
    256 	s = splnet();
    257 
    258 	if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0) {
    259 		rv = re_gmii_readreg(dev, phy, reg, val);
    260 		splx(s);
    261 		return rv;
    262 	}
    263 
    264 	/* Pretend the internal PHY is only at address 0 */
    265 	if (phy) {
    266 		splx(s);
    267 		return -1;
    268 	}
    269 	switch (reg) {
    270 	case MII_BMCR:
    271 		re8139_reg = RTK_BMCR;
    272 		break;
    273 	case MII_BMSR:
    274 		re8139_reg = RTK_BMSR;
    275 		break;
    276 	case MII_ANAR:
    277 		re8139_reg = RTK_ANAR;
    278 		break;
    279 	case MII_ANER:
    280 		re8139_reg = RTK_ANER;
    281 		break;
    282 	case MII_ANLPAR:
    283 		re8139_reg = RTK_LPAR;
    284 		break;
    285 	case MII_PHYIDR1:
    286 	case MII_PHYIDR2:
    287 		*val = 0;
    288 		splx(s);
    289 		return 0;
    290 	/*
    291 	 * Allow the rlphy driver to read the media status
    292 	 * register. If we have a link partner which does not
    293 	 * support NWAY, this is the register which will tell
    294 	 * us the results of parallel detection.
    295 	 */
    296 	case RTK_MEDIASTAT:
    297 		*val = CSR_READ_1(sc, RTK_MEDIASTAT);
    298 		splx(s);
    299 		return 0;
    300 	default:
    301 		printf("%s: bad phy register\n", device_xname(sc->sc_dev));
    302 		splx(s);
    303 		return -1;
    304 	}
    305 	*val = CSR_READ_2(sc, re8139_reg);
    306 	if ((sc->sc_quirk & RTKQ_8139CPLUS) != 0 && re8139_reg == RTK_BMCR) {
    307 		/* 8139C+ has different bit layout. */
    308 		*val &= ~(BMCR_LOOP | BMCR_ISO);
    309 	}
    310 	splx(s);
    311 	return 0;
    312 }
    313 
    314 static int
    315 re_miibus_writereg(device_t dev, int phy, int reg, uint16_t val)
    316 {
    317 	struct rtk_softc *sc = device_private(dev);
    318 	uint16_t re8139_reg = 0;
    319 	int s, rv;
    320 
    321 	s = splnet();
    322 
    323 	if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0) {
    324 		rv = re_gmii_writereg(dev, phy, reg, val);
    325 		splx(s);
    326 		return rv;
    327 	}
    328 
    329 	/* Pretend the internal PHY is only at address 0 */
    330 	if (phy) {
    331 		splx(s);
    332 		return -1;
    333 	}
    334 	switch (reg) {
    335 	case MII_BMCR:
    336 		re8139_reg = RTK_BMCR;
    337 		if ((sc->sc_quirk & RTKQ_8139CPLUS) != 0) {
    338 			/* 8139C+ has different bit layout. */
    339 			val &= ~(BMCR_LOOP | BMCR_ISO);
    340 		}
    341 		break;
    342 	case MII_BMSR:
    343 		re8139_reg = RTK_BMSR;
    344 		break;
    345 	case MII_ANAR:
    346 		re8139_reg = RTK_ANAR;
    347 		break;
    348 	case MII_ANER:
    349 		re8139_reg = RTK_ANER;
    350 		break;
    351 	case MII_ANLPAR:
    352 		re8139_reg = RTK_LPAR;
    353 		break;
    354 	case MII_PHYIDR1:
    355 	case MII_PHYIDR2:
    356 		splx(s);
    357 		return 0;
    358 		break;
    359 	default:
    360 		printf("%s: bad phy register\n", device_xname(sc->sc_dev));
    361 		splx(s);
    362 		return -1;
    363 	}
    364 	CSR_WRITE_2(sc, re8139_reg, val);
    365 	splx(s);
    366 	return 0;
    367 }
    368 
    369 static void
    370 re_miibus_statchg(struct ifnet *ifp)
    371 {
    372 
    373 	return;
    374 }
    375 
    376 static void
    377 re_reset(struct rtk_softc *sc)
    378 {
    379 	int i;
    380 
    381 	CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_RESET);
    382 
    383 	for (i = 0; i < RTK_TIMEOUT; i++) {
    384 		DELAY(10);
    385 		if ((CSR_READ_1(sc, RTK_COMMAND) & RTK_CMD_RESET) == 0)
    386 			break;
    387 	}
    388 	if (i == RTK_TIMEOUT)
    389 		printf("%s: reset never completed!\n",
    390 		    device_xname(sc->sc_dev));
    391 
    392 	/*
    393 	 * NB: Realtek-supplied FreeBSD driver does this only for MACFG_3,
    394 	 *     but also says "Rtl8169s sigle chip detected".
    395 	 */
    396 	if ((sc->sc_quirk & RTKQ_MACLDPS) != 0)
    397 		CSR_WRITE_1(sc, RTK_LDPS, 1);
    398 
    399 }
    400 
    401 /*
    402  * The following routine is designed to test for a defect on some
    403  * 32-bit 8169 cards. Some of these NICs have the REQ64# and ACK64#
    404  * lines connected to the bus, however for a 32-bit only card, they
    405  * should be pulled high. The result of this defect is that the
    406  * NIC will not work right if you plug it into a 64-bit slot: DMA
    407  * operations will be done with 64-bit transfers, which will fail
    408  * because the 64-bit data lines aren't connected.
    409  *
    410  * There's no way to work around this (short of talking a soldering
    411  * iron to the board), however we can detect it. The method we use
    412  * here is to put the NIC into digital loopback mode, set the receiver
    413  * to promiscuous mode, and then try to send a frame. We then compare
    414  * the frame data we sent to what was received. If the data matches,
    415  * then the NIC is working correctly, otherwise we know the user has
    416  * a defective NIC which has been mistakenly plugged into a 64-bit PCI
    417  * slot. In the latter case, there's no way the NIC can work correctly,
    418  * so we print out a message on the console and abort the device attach.
    419  */
    420 
    421 int
    422 re_diag(struct rtk_softc *sc)
    423 {
    424 	struct ifnet *ifp = &sc->ethercom.ec_if;
    425 	struct mbuf *m0;
    426 	struct ether_header *eh;
    427 	struct re_rxsoft *rxs;
    428 	struct re_desc *cur_rx;
    429 	bus_dmamap_t dmamap;
    430 	uint16_t status;
    431 	uint32_t rxstat;
    432 	int total_len, i, s, error = 0;
    433 	static const uint8_t dst[] = { 0x00, 'h', 'e', 'l', 'l', 'o' };
    434 	static const uint8_t src[] = { 0x00, 'w', 'o', 'r', 'l', 'd' };
    435 
    436 	/* Allocate a single mbuf */
    437 
    438 	MGETHDR(m0, M_DONTWAIT, MT_DATA);
    439 	if (m0 == NULL)
    440 		return ENOBUFS;
    441 
    442 	/*
    443 	 * Initialize the NIC in test mode. This sets the chip up
    444 	 * so that it can send and receive frames, but performs the
    445 	 * following special functions:
    446 	 * - Puts receiver in promiscuous mode
    447 	 * - Enables digital loopback mode
    448 	 * - Leaves interrupts turned off
    449 	 */
    450 
    451 	ifp->if_flags |= IFF_PROMISC;
    452 	sc->re_testmode = 1;
    453 	re_init(ifp);
    454 	re_stop(ifp, 0);
    455 	DELAY(100000);
    456 	re_init(ifp);
    457 
    458 	/* Put some data in the mbuf */
    459 
    460 	eh = mtod(m0, struct ether_header *);
    461 	memcpy(eh->ether_dhost, &dst, ETHER_ADDR_LEN);
    462 	memcpy(eh->ether_shost, &src, ETHER_ADDR_LEN);
    463 	eh->ether_type = htons(ETHERTYPE_IP);
    464 	m0->m_pkthdr.len = m0->m_len = ETHER_MIN_LEN - ETHER_CRC_LEN;
    465 
    466 	/*
    467 	 * Queue the packet, start transmission.
    468 	 */
    469 
    470 	CSR_WRITE_2(sc, RTK_ISR, 0xFFFF);
    471 	s = splnet();
    472 	IF_ENQUEUE(&ifp->if_snd, m0);
    473 	re_start(ifp);
    474 	splx(s);
    475 	m0 = NULL;
    476 
    477 	/* Wait for it to propagate through the chip */
    478 
    479 	DELAY(100000);
    480 	for (i = 0; i < RTK_TIMEOUT; i++) {
    481 		status = CSR_READ_2(sc, RTK_ISR);
    482 		if ((status & (RTK_ISR_TIMEOUT_EXPIRED | RTK_ISR_RX_OK)) ==
    483 		    (RTK_ISR_TIMEOUT_EXPIRED | RTK_ISR_RX_OK))
    484 			break;
    485 		DELAY(10);
    486 	}
    487 	if (i == RTK_TIMEOUT) {
    488 		aprint_error_dev(sc->sc_dev,
    489 		    "diagnostic failed, failed to receive packet "
    490 		    "in loopback mode\n");
    491 		error = EIO;
    492 		goto done;
    493 	}
    494 
    495 	/*
    496 	 * The packet should have been dumped into the first
    497 	 * entry in the RX DMA ring. Grab it from there.
    498 	 */
    499 
    500 	rxs = &sc->re_ldata.re_rxsoft[0];
    501 	dmamap = rxs->rxs_dmamap;
    502 	bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
    503 	    BUS_DMASYNC_POSTREAD);
    504 	bus_dmamap_unload(sc->sc_dmat, dmamap);
    505 
    506 	m0 = rxs->rxs_mbuf;
    507 	rxs->rxs_mbuf = NULL;
    508 	eh = mtod(m0, struct ether_header *);
    509 
    510 	RE_RXDESCSYNC(sc, 0, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
    511 	cur_rx = &sc->re_ldata.re_rx_list[0];
    512 	rxstat = le32toh(cur_rx->re_cmdstat);
    513 	total_len = rxstat & sc->re_rxlenmask;
    514 
    515 	if (total_len != ETHER_MIN_LEN) {
    516 		aprint_error_dev(sc->sc_dev,
    517 		    "diagnostic failed, received short packet\n");
    518 		error = EIO;
    519 		goto done;
    520 	}
    521 
    522 	/* Test that the received packet data matches what we sent. */
    523 
    524 	if (memcmp(&eh->ether_dhost, &dst, ETHER_ADDR_LEN) ||
    525 	    memcmp(&eh->ether_shost, &src, ETHER_ADDR_LEN) ||
    526 	    ntohs(eh->ether_type) != ETHERTYPE_IP) {
    527 		aprint_error_dev(sc->sc_dev, "WARNING, DMA FAILURE!\n"
    528 		    "expected TX data: %s/%s/0x%x\n"
    529 		    "received RX data: %s/%s/0x%x\n"
    530 		    "You may have a defective 32-bit NIC plugged "
    531 		    "into a 64-bit PCI slot.\n"
    532 		    "Please re-install the NIC in a 32-bit slot "
    533 		    "for proper operation.\n"
    534 		    "Read the re(4) man page for more details.\n" ,
    535 		    ether_sprintf(dst),  ether_sprintf(src), ETHERTYPE_IP,
    536 		    ether_sprintf(eh->ether_dhost),
    537 		    ether_sprintf(eh->ether_shost), ntohs(eh->ether_type));
    538 		error = EIO;
    539 	}
    540 
    541  done:
    542 	/* Turn interface off, release resources */
    543 
    544 	sc->re_testmode = 0;
    545 	ifp->if_flags &= ~IFF_PROMISC;
    546 	re_stop(ifp, 0);
    547 	if (m0 != NULL)
    548 		m_freem(m0);
    549 
    550 	return error;
    551 }
    552 
    553 
    554 /*
    555  * Attach the interface. Allocate softc structures, do ifmedia
    556  * setup and ethernet/BPF attach.
    557  */
    558 void
    559 re_attach(struct rtk_softc *sc)
    560 {
    561 	uint8_t eaddr[ETHER_ADDR_LEN];
    562 	struct ifnet *ifp;
    563 	struct mii_data *mii = &sc->mii;
    564 	int error = 0, i;
    565 
    566 	if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0) {
    567 		uint32_t hwrev;
    568 
    569 		/* Revision of 8169/8169S/8110s in bits 30..26, 23 */
    570 		hwrev = CSR_READ_4(sc, RTK_TXCFG) & RTK_TXCFG_HWREV;
    571 		switch (hwrev) {
    572 		case RTK_HWREV_8169:
    573 			sc->sc_quirk |= RTKQ_8169NONS;
    574 			break;
    575 		case RTK_HWREV_8169S:
    576 		case RTK_HWREV_8110S:
    577 		case RTK_HWREV_8169_8110SB:
    578 		case RTK_HWREV_8169_8110SBL:
    579 		case RTK_HWREV_8169_8110SC:
    580 			sc->sc_quirk |= RTKQ_MACLDPS;
    581 			break;
    582 		case RTK_HWREV_8168_SPIN1:
    583 		case RTK_HWREV_8168_SPIN2:
    584 		case RTK_HWREV_8168_SPIN3:
    585 			sc->sc_quirk |= RTKQ_MACSTAT;
    586 			break;
    587 		case RTK_HWREV_8168C:
    588 		case RTK_HWREV_8168C_SPIN2:
    589 		case RTK_HWREV_8168CP:
    590 		case RTK_HWREV_8168D:
    591 		case RTK_HWREV_8168DP:
    592 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    593 			    RTKQ_MACSTAT | RTKQ_CMDSTOP;
    594 			/*
    595 			 * From FreeBSD driver:
    596 			 *
    597 			 * These (8168/8111) controllers support jumbo frame
    598 			 * but it seems that enabling it requires touching
    599 			 * additional magic registers. Depending on MAC
    600 			 * revisions some controllers need to disable
    601 			 * checksum offload. So disable jumbo frame until
    602 			 * I have better idea what it really requires to
    603 			 * make it support.
    604 			 * RTL8168C/CP : supports up to 6KB jumbo frame.
    605 			 * RTL8111C/CP : supports up to 9KB jumbo frame.
    606 			 */
    607 			sc->sc_quirk |= RTKQ_NOJUMBO;
    608 			break;
    609 		case RTK_HWREV_8168E:
    610 		case RTK_HWREV_8168H_SPIN1:
    611 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    612 			    RTKQ_MACSTAT | RTKQ_CMDSTOP | RTKQ_PHYWAKE_PM |
    613 			    RTKQ_NOJUMBO;
    614 			break;
    615 		case RTK_HWREV_8168H:
    616 		case RTK_HWREV_8168FP:
    617 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    618 			    RTKQ_MACSTAT | RTKQ_CMDSTOP | RTKQ_PHYWAKE_PM |
    619 			    RTKQ_NOJUMBO | RTKQ_RXDV_GATED | RTKQ_TXRXEN_LATER;
    620 			break;
    621 		case RTK_HWREV_8168E_VL:
    622 		case RTK_HWREV_8168F:
    623 		case RTK_HWREV_8411:
    624 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    625 			    RTKQ_MACSTAT | RTKQ_CMDSTOP | RTKQ_NOJUMBO;
    626 			break;
    627 		case RTK_HWREV_8168EP:
    628 		case RTK_HWREV_8168G:
    629 		case RTK_HWREV_8168G_SPIN1:
    630 		case RTK_HWREV_8168G_SPIN2:
    631 		case RTK_HWREV_8168G_SPIN4:
    632 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    633 			    RTKQ_MACSTAT | RTKQ_CMDSTOP | RTKQ_NOJUMBO |
    634 			    RTKQ_RXDV_GATED;
    635 			break;
    636 		case RTK_HWREV_8100E:
    637 		case RTK_HWREV_8100E_SPIN2:
    638 		case RTK_HWREV_8101E:
    639 			sc->sc_quirk |= RTKQ_NOJUMBO;
    640 			break;
    641 		case RTK_HWREV_8102E:
    642 		case RTK_HWREV_8102EL:
    643 		case RTK_HWREV_8102EL_SPIN1:
    644 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    645 			    RTKQ_MACSTAT | RTKQ_CMDSTOP | RTKQ_NOJUMBO;
    646 			break;
    647 		case RTK_HWREV_8103E:
    648 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD |
    649 			    RTKQ_MACSTAT | RTKQ_CMDSTOP;
    650 			break;
    651 		case RTK_HWREV_8401E:
    652 		case RTK_HWREV_8105E:
    653 		case RTK_HWREV_8105E_SPIN1:
    654 		case RTK_HWREV_8106E:
    655 			sc->sc_quirk |= RTKQ_PHYWAKE_PM |
    656 			    RTKQ_DESCV2 | RTKQ_NOEECMD | RTKQ_MACSTAT |
    657 			    RTKQ_CMDSTOP;
    658 			break;
    659 		case RTK_HWREV_8402:
    660 			sc->sc_quirk |= RTKQ_PHYWAKE_PM |
    661 			    RTKQ_DESCV2 | RTKQ_NOEECMD | RTKQ_MACSTAT |
    662 			    RTKQ_CMDSTOP; /* CMDSTOP_WAIT_TXQ */
    663 			break;
    664 		default:
    665 			aprint_normal_dev(sc->sc_dev,
    666 			    "Unknown revision (0x%08x)\n", hwrev);
    667 			/* assume the latest features */
    668 			sc->sc_quirk |= RTKQ_DESCV2 | RTKQ_NOEECMD;
    669 			sc->sc_quirk |= RTKQ_NOJUMBO;
    670 		}
    671 
    672 		/* Set RX length mask */
    673 		sc->re_rxlenmask = RE_RDESC_STAT_GFRAGLEN;
    674 		sc->re_ldata.re_tx_desc_cnt = RE_TX_DESC_CNT_8169;
    675 	} else {
    676 		sc->sc_quirk |= RTKQ_NOJUMBO;
    677 
    678 		/* Set RX length mask */
    679 		sc->re_rxlenmask = RE_RDESC_STAT_FRAGLEN;
    680 		sc->re_ldata.re_tx_desc_cnt = RE_TX_DESC_CNT_8139;
    681 	}
    682 
    683 	/* Reset the adapter. */
    684 	re_reset(sc);
    685 
    686 	/*
    687 	 * RTL81x9 chips automatically read EEPROM to init MAC address,
    688 	 * and some NAS override its MAC address per own configuration,
    689 	 * so no need to explicitely read EEPROM and set ID registers.
    690 	 */
    691 #ifdef RE_USE_EECMD
    692 	if ((sc->sc_quirk & RTKQ_NOEECMD) != 0) {
    693 		/*
    694 		 * Get station address from ID registers.
    695 		 */
    696 		for (i = 0; i < ETHER_ADDR_LEN; i++)
    697 			eaddr[i] = CSR_READ_1(sc, RTK_IDR0 + i);
    698 	} else {
    699 		uint16_t val;
    700 		int addr_len;
    701 
    702 		/*
    703 		 * Get station address from the EEPROM.
    704 		 */
    705 		if (rtk_read_eeprom(sc, RTK_EE_ID, RTK_EEADDR_LEN1) == 0x8129)
    706 			addr_len = RTK_EEADDR_LEN1;
    707 		else
    708 			addr_len = RTK_EEADDR_LEN0;
    709 
    710 		/*
    711 		 * Get station address from the EEPROM.
    712 		 */
    713 		for (i = 0; i < ETHER_ADDR_LEN / 2; i++) {
    714 			val = rtk_read_eeprom(sc, RTK_EE_EADDR0 + i, addr_len);
    715 			eaddr[(i * 2) + 0] = val & 0xff;
    716 			eaddr[(i * 2) + 1] = val >> 8;
    717 		}
    718 	}
    719 #else
    720 	/*
    721 	 * Get station address from ID registers.
    722 	 */
    723 	for (i = 0; i < ETHER_ADDR_LEN; i++)
    724 		eaddr[i] = CSR_READ_1(sc, RTK_IDR0 + i);
    725 #endif
    726 
    727 	/* Take PHY out of power down mode. */
    728 	if ((sc->sc_quirk & RTKQ_PHYWAKE_PM) != 0)
    729 		CSR_WRITE_1(sc, RTK_PMCH, CSR_READ_1(sc, RTK_PMCH) | 0x80);
    730 
    731 	aprint_normal_dev(sc->sc_dev, "Ethernet address %s\n",
    732 	    ether_sprintf(eaddr));
    733 
    734 	if (sc->re_ldata.re_tx_desc_cnt >
    735 	    PAGE_SIZE / sizeof(struct re_desc)) {
    736 		sc->re_ldata.re_tx_desc_cnt =
    737 		    PAGE_SIZE / sizeof(struct re_desc);
    738 	}
    739 
    740 	aprint_verbose_dev(sc->sc_dev, "using %d tx descriptors\n",
    741 	    sc->re_ldata.re_tx_desc_cnt);
    742 	KASSERT(RE_NEXT_TX_DESC(sc, RE_TX_DESC_CNT(sc) - 1) == 0);
    743 
    744 	/* Allocate DMA'able memory for the TX ring */
    745 	if ((error = bus_dmamem_alloc(sc->sc_dmat, RE_TX_LIST_SZ(sc),
    746 	    RE_RING_ALIGN, 0, &sc->re_ldata.re_tx_listseg, 1,
    747 	    &sc->re_ldata.re_tx_listnseg, BUS_DMA_NOWAIT)) != 0) {
    748 		aprint_error_dev(sc->sc_dev,
    749 		    "can't allocate tx listseg, error = %d\n", error);
    750 		goto fail_0;
    751 	}
    752 
    753 	/* Load the map for the TX ring. */
    754 	if ((error = bus_dmamem_map(sc->sc_dmat, &sc->re_ldata.re_tx_listseg,
    755 	    sc->re_ldata.re_tx_listnseg, RE_TX_LIST_SZ(sc),
    756 	    (void **)&sc->re_ldata.re_tx_list,
    757 	    BUS_DMA_COHERENT | BUS_DMA_NOWAIT)) != 0) {
    758 		aprint_error_dev(sc->sc_dev,
    759 		    "can't map tx list, error = %d\n", error);
    760 		goto fail_1;
    761 	}
    762 	memset(sc->re_ldata.re_tx_list, 0, RE_TX_LIST_SZ(sc));
    763 
    764 	if ((error = bus_dmamap_create(sc->sc_dmat, RE_TX_LIST_SZ(sc), 1,
    765 	    RE_TX_LIST_SZ(sc), 0, 0,
    766 	    &sc->re_ldata.re_tx_list_map)) != 0) {
    767 		aprint_error_dev(sc->sc_dev,
    768 		    "can't create tx list map, error = %d\n", error);
    769 		goto fail_2;
    770 	}
    771 
    772 
    773 	if ((error = bus_dmamap_load(sc->sc_dmat,
    774 	    sc->re_ldata.re_tx_list_map, sc->re_ldata.re_tx_list,
    775 	    RE_TX_LIST_SZ(sc), NULL, BUS_DMA_NOWAIT)) != 0) {
    776 		aprint_error_dev(sc->sc_dev,
    777 		    "can't load tx list, error = %d\n", error);
    778 		goto fail_3;
    779 	}
    780 
    781 	/* Create DMA maps for TX buffers */
    782 	for (i = 0; i < RE_TX_QLEN; i++) {
    783 		error = bus_dmamap_create(sc->sc_dmat,
    784 		    round_page(IP_MAXPACKET),
    785 		    RE_TX_DESC_CNT(sc), RE_TDESC_CMD_FRAGLEN,
    786 		    0, 0, &sc->re_ldata.re_txq[i].txq_dmamap);
    787 		if (error) {
    788 			aprint_error_dev(sc->sc_dev,
    789 			    "can't create DMA map for TX\n");
    790 			goto fail_4;
    791 		}
    792 	}
    793 
    794 	/* Allocate DMA'able memory for the RX ring */
    795 	/* XXX see also a comment about RE_RX_DMAMEM_SZ in rtl81x9var.h */
    796 	if ((error = bus_dmamem_alloc(sc->sc_dmat,
    797 	    RE_RX_DMAMEM_SZ, RE_RING_ALIGN, 0, &sc->re_ldata.re_rx_listseg, 1,
    798 	    &sc->re_ldata.re_rx_listnseg, BUS_DMA_NOWAIT)) != 0) {
    799 		aprint_error_dev(sc->sc_dev,
    800 		    "can't allocate rx listseg, error = %d\n", error);
    801 		goto fail_4;
    802 	}
    803 
    804 	/* Load the map for the RX ring. */
    805 	if ((error = bus_dmamem_map(sc->sc_dmat, &sc->re_ldata.re_rx_listseg,
    806 	    sc->re_ldata.re_rx_listnseg, RE_RX_DMAMEM_SZ,
    807 	    (void **)&sc->re_ldata.re_rx_list,
    808 	    BUS_DMA_COHERENT | BUS_DMA_NOWAIT)) != 0) {
    809 		aprint_error_dev(sc->sc_dev,
    810 		    "can't map rx list, error = %d\n", error);
    811 		goto fail_5;
    812 	}
    813 	memset(sc->re_ldata.re_rx_list, 0, RE_RX_DMAMEM_SZ);
    814 
    815 	if ((error = bus_dmamap_create(sc->sc_dmat,
    816 	    RE_RX_DMAMEM_SZ, 1, RE_RX_DMAMEM_SZ, 0, 0,
    817 	    &sc->re_ldata.re_rx_list_map)) != 0) {
    818 		aprint_error_dev(sc->sc_dev,
    819 		    "can't create rx list map, error = %d\n", error);
    820 		goto fail_6;
    821 	}
    822 
    823 	if ((error = bus_dmamap_load(sc->sc_dmat,
    824 	    sc->re_ldata.re_rx_list_map, sc->re_ldata.re_rx_list,
    825 	    RE_RX_DMAMEM_SZ, NULL, BUS_DMA_NOWAIT)) != 0) {
    826 		aprint_error_dev(sc->sc_dev,
    827 		    "can't load rx list, error = %d\n", error);
    828 		goto fail_7;
    829 	}
    830 
    831 	/* Create DMA maps for RX buffers */
    832 	for (i = 0; i < RE_RX_DESC_CNT; i++) {
    833 		error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1, MCLBYTES,
    834 		    0, 0, &sc->re_ldata.re_rxsoft[i].rxs_dmamap);
    835 		if (error) {
    836 			aprint_error_dev(sc->sc_dev,
    837 			    "can't create DMA map for RX\n");
    838 			goto fail_8;
    839 		}
    840 	}
    841 
    842 	/*
    843 	 * Record interface as attached. From here, we should not fail.
    844 	 */
    845 	sc->sc_flags |= RTK_ATTACHED;
    846 
    847 	ifp = &sc->ethercom.ec_if;
    848 	ifp->if_softc = sc;
    849 	strlcpy(ifp->if_xname, device_xname(sc->sc_dev), IFNAMSIZ);
    850 	ifp->if_mtu = ETHERMTU;
    851 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    852 	ifp->if_ioctl = re_ioctl;
    853 	sc->ethercom.ec_capabilities |=
    854 	    ETHERCAP_VLAN_MTU | ETHERCAP_VLAN_HWTAGGING;
    855 	ifp->if_start = re_start;
    856 	ifp->if_stop = re_stop;
    857 
    858 	/*
    859 	 * IFCAP_CSUM_IPv4_Tx on re(4) is broken for small packets,
    860 	 * so we have a workaround to handle the bug by padding
    861 	 * such packets manually.
    862 	 */
    863 	ifp->if_capabilities |=
    864 	    IFCAP_CSUM_IPv4_Tx | IFCAP_CSUM_IPv4_Rx |
    865 	    IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
    866 	    IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx |
    867 	    IFCAP_TSOv4;
    868 
    869 	ifp->if_watchdog = re_watchdog;
    870 	ifp->if_init = re_init;
    871 	ifp->if_snd.ifq_maxlen = RE_IFQ_MAXLEN;
    872 	ifp->if_capenable = ifp->if_capabilities;
    873 	IFQ_SET_READY(&ifp->if_snd);
    874 
    875 	callout_init(&sc->rtk_tick_ch, 0);
    876 	callout_setfunc(&sc->rtk_tick_ch, re_tick, sc);
    877 
    878 	/* Do MII setup */
    879 	mii->mii_ifp = ifp;
    880 	mii->mii_readreg = re_miibus_readreg;
    881 	mii->mii_writereg = re_miibus_writereg;
    882 	mii->mii_statchg = re_miibus_statchg;
    883 	sc->ethercom.ec_mii = mii;
    884 	ifmedia_init(&mii->mii_media, IFM_IMASK, ether_mediachange,
    885 	    ether_mediastatus);
    886 	mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
    887 	    MII_OFFSET_ANY, 0);
    888 	ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
    889 
    890 	/*
    891 	 * Call MI attach routine.
    892 	 */
    893 	if_attach(ifp);
    894 	if_deferred_start_init(ifp, NULL);
    895 	ether_ifattach(ifp, eaddr);
    896 
    897 	rnd_attach_source(&sc->rnd_source, device_xname(sc->sc_dev),
    898 	    RND_TYPE_NET, RND_FLAG_DEFAULT);
    899 
    900 	if (pmf_device_register(sc->sc_dev, NULL, NULL))
    901 		pmf_class_network_register(sc->sc_dev, ifp);
    902 	else
    903 		aprint_error_dev(sc->sc_dev,
    904 		    "couldn't establish power handler\n");
    905 
    906 	return;
    907 
    908  fail_8:
    909 	/* Destroy DMA maps for RX buffers. */
    910 	for (i = 0; i < RE_RX_DESC_CNT; i++)
    911 		if (sc->re_ldata.re_rxsoft[i].rxs_dmamap != NULL)
    912 			bus_dmamap_destroy(sc->sc_dmat,
    913 			    sc->re_ldata.re_rxsoft[i].rxs_dmamap);
    914 
    915 	/* Free DMA'able memory for the RX ring. */
    916 	bus_dmamap_unload(sc->sc_dmat, sc->re_ldata.re_rx_list_map);
    917  fail_7:
    918 	bus_dmamap_destroy(sc->sc_dmat, sc->re_ldata.re_rx_list_map);
    919  fail_6:
    920 	bus_dmamem_unmap(sc->sc_dmat,
    921 	    (void *)sc->re_ldata.re_rx_list, RE_RX_DMAMEM_SZ);
    922  fail_5:
    923 	bus_dmamem_free(sc->sc_dmat,
    924 	    &sc->re_ldata.re_rx_listseg, sc->re_ldata.re_rx_listnseg);
    925 
    926  fail_4:
    927 	/* Destroy DMA maps for TX buffers. */
    928 	for (i = 0; i < RE_TX_QLEN; i++)
    929 		if (sc->re_ldata.re_txq[i].txq_dmamap != NULL)
    930 			bus_dmamap_destroy(sc->sc_dmat,
    931 			    sc->re_ldata.re_txq[i].txq_dmamap);
    932 
    933 	/* Free DMA'able memory for the TX ring. */
    934 	bus_dmamap_unload(sc->sc_dmat, sc->re_ldata.re_tx_list_map);
    935  fail_3:
    936 	bus_dmamap_destroy(sc->sc_dmat, sc->re_ldata.re_tx_list_map);
    937  fail_2:
    938 	bus_dmamem_unmap(sc->sc_dmat,
    939 	    (void *)sc->re_ldata.re_tx_list, RE_TX_LIST_SZ(sc));
    940  fail_1:
    941 	bus_dmamem_free(sc->sc_dmat,
    942 	    &sc->re_ldata.re_tx_listseg, sc->re_ldata.re_tx_listnseg);
    943  fail_0:
    944 	return;
    945 }
    946 
    947 
    948 /*
    949  * re_activate:
    950  *     Handle device activation/deactivation requests.
    951  */
    952 int
    953 re_activate(device_t self, enum devact act)
    954 {
    955 	struct rtk_softc *sc = device_private(self);
    956 
    957 	switch (act) {
    958 	case DVACT_DEACTIVATE:
    959 		if_deactivate(&sc->ethercom.ec_if);
    960 		return 0;
    961 	default:
    962 		return EOPNOTSUPP;
    963 	}
    964 }
    965 
    966 /*
    967  * re_detach:
    968  *     Detach a rtk interface.
    969  */
    970 int
    971 re_detach(struct rtk_softc *sc)
    972 {
    973 	struct ifnet *ifp = &sc->ethercom.ec_if;
    974 	int i;
    975 
    976 	/*
    977 	 * Succeed now if there isn't any work to do.
    978 	 */
    979 	if ((sc->sc_flags & RTK_ATTACHED) == 0)
    980 		return 0;
    981 
    982 	/* Unhook our tick handler. */
    983 	callout_stop(&sc->rtk_tick_ch);
    984 
    985 	/* Detach all PHYs. */
    986 	mii_detach(&sc->mii, MII_PHY_ANY, MII_OFFSET_ANY);
    987 
    988 	rnd_detach_source(&sc->rnd_source);
    989 	ether_ifdetach(ifp);
    990 	if_detach(ifp);
    991 
    992 	/* Delete all remaining media. */
    993 	ifmedia_fini(&sc->mii.mii_media);
    994 
    995 	/* Destroy DMA maps for RX buffers. */
    996 	for (i = 0; i < RE_RX_DESC_CNT; i++)
    997 		if (sc->re_ldata.re_rxsoft[i].rxs_dmamap != NULL)
    998 			bus_dmamap_destroy(sc->sc_dmat,
    999 			    sc->re_ldata.re_rxsoft[i].rxs_dmamap);
   1000 
   1001 	/* Free DMA'able memory for the RX ring. */
   1002 	bus_dmamap_unload(sc->sc_dmat, sc->re_ldata.re_rx_list_map);
   1003 	bus_dmamap_destroy(sc->sc_dmat, sc->re_ldata.re_rx_list_map);
   1004 	bus_dmamem_unmap(sc->sc_dmat,
   1005 	    (void *)sc->re_ldata.re_rx_list, RE_RX_DMAMEM_SZ);
   1006 	bus_dmamem_free(sc->sc_dmat,
   1007 	    &sc->re_ldata.re_rx_listseg, sc->re_ldata.re_rx_listnseg);
   1008 
   1009 	/* Destroy DMA maps for TX buffers. */
   1010 	for (i = 0; i < RE_TX_QLEN; i++)
   1011 		if (sc->re_ldata.re_txq[i].txq_dmamap != NULL)
   1012 			bus_dmamap_destroy(sc->sc_dmat,
   1013 			    sc->re_ldata.re_txq[i].txq_dmamap);
   1014 
   1015 	/* Free DMA'able memory for the TX ring. */
   1016 	bus_dmamap_unload(sc->sc_dmat, sc->re_ldata.re_tx_list_map);
   1017 	bus_dmamap_destroy(sc->sc_dmat, sc->re_ldata.re_tx_list_map);
   1018 	bus_dmamem_unmap(sc->sc_dmat,
   1019 	    (void *)sc->re_ldata.re_tx_list, RE_TX_LIST_SZ(sc));
   1020 	bus_dmamem_free(sc->sc_dmat,
   1021 	    &sc->re_ldata.re_tx_listseg, sc->re_ldata.re_tx_listnseg);
   1022 
   1023 	pmf_device_deregister(sc->sc_dev);
   1024 
   1025 	/* we don't want to run again */
   1026 	sc->sc_flags &= ~RTK_ATTACHED;
   1027 
   1028 	return 0;
   1029 }
   1030 
   1031 /*
   1032  * re_enable:
   1033  *     Enable the RTL81X9 chip.
   1034  */
   1035 static int
   1036 re_enable(struct rtk_softc *sc)
   1037 {
   1038 
   1039 	if (RTK_IS_ENABLED(sc) == 0 && sc->sc_enable != NULL) {
   1040 		if ((*sc->sc_enable)(sc) != 0) {
   1041 			printf("%s: device enable failed\n",
   1042 			    device_xname(sc->sc_dev));
   1043 			return EIO;
   1044 		}
   1045 		sc->sc_flags |= RTK_ENABLED;
   1046 	}
   1047 	return 0;
   1048 }
   1049 
   1050 /*
   1051  * re_disable:
   1052  *     Disable the RTL81X9 chip.
   1053  */
   1054 static void
   1055 re_disable(struct rtk_softc *sc)
   1056 {
   1057 
   1058 	if (RTK_IS_ENABLED(sc) && sc->sc_disable != NULL) {
   1059 		(*sc->sc_disable)(sc);
   1060 		sc->sc_flags &= ~RTK_ENABLED;
   1061 	}
   1062 }
   1063 
   1064 static int
   1065 re_newbuf(struct rtk_softc *sc, int idx, struct mbuf *m)
   1066 {
   1067 	struct mbuf *n = NULL;
   1068 	bus_dmamap_t map;
   1069 	struct re_desc *d;
   1070 	struct re_rxsoft *rxs;
   1071 	uint32_t cmdstat;
   1072 	int error;
   1073 
   1074 	if (m == NULL) {
   1075 		MGETHDR(n, M_DONTWAIT, MT_DATA);
   1076 		if (n == NULL)
   1077 			return ENOBUFS;
   1078 
   1079 		MCLGET(n, M_DONTWAIT);
   1080 		if ((n->m_flags & M_EXT) == 0) {
   1081 			m_freem(n);
   1082 			return ENOBUFS;
   1083 		}
   1084 		m = n;
   1085 	} else
   1086 		m->m_data = m->m_ext.ext_buf;
   1087 
   1088 	/*
   1089 	 * Initialize mbuf length fields and fixup
   1090 	 * alignment so that the frame payload is
   1091 	 * longword aligned.
   1092 	 */
   1093 	m->m_len = m->m_pkthdr.len = MCLBYTES - RE_ETHER_ALIGN;
   1094 	m->m_data += RE_ETHER_ALIGN;
   1095 
   1096 	rxs = &sc->re_ldata.re_rxsoft[idx];
   1097 	map = rxs->rxs_dmamap;
   1098 	error = bus_dmamap_load_mbuf(sc->sc_dmat, map, m,
   1099 	    BUS_DMA_READ|BUS_DMA_NOWAIT);
   1100 
   1101 	if (error)
   1102 		goto out;
   1103 
   1104 	bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
   1105 	    BUS_DMASYNC_PREREAD);
   1106 
   1107 	d = &sc->re_ldata.re_rx_list[idx];
   1108 #ifdef DIAGNOSTIC
   1109 	RE_RXDESCSYNC(sc, idx, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   1110 	cmdstat = le32toh(d->re_cmdstat);
   1111 	RE_RXDESCSYNC(sc, idx, BUS_DMASYNC_PREREAD);
   1112 	if (cmdstat & RE_RDESC_STAT_OWN) {
   1113 		panic("%s: tried to map busy RX descriptor",
   1114 		    device_xname(sc->sc_dev));
   1115 	}
   1116 #endif
   1117 
   1118 	rxs->rxs_mbuf = m;
   1119 
   1120 	d->re_vlanctl = 0;
   1121 	cmdstat = map->dm_segs[0].ds_len;
   1122 	if (idx == (RE_RX_DESC_CNT - 1))
   1123 		cmdstat |= RE_RDESC_CMD_EOR;
   1124 	re_set_bufaddr(d, map->dm_segs[0].ds_addr);
   1125 	d->re_cmdstat = htole32(cmdstat);
   1126 	RE_RXDESCSYNC(sc, idx, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1127 	cmdstat |= RE_RDESC_CMD_OWN;
   1128 	d->re_cmdstat = htole32(cmdstat);
   1129 	RE_RXDESCSYNC(sc, idx, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1130 
   1131 	return 0;
   1132  out:
   1133 	if (n != NULL)
   1134 		m_freem(n);
   1135 	return ENOMEM;
   1136 }
   1137 
   1138 static int
   1139 re_tx_list_init(struct rtk_softc *sc)
   1140 {
   1141 	int i;
   1142 
   1143 	memset(sc->re_ldata.re_tx_list, 0, RE_TX_LIST_SZ(sc));
   1144 	for (i = 0; i < RE_TX_QLEN; i++) {
   1145 		sc->re_ldata.re_txq[i].txq_mbuf = NULL;
   1146 	}
   1147 
   1148 	bus_dmamap_sync(sc->sc_dmat,
   1149 	    sc->re_ldata.re_tx_list_map, 0,
   1150 	    sc->re_ldata.re_tx_list_map->dm_mapsize,
   1151 	    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1152 	sc->re_ldata.re_txq_prodidx = 0;
   1153 	sc->re_ldata.re_txq_considx = 0;
   1154 	sc->re_ldata.re_txq_free = RE_TX_QLEN;
   1155 	sc->re_ldata.re_tx_free = RE_TX_DESC_CNT(sc);
   1156 	sc->re_ldata.re_tx_nextfree = 0;
   1157 
   1158 	return 0;
   1159 }
   1160 
   1161 static int
   1162 re_rx_list_init(struct rtk_softc *sc)
   1163 {
   1164 	int i;
   1165 
   1166 	memset(sc->re_ldata.re_rx_list, 0, RE_RX_LIST_SZ);
   1167 
   1168 	for (i = 0; i < RE_RX_DESC_CNT; i++) {
   1169 		if (re_newbuf(sc, i, NULL) == ENOBUFS)
   1170 			return ENOBUFS;
   1171 	}
   1172 
   1173 	sc->re_ldata.re_rx_prodidx = 0;
   1174 	sc->re_head = sc->re_tail = NULL;
   1175 
   1176 	return 0;
   1177 }
   1178 
   1179 /*
   1180  * RX handler for C+ and 8169. For the gigE chips, we support
   1181  * the reception of jumbo frames that have been fragmented
   1182  * across multiple 2K mbuf cluster buffers.
   1183  */
   1184 static void
   1185 re_rxeof(struct rtk_softc *sc)
   1186 {
   1187 	struct mbuf *m;
   1188 	struct ifnet *ifp;
   1189 	int i, total_len;
   1190 	struct re_desc *cur_rx;
   1191 	struct re_rxsoft *rxs;
   1192 	uint32_t rxstat, rxvlan;
   1193 
   1194 	ifp = &sc->ethercom.ec_if;
   1195 
   1196 	for (i = sc->re_ldata.re_rx_prodidx;; i = RE_NEXT_RX_DESC(sc, i)) {
   1197 		cur_rx = &sc->re_ldata.re_rx_list[i];
   1198 		RE_RXDESCSYNC(sc, i,
   1199 		    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   1200 		rxstat = le32toh(cur_rx->re_cmdstat);
   1201 		rxvlan = le32toh(cur_rx->re_vlanctl);
   1202 		RE_RXDESCSYNC(sc, i, BUS_DMASYNC_PREREAD);
   1203 		if ((rxstat & RE_RDESC_STAT_OWN) != 0) {
   1204 			break;
   1205 		}
   1206 		total_len = rxstat & sc->re_rxlenmask;
   1207 		rxs = &sc->re_ldata.re_rxsoft[i];
   1208 		m = rxs->rxs_mbuf;
   1209 
   1210 		/* Invalidate the RX mbuf and unload its map */
   1211 
   1212 		bus_dmamap_sync(sc->sc_dmat,
   1213 		    rxs->rxs_dmamap, 0, rxs->rxs_dmamap->dm_mapsize,
   1214 		    BUS_DMASYNC_POSTREAD);
   1215 		bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
   1216 
   1217 		if ((rxstat & RE_RDESC_STAT_EOF) == 0) {
   1218 			m->m_len = MCLBYTES - RE_ETHER_ALIGN;
   1219 			if (sc->re_head == NULL)
   1220 				sc->re_head = sc->re_tail = m;
   1221 			else {
   1222 				m_remove_pkthdr(m);
   1223 				sc->re_tail->m_next = m;
   1224 				sc->re_tail = m;
   1225 			}
   1226 			re_newbuf(sc, i, NULL);
   1227 			continue;
   1228 		}
   1229 
   1230 		/*
   1231 		 * NOTE: for the 8139C+, the frame length field
   1232 		 * is always 12 bits in size, but for the gigE chips,
   1233 		 * it is 13 bits (since the max RX frame length is 16K).
   1234 		 * Unfortunately, all 32 bits in the status word
   1235 		 * were already used, so to make room for the extra
   1236 		 * length bit, RealTek took out the 'frame alignment
   1237 		 * error' bit and shifted the other status bits
   1238 		 * over one slot. The OWN, EOR, FS and LS bits are
   1239 		 * still in the same places. We have already extracted
   1240 		 * the frame length and checked the OWN bit, so rather
   1241 		 * than using an alternate bit mapping, we shift the
   1242 		 * status bits one space to the right so we can evaluate
   1243 		 * them using the 8169 status as though it was in the
   1244 		 * same format as that of the 8139C+.
   1245 		 */
   1246 		if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0)
   1247 			rxstat >>= 1;
   1248 
   1249 		if (__predict_false((rxstat & RE_RDESC_STAT_RXERRSUM) != 0)) {
   1250 #ifdef RE_DEBUG
   1251 			printf("%s: RX error (rxstat = 0x%08x)",
   1252 			    device_xname(sc->sc_dev), rxstat);
   1253 			if (rxstat & RE_RDESC_STAT_FRALIGN)
   1254 				printf(", frame alignment error");
   1255 			if (rxstat & RE_RDESC_STAT_BUFOFLOW)
   1256 				printf(", out of buffer space");
   1257 			if (rxstat & RE_RDESC_STAT_FIFOOFLOW)
   1258 				printf(", FIFO overrun");
   1259 			if (rxstat & RE_RDESC_STAT_GIANT)
   1260 				printf(", giant packet");
   1261 			if (rxstat & RE_RDESC_STAT_RUNT)
   1262 				printf(", runt packet");
   1263 			if (rxstat & RE_RDESC_STAT_CRCERR)
   1264 				printf(", CRC error");
   1265 			printf("\n");
   1266 #endif
   1267 			if_statinc(ifp, if_ierrors);
   1268 			/*
   1269 			 * If this is part of a multi-fragment packet,
   1270 			 * discard all the pieces.
   1271 			 */
   1272 			if (sc->re_head != NULL) {
   1273 				m_freem(sc->re_head);
   1274 				sc->re_head = sc->re_tail = NULL;
   1275 			}
   1276 			re_newbuf(sc, i, m);
   1277 			continue;
   1278 		}
   1279 
   1280 		/*
   1281 		 * If allocating a replacement mbuf fails,
   1282 		 * reload the current one.
   1283 		 */
   1284 
   1285 		if (__predict_false(re_newbuf(sc, i, NULL) != 0)) {
   1286 			if_statinc(ifp, if_ierrors);
   1287 			if (sc->re_head != NULL) {
   1288 				m_freem(sc->re_head);
   1289 				sc->re_head = sc->re_tail = NULL;
   1290 			}
   1291 			re_newbuf(sc, i, m);
   1292 			continue;
   1293 		}
   1294 
   1295 		if (sc->re_head != NULL) {
   1296 			m->m_len = total_len % (MCLBYTES - RE_ETHER_ALIGN);
   1297 			/*
   1298 			 * Special case: if there's 4 bytes or less
   1299 			 * in this buffer, the mbuf can be discarded:
   1300 			 * the last 4 bytes is the CRC, which we don't
   1301 			 * care about anyway.
   1302 			 */
   1303 			if (m->m_len <= ETHER_CRC_LEN) {
   1304 				sc->re_tail->m_len -=
   1305 				    (ETHER_CRC_LEN - m->m_len);
   1306 				m_freem(m);
   1307 			} else {
   1308 				m->m_len -= ETHER_CRC_LEN;
   1309 				m_remove_pkthdr(m);
   1310 				sc->re_tail->m_next = m;
   1311 			}
   1312 			m = sc->re_head;
   1313 			sc->re_head = sc->re_tail = NULL;
   1314 			m->m_pkthdr.len = total_len - ETHER_CRC_LEN;
   1315 		} else
   1316 			m->m_pkthdr.len = m->m_len =
   1317 			    (total_len - ETHER_CRC_LEN);
   1318 
   1319 		m_set_rcvif(m, ifp);
   1320 
   1321 		/* Do RX checksumming */
   1322 		if ((sc->sc_quirk & RTKQ_DESCV2) == 0) {
   1323 			/* Check IP header checksum */
   1324 			if ((rxstat & RE_RDESC_STAT_PROTOID) != 0) {
   1325 				m->m_pkthdr.csum_flags |= M_CSUM_IPv4;
   1326 				if (rxstat & RE_RDESC_STAT_IPSUMBAD)
   1327 					m->m_pkthdr.csum_flags |=
   1328 					    M_CSUM_IPv4_BAD;
   1329 
   1330 				/* Check TCP/UDP checksum */
   1331 				if (RE_TCPPKT(rxstat)) {
   1332 					m->m_pkthdr.csum_flags |= M_CSUM_TCPv4;
   1333 					if (rxstat & RE_RDESC_STAT_TCPSUMBAD)
   1334 						m->m_pkthdr.csum_flags |=
   1335 						    M_CSUM_TCP_UDP_BAD;
   1336 				} else if (RE_UDPPKT(rxstat)) {
   1337 					m->m_pkthdr.csum_flags |= M_CSUM_UDPv4;
   1338 					if (rxstat & RE_RDESC_STAT_UDPSUMBAD) {
   1339 						/*
   1340 						 * XXX: 8139C+ thinks UDP csum
   1341 						 * 0xFFFF is bad, force software
   1342 						 * calculation.
   1343 						 */
   1344 						if (sc->sc_quirk & RTKQ_8139CPLUS)
   1345 							m->m_pkthdr.csum_flags
   1346 							    &= ~M_CSUM_UDPv4;
   1347 						else
   1348 							m->m_pkthdr.csum_flags
   1349 							    |= M_CSUM_TCP_UDP_BAD;
   1350 					}
   1351 				}
   1352 			}
   1353 		} else {
   1354 			/* Check IPv4 header checksum */
   1355 			if ((rxvlan & RE_RDESC_VLANCTL_IPV4) != 0) {
   1356 				m->m_pkthdr.csum_flags |= M_CSUM_IPv4;
   1357 				if (rxstat & RE_RDESC_STAT_IPSUMBAD)
   1358 					m->m_pkthdr.csum_flags |=
   1359 					    M_CSUM_IPv4_BAD;
   1360 
   1361 				/* Check TCPv4/UDPv4 checksum */
   1362 				if (RE_TCPPKT(rxstat)) {
   1363 					m->m_pkthdr.csum_flags |= M_CSUM_TCPv4;
   1364 					if (rxstat & RE_RDESC_STAT_TCPSUMBAD)
   1365 						m->m_pkthdr.csum_flags |=
   1366 						    M_CSUM_TCP_UDP_BAD;
   1367 				} else if (RE_UDPPKT(rxstat)) {
   1368 					m->m_pkthdr.csum_flags |= M_CSUM_UDPv4;
   1369 					if (rxstat & RE_RDESC_STAT_UDPSUMBAD)
   1370 						m->m_pkthdr.csum_flags |=
   1371 						    M_CSUM_TCP_UDP_BAD;
   1372 				}
   1373 			}
   1374 			/* XXX Check TCPv6/UDPv6 checksum? */
   1375 		}
   1376 
   1377 		if (rxvlan & RE_RDESC_VLANCTL_TAG) {
   1378 			vlan_set_tag(m,
   1379 			     bswap16(rxvlan & RE_RDESC_VLANCTL_DATA));
   1380 		}
   1381 		if_percpuq_enqueue(ifp->if_percpuq, m);
   1382 	}
   1383 
   1384 	sc->re_ldata.re_rx_prodidx = i;
   1385 }
   1386 
   1387 static void
   1388 re_txeof(struct rtk_softc *sc)
   1389 {
   1390 	struct ifnet *ifp;
   1391 	struct re_txq *txq;
   1392 	uint32_t txstat;
   1393 	int idx, descidx;
   1394 
   1395 	ifp = &sc->ethercom.ec_if;
   1396 
   1397 	for (idx = sc->re_ldata.re_txq_considx;
   1398 	    sc->re_ldata.re_txq_free < RE_TX_QLEN;
   1399 	    idx = RE_NEXT_TXQ(sc, idx), sc->re_ldata.re_txq_free++) {
   1400 		txq = &sc->re_ldata.re_txq[idx];
   1401 		KASSERT(txq->txq_mbuf != NULL);
   1402 
   1403 		descidx = txq->txq_descidx;
   1404 		RE_TXDESCSYNC(sc, descidx,
   1405 		    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   1406 		txstat =
   1407 		    le32toh(sc->re_ldata.re_tx_list[descidx].re_cmdstat);
   1408 		RE_TXDESCSYNC(sc, descidx, BUS_DMASYNC_PREREAD);
   1409 		KASSERT((txstat & RE_TDESC_CMD_EOF) != 0);
   1410 		if (txstat & RE_TDESC_CMD_OWN) {
   1411 			break;
   1412 		}
   1413 
   1414 		sc->re_ldata.re_tx_free += txq->txq_nsegs;
   1415 		KASSERT(sc->re_ldata.re_tx_free <= RE_TX_DESC_CNT(sc));
   1416 		bus_dmamap_sync(sc->sc_dmat, txq->txq_dmamap,
   1417 		    0, txq->txq_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1418 		bus_dmamap_unload(sc->sc_dmat, txq->txq_dmamap);
   1419 		m_freem(txq->txq_mbuf);
   1420 		txq->txq_mbuf = NULL;
   1421 
   1422 		net_stat_ref_t nsr = IF_STAT_GETREF(ifp);
   1423 		if (txstat & (RE_TDESC_STAT_EXCESSCOL | RE_TDESC_STAT_COLCNT))
   1424 			if_statinc_ref(nsr, if_collisions);
   1425 		if (txstat & RE_TDESC_STAT_TXERRSUM)
   1426 			if_statinc_ref(nsr, if_oerrors);
   1427 		else
   1428 			if_statinc_ref(nsr, if_opackets);
   1429 		IF_STAT_PUTREF(ifp);
   1430 	}
   1431 
   1432 	sc->re_ldata.re_txq_considx = idx;
   1433 
   1434 	if (sc->re_ldata.re_txq_free > RE_NTXDESC_RSVD)
   1435 		ifp->if_flags &= ~IFF_OACTIVE;
   1436 
   1437 	/*
   1438 	 * If not all descriptors have been released reaped yet,
   1439 	 * reload the timer so that we will eventually get another
   1440 	 * interrupt that will cause us to re-enter this routine.
   1441 	 * This is done in case the transmitter has gone idle.
   1442 	 */
   1443 	if (sc->re_ldata.re_txq_free < RE_TX_QLEN) {
   1444 		if ((sc->sc_quirk & RTKQ_IM_HW) == 0)
   1445 			CSR_WRITE_4(sc, RTK_TIMERCNT, 1);
   1446 		if ((sc->sc_quirk & RTKQ_PCIE) != 0) {
   1447 			/*
   1448 			 * Some chips will ignore a second TX request
   1449 			 * issued while an existing transmission is in
   1450 			 * progress. If the transmitter goes idle but
   1451 			 * there are still packets waiting to be sent,
   1452 			 * we need to restart the channel here to flush
   1453 			 * them out. This only seems to be required with
   1454 			 * the PCIe devices.
   1455 			 */
   1456 			CSR_WRITE_1(sc, RTK_GTXSTART, RTK_TXSTART_START);
   1457 		}
   1458 	} else
   1459 		ifp->if_timer = 0;
   1460 }
   1461 
   1462 static void
   1463 re_tick(void *arg)
   1464 {
   1465 	struct rtk_softc *sc = arg;
   1466 	int s;
   1467 
   1468 	/* XXX: just return for 8169S/8110S with rev 2 or newer phy */
   1469 	s = splnet();
   1470 
   1471 	mii_tick(&sc->mii);
   1472 	splx(s);
   1473 
   1474 	callout_schedule(&sc->rtk_tick_ch, hz);
   1475 }
   1476 
   1477 int
   1478 re_intr(void *arg)
   1479 {
   1480 	struct rtk_softc *sc = arg;
   1481 	struct ifnet *ifp;
   1482 	uint16_t status;
   1483 	int handled = 0;
   1484 
   1485 	if (!device_has_power(sc->sc_dev))
   1486 		return 0;
   1487 
   1488 	ifp = &sc->ethercom.ec_if;
   1489 
   1490 	if ((ifp->if_flags & IFF_UP) == 0)
   1491 		return 0;
   1492 
   1493 	const uint16_t status_mask = (sc->sc_quirk & RTKQ_IM_HW) ?
   1494 	    RTK_INTRS_IM_HW : RTK_INTRS_CPLUS;
   1495 
   1496 	for (;;) {
   1497 
   1498 		status = CSR_READ_2(sc, RTK_ISR);
   1499 		/* If the card has gone away the read returns 0xffff. */
   1500 		if (status == 0xffff)
   1501 			break;
   1502 		if (status) {
   1503 			handled = 1;
   1504 			CSR_WRITE_2(sc, RTK_ISR, status);
   1505 		}
   1506 
   1507 		if ((status & status_mask) == 0)
   1508 			break;
   1509 
   1510 		if (status & (RTK_ISR_RX_OK | RTK_ISR_RX_ERR))
   1511 			re_rxeof(sc);
   1512 
   1513 		if (status & (RTK_ISR_TIMEOUT_EXPIRED | RTK_ISR_TX_ERR |
   1514 		    RTK_ISR_TX_DESC_UNAVAIL | RTK_ISR_TX_OK))
   1515 			re_txeof(sc);
   1516 
   1517 		if (status & RTK_ISR_SYSTEM_ERR) {
   1518 			re_init(ifp);
   1519 		}
   1520 
   1521 		if (status & RTK_ISR_LINKCHG) {
   1522 			callout_stop(&sc->rtk_tick_ch);
   1523 			re_tick(sc);
   1524 		}
   1525 	}
   1526 
   1527 	if (handled)
   1528 		if_schedule_deferred_start(ifp);
   1529 
   1530 	rnd_add_uint32(&sc->rnd_source, status);
   1531 
   1532 	return handled;
   1533 }
   1534 
   1535 
   1536 
   1537 /*
   1538  * Main transmit routine for C+ and gigE NICs.
   1539  */
   1540 
   1541 static void
   1542 re_start(struct ifnet *ifp)
   1543 {
   1544 	struct rtk_softc *sc;
   1545 	struct mbuf *m;
   1546 	bus_dmamap_t map;
   1547 	struct re_txq *txq;
   1548 	struct re_desc *d;
   1549 	uint32_t cmdstat, re_flags, vlanctl;
   1550 	int ofree, idx, error, nsegs, seg;
   1551 	int startdesc, curdesc, lastdesc;
   1552 	bool pad;
   1553 
   1554 	sc = ifp->if_softc;
   1555 	ofree = sc->re_ldata.re_txq_free;
   1556 
   1557 	for (idx = sc->re_ldata.re_txq_prodidx;; idx = RE_NEXT_TXQ(sc, idx)) {
   1558 
   1559 		IFQ_POLL(&ifp->if_snd, m);
   1560 		if (m == NULL)
   1561 			break;
   1562 
   1563 		if (sc->re_ldata.re_txq_free == 0 ||
   1564 		    sc->re_ldata.re_tx_free == 0) {
   1565 			/* no more free slots left */
   1566 			ifp->if_flags |= IFF_OACTIVE;
   1567 			break;
   1568 		}
   1569 
   1570 		/*
   1571 		 * Set up checksum offload. Note: checksum offload bits must
   1572 		 * appear in all descriptors of a multi-descriptor transmit
   1573 		 * attempt. (This is according to testing done with an 8169
   1574 		 * chip. I'm not sure if this is a requirement or a bug.)
   1575 		 */
   1576 
   1577 		vlanctl = 0;
   1578 		if ((m->m_pkthdr.csum_flags & M_CSUM_TSOv4) != 0) {
   1579 			uint32_t segsz = m->m_pkthdr.segsz;
   1580 
   1581 			if ((sc->sc_quirk & RTKQ_DESCV2) == 0) {
   1582 				re_flags = RE_TDESC_CMD_LGSEND |
   1583 				    (segsz << RE_TDESC_CMD_MSSVAL_SHIFT);
   1584 			} else {
   1585 				re_flags = RE_TDESC_CMD_LGSEND_V4;
   1586 				vlanctl |=
   1587 				    (segsz << RE_TDESC_VLANCTL_MSSVAL_SHIFT);
   1588 			}
   1589 		} else {
   1590 			/*
   1591 			 * set RE_TDESC_CMD_IPCSUM if any checksum offloading
   1592 			 * is requested.  otherwise, RE_TDESC_CMD_TCPCSUM/
   1593 			 * RE_TDESC_CMD_UDPCSUM doesn't make effects.
   1594 			 */
   1595 			re_flags = 0;
   1596 			if ((m->m_pkthdr.csum_flags &
   1597 			    (M_CSUM_IPv4 | M_CSUM_TCPv4 | M_CSUM_UDPv4))
   1598 			    != 0) {
   1599 				if ((sc->sc_quirk & RTKQ_DESCV2) == 0) {
   1600 					re_flags |= RE_TDESC_CMD_IPCSUM;
   1601 					if (m->m_pkthdr.csum_flags &
   1602 					    M_CSUM_TCPv4) {
   1603 						re_flags |=
   1604 						    RE_TDESC_CMD_TCPCSUM;
   1605 					} else if (m->m_pkthdr.csum_flags &
   1606 					    M_CSUM_UDPv4) {
   1607 						re_flags |=
   1608 						    RE_TDESC_CMD_UDPCSUM;
   1609 					}
   1610 				} else {
   1611 					vlanctl |= RE_TDESC_VLANCTL_IPCSUM;
   1612 					if (m->m_pkthdr.csum_flags &
   1613 					    M_CSUM_TCPv4) {
   1614 						vlanctl |=
   1615 						    RE_TDESC_VLANCTL_TCPCSUM;
   1616 					} else if (m->m_pkthdr.csum_flags &
   1617 					    M_CSUM_UDPv4) {
   1618 						vlanctl |=
   1619 						    RE_TDESC_VLANCTL_UDPCSUM;
   1620 					}
   1621 				}
   1622 			}
   1623 		}
   1624 
   1625 		txq = &sc->re_ldata.re_txq[idx];
   1626 		map = txq->txq_dmamap;
   1627 		error = bus_dmamap_load_mbuf(sc->sc_dmat, map, m,
   1628 		    BUS_DMA_WRITE|BUS_DMA_NOWAIT);
   1629 
   1630 		if (__predict_false(error)) {
   1631 			/* XXX try to defrag if EFBIG? */
   1632 			printf("%s: can't map mbuf (error %d)\n",
   1633 			    device_xname(sc->sc_dev), error);
   1634 
   1635 			IFQ_DEQUEUE(&ifp->if_snd, m);
   1636 			m_freem(m);
   1637 			if_statinc(ifp, if_oerrors);
   1638 			continue;
   1639 		}
   1640 
   1641 		nsegs = map->dm_nsegs;
   1642 		pad = false;
   1643 		if (__predict_false(m->m_pkthdr.len <= RE_IP4CSUMTX_PADLEN &&
   1644 		    (re_flags & RE_TDESC_CMD_IPCSUM) != 0 &&
   1645 		    (sc->sc_quirk & RTKQ_DESCV2) == 0)) {
   1646 			pad = true;
   1647 			nsegs++;
   1648 		}
   1649 
   1650 		if (nsegs > sc->re_ldata.re_tx_free) {
   1651 			/*
   1652 			 * Not enough free descriptors to transmit this packet.
   1653 			 */
   1654 			ifp->if_flags |= IFF_OACTIVE;
   1655 			bus_dmamap_unload(sc->sc_dmat, map);
   1656 			break;
   1657 		}
   1658 
   1659 		IFQ_DEQUEUE(&ifp->if_snd, m);
   1660 
   1661 		/*
   1662 		 * Make sure that the caches are synchronized before we
   1663 		 * ask the chip to start DMA for the packet data.
   1664 		 */
   1665 		bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
   1666 		    BUS_DMASYNC_PREWRITE);
   1667 
   1668 		/*
   1669 		 * Set up hardware VLAN tagging. Note: vlan tag info must
   1670 		 * appear in all descriptors of a multi-descriptor
   1671 		 * transmission attempt.
   1672 		 */
   1673 		if (vlan_has_tag(m))
   1674 			vlanctl |= bswap16(vlan_get_tag(m)) |
   1675 			    RE_TDESC_VLANCTL_TAG;
   1676 
   1677 		/*
   1678 		 * Map the segment array into descriptors.
   1679 		 * Note that we set the start-of-frame and
   1680 		 * end-of-frame markers for either TX or RX,
   1681 		 * but they really only have meaning in the TX case.
   1682 		 * (In the RX case, it's the chip that tells us
   1683 		 *  where packets begin and end.)
   1684 		 * We also keep track of the end of the ring
   1685 		 * and set the end-of-ring bits as needed,
   1686 		 * and we set the ownership bits in all except
   1687 		 * the very first descriptor. (The caller will
   1688 		 * set this descriptor later when it start
   1689 		 * transmission or reception.)
   1690 		 */
   1691 		curdesc = startdesc = sc->re_ldata.re_tx_nextfree;
   1692 		lastdesc = -1;
   1693 		for (seg = 0; seg < map->dm_nsegs;
   1694 		    seg++, curdesc = RE_NEXT_TX_DESC(sc, curdesc)) {
   1695 			d = &sc->re_ldata.re_tx_list[curdesc];
   1696 #ifdef DIAGNOSTIC
   1697 			RE_TXDESCSYNC(sc, curdesc,
   1698 			    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   1699 			cmdstat = le32toh(d->re_cmdstat);
   1700 			RE_TXDESCSYNC(sc, curdesc, BUS_DMASYNC_PREREAD);
   1701 			if (cmdstat & RE_TDESC_STAT_OWN) {
   1702 				panic("%s: tried to map busy TX descriptor",
   1703 				    device_xname(sc->sc_dev));
   1704 			}
   1705 #endif
   1706 
   1707 			d->re_vlanctl = htole32(vlanctl);
   1708 			re_set_bufaddr(d, map->dm_segs[seg].ds_addr);
   1709 			cmdstat = re_flags | map->dm_segs[seg].ds_len;
   1710 			if (seg == 0)
   1711 				cmdstat |= RE_TDESC_CMD_SOF;
   1712 			else
   1713 				cmdstat |= RE_TDESC_CMD_OWN;
   1714 			if (curdesc == (RE_TX_DESC_CNT(sc) - 1))
   1715 				cmdstat |= RE_TDESC_CMD_EOR;
   1716 			if (seg == nsegs - 1) {
   1717 				cmdstat |= RE_TDESC_CMD_EOF;
   1718 				lastdesc = curdesc;
   1719 			}
   1720 			d->re_cmdstat = htole32(cmdstat);
   1721 			RE_TXDESCSYNC(sc, curdesc,
   1722 			    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1723 		}
   1724 		if (__predict_false(pad)) {
   1725 			d = &sc->re_ldata.re_tx_list[curdesc];
   1726 			d->re_vlanctl = htole32(vlanctl);
   1727 			re_set_bufaddr(d, RE_TXPADDADDR(sc));
   1728 			cmdstat = re_flags |
   1729 			    RE_TDESC_CMD_OWN | RE_TDESC_CMD_EOF |
   1730 			    (RE_IP4CSUMTX_PADLEN + 1 - m->m_pkthdr.len);
   1731 			if (curdesc == (RE_TX_DESC_CNT(sc) - 1))
   1732 				cmdstat |= RE_TDESC_CMD_EOR;
   1733 			d->re_cmdstat = htole32(cmdstat);
   1734 			RE_TXDESCSYNC(sc, curdesc,
   1735 			    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1736 			lastdesc = curdesc;
   1737 			curdesc = RE_NEXT_TX_DESC(sc, curdesc);
   1738 		}
   1739 		KASSERT(lastdesc != -1);
   1740 
   1741 		/* Transfer ownership of packet to the chip. */
   1742 
   1743 		sc->re_ldata.re_tx_list[startdesc].re_cmdstat |=
   1744 		    htole32(RE_TDESC_CMD_OWN);
   1745 		RE_TXDESCSYNC(sc, startdesc,
   1746 		    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1747 
   1748 		/* update info of TX queue and descriptors */
   1749 		txq->txq_mbuf = m;
   1750 		txq->txq_descidx = lastdesc;
   1751 		txq->txq_nsegs = nsegs;
   1752 
   1753 		sc->re_ldata.re_txq_free--;
   1754 		sc->re_ldata.re_tx_free -= nsegs;
   1755 		sc->re_ldata.re_tx_nextfree = curdesc;
   1756 
   1757 		/*
   1758 		 * If there's a BPF listener, bounce a copy of this frame
   1759 		 * to him.
   1760 		 */
   1761 		bpf_mtap(ifp, m, BPF_D_OUT);
   1762 	}
   1763 
   1764 	if (sc->re_ldata.re_txq_free < ofree) {
   1765 		/*
   1766 		 * TX packets are enqueued.
   1767 		 */
   1768 		sc->re_ldata.re_txq_prodidx = idx;
   1769 
   1770 		/*
   1771 		 * Start the transmitter to poll.
   1772 		 *
   1773 		 * RealTek put the TX poll request register in a different
   1774 		 * location on the 8169 gigE chip. I don't know why.
   1775 		 */
   1776 		if ((sc->sc_quirk & RTKQ_8139CPLUS) != 0)
   1777 			CSR_WRITE_1(sc, RTK_TXSTART, RTK_TXSTART_START);
   1778 		else
   1779 			CSR_WRITE_1(sc, RTK_GTXSTART, RTK_TXSTART_START);
   1780 
   1781 		if ((sc->sc_quirk & RTKQ_IM_HW) == 0) {
   1782 			/*
   1783 			 * Use the countdown timer for interrupt moderation.
   1784 			 * 'TX done' interrupts are disabled. Instead, we reset
   1785 			 * the countdown timer, which will begin counting until
   1786 			 * it hits the value in the TIMERINT register, and then
   1787 			 * trigger an interrupt. Each time we write to the
   1788 			 * TIMERCNT register, the timer count is reset to 0.
   1789 			 */
   1790 			CSR_WRITE_4(sc, RTK_TIMERCNT, 1);
   1791 		}
   1792 
   1793 		/*
   1794 		 * Set a timeout in case the chip goes out to lunch.
   1795 		 */
   1796 		ifp->if_timer = 5;
   1797 	}
   1798 }
   1799 
   1800 static int
   1801 re_init(struct ifnet *ifp)
   1802 {
   1803 	struct rtk_softc *sc = ifp->if_softc;
   1804 	uint32_t rxcfg = 0;
   1805 	uint16_t cfg;
   1806 	int error;
   1807 #ifdef RE_USE_EECMD
   1808 	const uint8_t *enaddr;
   1809 	uint32_t reg;
   1810 #endif
   1811 
   1812 	if ((error = re_enable(sc)) != 0)
   1813 		goto out;
   1814 
   1815 	/*
   1816 	 * Cancel pending I/O and free all RX/TX buffers.
   1817 	 */
   1818 	re_stop(ifp, 0);
   1819 
   1820 	re_reset(sc);
   1821 
   1822 	/*
   1823 	 * Enable C+ RX and TX mode, as well as VLAN stripping and
   1824 	 * RX checksum offload. We must configure the C+ register
   1825 	 * before all others.
   1826 	 */
   1827 	cfg = RE_CPLUSCMD_PCI_MRW;
   1828 
   1829 	/*
   1830 	 * XXX: For old 8169 set bit 14.
   1831 	 *      For 8169S/8110S and above, do not set bit 14.
   1832 	 */
   1833 	if ((sc->sc_quirk & RTKQ_8169NONS) != 0)
   1834 		cfg |= (0x1 << 14);
   1835 
   1836 	if ((sc->ethercom.ec_capenable & ETHERCAP_VLAN_HWTAGGING) != 0)
   1837 		cfg |= RE_CPLUSCMD_VLANSTRIP;
   1838 	if ((ifp->if_capenable & (IFCAP_CSUM_IPv4_Rx |
   1839 	     IFCAP_CSUM_TCPv4_Rx | IFCAP_CSUM_UDPv4_Rx)) != 0)
   1840 		cfg |= RE_CPLUSCMD_RXCSUM_ENB;
   1841 	if ((sc->sc_quirk & RTKQ_MACSTAT) != 0) {
   1842 		cfg |= RE_CPLUSCMD_MACSTAT_DIS;
   1843 		cfg |= RE_CPLUSCMD_TXENB;
   1844 	} else
   1845 		cfg |= RE_CPLUSCMD_RXENB | RE_CPLUSCMD_TXENB;
   1846 
   1847 	CSR_WRITE_2(sc, RTK_CPLUS_CMD, cfg);
   1848 
   1849 	/* XXX: from Realtek-supplied Linux driver. Wholly undocumented. */
   1850 	if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0) {
   1851 		if ((sc->sc_quirk & RTKQ_IM_HW) == 0) {
   1852 			CSR_WRITE_2(sc, RTK_IM, 0x0000);
   1853 		} else {
   1854 			CSR_WRITE_2(sc, RTK_IM, 0x5151);
   1855 		}
   1856 	}
   1857 
   1858 	DELAY(10000);
   1859 
   1860 #ifdef RE_USE_EECMD
   1861 	/*
   1862 	 * Init our MAC address.  Even though the chipset
   1863 	 * documentation doesn't mention it, we need to enter "Config
   1864 	 * register write enable" mode to modify the ID registers.
   1865 	 */
   1866 	CSR_WRITE_1(sc, RTK_EECMD, RTK_EEMODE_WRITECFG);
   1867 	enaddr = CLLADDR(ifp->if_sadl);
   1868 	reg = enaddr[0] | (enaddr[1] << 8) |
   1869 	    (enaddr[2] << 16) | (enaddr[3] << 24);
   1870 	CSR_WRITE_4(sc, RTK_IDR0, reg);
   1871 	reg = enaddr[4] | (enaddr[5] << 8);
   1872 	CSR_WRITE_4(sc, RTK_IDR4, reg);
   1873 	CSR_WRITE_1(sc, RTK_EECMD, RTK_EEMODE_OFF);
   1874 #endif
   1875 
   1876 	/*
   1877 	 * For C+ mode, initialize the RX descriptors and mbufs.
   1878 	 */
   1879 	re_rx_list_init(sc);
   1880 	re_tx_list_init(sc);
   1881 
   1882 	/*
   1883 	 * Load the addresses of the RX and TX lists into the chip.
   1884 	 */
   1885 	CSR_WRITE_4(sc, RTK_RXLIST_ADDR_HI,
   1886 	    RE_ADDR_HI(sc->re_ldata.re_rx_list_map->dm_segs[0].ds_addr));
   1887 	CSR_WRITE_4(sc, RTK_RXLIST_ADDR_LO,
   1888 	    RE_ADDR_LO(sc->re_ldata.re_rx_list_map->dm_segs[0].ds_addr));
   1889 
   1890 	CSR_WRITE_4(sc, RTK_TXLIST_ADDR_HI,
   1891 	    RE_ADDR_HI(sc->re_ldata.re_tx_list_map->dm_segs[0].ds_addr));
   1892 	CSR_WRITE_4(sc, RTK_TXLIST_ADDR_LO,
   1893 	    RE_ADDR_LO(sc->re_ldata.re_tx_list_map->dm_segs[0].ds_addr));
   1894 
   1895 	if (sc->sc_quirk & RTKQ_RXDV_GATED) {
   1896 		CSR_WRITE_4(sc, RTK_MISC,
   1897 		    CSR_READ_4(sc, RTK_MISC) & ~RTK_MISC_RXDV_GATED_EN);
   1898 	}
   1899 
   1900 	/*
   1901 	 * Enable transmit and receive.
   1902 	 */
   1903 	if ((sc->sc_quirk & RTKQ_TXRXEN_LATER) == 0)
   1904 		CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_TX_ENB | RTK_CMD_RX_ENB);
   1905 
   1906 	/*
   1907 	 * Set the initial TX and RX configuration.
   1908 	 */
   1909 	if (sc->re_testmode && (sc->sc_quirk & RTKQ_8169NONS) != 0) {
   1910 		/* test mode is needed only for old 8169 */
   1911 		CSR_WRITE_4(sc, RTK_TXCFG,
   1912 		    RE_TXCFG_CONFIG | RTK_LOOPTEST_ON);
   1913 	} else
   1914 		CSR_WRITE_4(sc, RTK_TXCFG, RE_TXCFG_CONFIG);
   1915 
   1916 	CSR_WRITE_1(sc, RTK_EARLY_TX_THRESH, 16);
   1917 
   1918 	CSR_WRITE_4(sc, RTK_RXCFG, RE_RXCFG_CONFIG);
   1919 
   1920 	/* Set the individual bit to receive frames for this host only. */
   1921 	rxcfg = CSR_READ_4(sc, RTK_RXCFG);
   1922 	rxcfg |= RTK_RXCFG_RX_INDIV;
   1923 
   1924 	/* If we want promiscuous mode, set the allframes bit. */
   1925 	if (ifp->if_flags & IFF_PROMISC)
   1926 		rxcfg |= RTK_RXCFG_RX_ALLPHYS;
   1927 	else
   1928 		rxcfg &= ~RTK_RXCFG_RX_ALLPHYS;
   1929 	CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1930 
   1931 	/*
   1932 	 * Set capture broadcast bit to capture broadcast frames.
   1933 	 */
   1934 	if (ifp->if_flags & IFF_BROADCAST)
   1935 		rxcfg |= RTK_RXCFG_RX_BROAD;
   1936 	else
   1937 		rxcfg &= ~RTK_RXCFG_RX_BROAD;
   1938 	CSR_WRITE_4(sc, RTK_RXCFG, rxcfg);
   1939 
   1940 	/*
   1941 	 * Program the multicast filter, if necessary.
   1942 	 */
   1943 	rtk_setmulti(sc);
   1944 
   1945 	/*
   1946 	 * some chips require to enable TX/RX *AFTER* TX/RX configuration
   1947 	 */
   1948 	if ((sc->sc_quirk & RTKQ_TXRXEN_LATER) != 0)
   1949 		CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_TX_ENB | RTK_CMD_RX_ENB);
   1950 
   1951 	/*
   1952 	 * Enable interrupts.
   1953 	 */
   1954 	if (sc->re_testmode)
   1955 		CSR_WRITE_2(sc, RTK_IMR, 0);
   1956 	else if ((sc->sc_quirk & RTKQ_IM_HW) != 0)
   1957 		CSR_WRITE_2(sc, RTK_IMR, RTK_INTRS_IM_HW);
   1958 	else
   1959 		CSR_WRITE_2(sc, RTK_IMR, RTK_INTRS_CPLUS);
   1960 
   1961 	/* Start RX/TX process. */
   1962 	CSR_WRITE_4(sc, RTK_MISSEDPKT, 0);
   1963 #ifdef notdef
   1964 	/* Enable receiver and transmitter. */
   1965 	CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_TX_ENB | RTK_CMD_RX_ENB);
   1966 #endif
   1967 
   1968 	/*
   1969 	 * Initialize the timer interrupt register so that
   1970 	 * a timer interrupt will be generated once the timer
   1971 	 * reaches a certain number of ticks. The timer is
   1972 	 * reloaded on each transmit. This gives us TX interrupt
   1973 	 * moderation, which dramatically improves TX frame rate.
   1974 	 */
   1975 
   1976 	unsigned defer;		/* timer interval / ns */
   1977 	unsigned period;	/* busclock period / ns */
   1978 
   1979 	/*
   1980 	 * Maximum frame rate
   1981 	 * 1500 byte PDU -> 81274 Hz
   1982 	 *   46 byte PDU -> 1488096 Hz
   1983 	 *
   1984 	 * Deferring interrupts by up to 128us needs descriptors for
   1985 	 * 1500 byte PDU -> 10.4 frames
   1986 	 *   46 byte PDU -> 190.4 frames
   1987 	 *
   1988 	 */
   1989 	defer = 128000;
   1990 
   1991 	if ((sc->sc_quirk & RTKQ_IM_HW) != 0) {
   1992 		period = 1;
   1993 		defer = 0;
   1994 	} else if ((sc->sc_quirk & RTKQ_PCIE) != 0) {
   1995 		period = 8;
   1996 	} else {
   1997 		switch (CSR_READ_1(sc, RTK_CFG2_BUSFREQ) & 0x7) {
   1998 		case RTK_BUSFREQ_33MHZ:
   1999 			period = 30;
   2000 			break;
   2001 		case RTK_BUSFREQ_66MHZ:
   2002 			period = 15;
   2003 			break;
   2004 		default:
   2005 			/* lowest possible clock */
   2006 			period = 60;
   2007 			break;
   2008 		}
   2009 	}
   2010 
   2011 	/* Timer Interrupt register address varies */
   2012 	uint16_t re8139_reg;
   2013 	if ((sc->sc_quirk & RTKQ_8139CPLUS) != 0)
   2014 		re8139_reg = RTK_TIMERINT;
   2015 	else
   2016 		re8139_reg = RTK_TIMERINT_8169;
   2017 	CSR_WRITE_4(sc, re8139_reg, defer / period);
   2018 
   2019 	if ((sc->sc_quirk & RTKQ_8139CPLUS) == 0) {
   2020 		/*
   2021 		 * For 8169 gigE NICs, set the max allowed RX packet
   2022 		 * size so we can receive jumbo frames.
   2023 		 */
   2024 		CSR_WRITE_2(sc, RTK_MAXRXPKTLEN, 16383);
   2025 	}
   2026 
   2027 	if (sc->re_testmode)
   2028 		return 0;
   2029 
   2030 	CSR_WRITE_1(sc, RTK_CFG1, RTK_CFG1_DRVLOAD);
   2031 
   2032 	ifp->if_flags |= IFF_RUNNING;
   2033 	ifp->if_flags &= ~IFF_OACTIVE;
   2034 
   2035 	callout_schedule(&sc->rtk_tick_ch, hz);
   2036 
   2037  out:
   2038 	if (error) {
   2039 		ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   2040 		ifp->if_timer = 0;
   2041 		printf("%s: interface not running\n",
   2042 		    device_xname(sc->sc_dev));
   2043 	}
   2044 
   2045 	return error;
   2046 }
   2047 
   2048 static int
   2049 re_ioctl(struct ifnet *ifp, u_long command, void *data)
   2050 {
   2051 	struct rtk_softc *sc = ifp->if_softc;
   2052 	struct ifreq *ifr = data;
   2053 	int s, error = 0;
   2054 
   2055 	s = splnet();
   2056 
   2057 	switch (command) {
   2058 	case SIOCSIFMTU:
   2059 		/*
   2060 		 * Disable jumbo frames if it's not supported.
   2061 		 */
   2062 		if ((sc->sc_quirk & RTKQ_NOJUMBO) != 0 &&
   2063 		    ifr->ifr_mtu > ETHERMTU) {
   2064 			error = EINVAL;
   2065 			break;
   2066 		}
   2067 
   2068 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU_JUMBO)
   2069 			error = EINVAL;
   2070 		else if ((error = ifioctl_common(ifp, command, data)) ==
   2071 		    ENETRESET)
   2072 			error = 0;
   2073 		break;
   2074 	default:
   2075 		if ((error = ether_ioctl(ifp, command, data)) != ENETRESET)
   2076 			break;
   2077 
   2078 		error = 0;
   2079 
   2080 		if (command == SIOCSIFCAP)
   2081 			error = (*ifp->if_init)(ifp);
   2082 		else if (command != SIOCADDMULTI && command != SIOCDELMULTI)
   2083 			;
   2084 		else if (ifp->if_flags & IFF_RUNNING)
   2085 			rtk_setmulti(sc);
   2086 		break;
   2087 	}
   2088 
   2089 	splx(s);
   2090 
   2091 	return error;
   2092 }
   2093 
   2094 static void
   2095 re_watchdog(struct ifnet *ifp)
   2096 {
   2097 	struct rtk_softc *sc;
   2098 	int s;
   2099 
   2100 	sc = ifp->if_softc;
   2101 	s = splnet();
   2102 	printf("%s: watchdog timeout\n", device_xname(sc->sc_dev));
   2103 	if_statinc(ifp, if_oerrors);
   2104 
   2105 	re_txeof(sc);
   2106 	re_rxeof(sc);
   2107 
   2108 	re_init(ifp);
   2109 
   2110 	splx(s);
   2111 }
   2112 
   2113 /*
   2114  * Stop the adapter and free any mbufs allocated to the
   2115  * RX and TX lists.
   2116  */
   2117 static void
   2118 re_stop(struct ifnet *ifp, int disable)
   2119 {
   2120 	int i;
   2121 	struct rtk_softc *sc = ifp->if_softc;
   2122 
   2123 	callout_stop(&sc->rtk_tick_ch);
   2124 
   2125 	mii_down(&sc->mii);
   2126 
   2127 	if ((sc->sc_quirk & RTKQ_CMDSTOP) != 0)
   2128 		CSR_WRITE_1(sc, RTK_COMMAND, RTK_CMD_STOPREQ | RTK_CMD_TX_ENB |
   2129 		    RTK_CMD_RX_ENB);
   2130 	else
   2131 		CSR_WRITE_1(sc, RTK_COMMAND, 0x00);
   2132 	DELAY(1000);
   2133 	CSR_WRITE_2(sc, RTK_IMR, 0x0000);
   2134 	CSR_WRITE_2(sc, RTK_ISR, 0xFFFF);
   2135 
   2136 	if (sc->re_head != NULL) {
   2137 		m_freem(sc->re_head);
   2138 		sc->re_head = sc->re_tail = NULL;
   2139 	}
   2140 
   2141 	/* Free the TX list buffers. */
   2142 	for (i = 0; i < RE_TX_QLEN; i++) {
   2143 		if (sc->re_ldata.re_txq[i].txq_mbuf != NULL) {
   2144 			bus_dmamap_unload(sc->sc_dmat,
   2145 			    sc->re_ldata.re_txq[i].txq_dmamap);
   2146 			m_freem(sc->re_ldata.re_txq[i].txq_mbuf);
   2147 			sc->re_ldata.re_txq[i].txq_mbuf = NULL;
   2148 		}
   2149 	}
   2150 
   2151 	/* Free the RX list buffers. */
   2152 	for (i = 0; i < RE_RX_DESC_CNT; i++) {
   2153 		if (sc->re_ldata.re_rxsoft[i].rxs_mbuf != NULL) {
   2154 			bus_dmamap_unload(sc->sc_dmat,
   2155 			    sc->re_ldata.re_rxsoft[i].rxs_dmamap);
   2156 			m_freem(sc->re_ldata.re_rxsoft[i].rxs_mbuf);
   2157 			sc->re_ldata.re_rxsoft[i].rxs_mbuf = NULL;
   2158 		}
   2159 	}
   2160 
   2161 	if (disable)
   2162 		re_disable(sc);
   2163 
   2164 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   2165 	ifp->if_timer = 0;
   2166 }
   2167