The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/pci/if_rl.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1997, 1998
    3  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  * 3. All advertising materials mentioning features or use of this software
   14  *    must display the following acknowledgement:
   15  *      This product includes software developed by Bill Paul.
   16  * 4. Neither the name of the author nor the names of any co-contributors
   17  *    may be used to endorse or promote products derived from this software
   18  *    without specific prior written permission.
   19  *
   20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
   21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
   24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
   30  * THE POSSIBILITY OF SUCH DAMAGE.
   31  */
   32 
   33 #include <sys/cdefs.h>
   34 __FBSDID("$FreeBSD$");
   35 
   36 /*
   37  * RealTek 8129/8139 PCI NIC driver
   38  *
   39  * Supports several extremely cheap PCI 10/100 adapters based on
   40  * the RealTek chipset. Datasheets can be obtained from
   41  * www.realtek.com.tw.
   42  *
   43  * Written by Bill Paul <wpaul@ctr.columbia.edu>
   44  * Electrical Engineering Department
   45  * Columbia University, New York City
   46  */
   47 /*
   48  * The RealTek 8139 PCI NIC redefines the meaning of 'low end.' This is
   49  * probably the worst PCI ethernet controller ever made, with the possible
   50  * exception of the FEAST chip made by SMC. The 8139 supports bus-master
   51  * DMA, but it has a terrible interface that nullifies any performance
   52  * gains that bus-master DMA usually offers.
   53  *
   54  * For transmission, the chip offers a series of four TX descriptor
   55  * registers. Each transmit frame must be in a contiguous buffer, aligned
   56  * on a longword (32-bit) boundary. This means we almost always have to
   57  * do mbuf copies in order to transmit a frame, except in the unlikely
   58  * case where a) the packet fits into a single mbuf, and b) the packet
   59  * is 32-bit aligned within the mbuf's data area. The presence of only
   60  * four descriptor registers means that we can never have more than four
   61  * packets queued for transmission at any one time.
   62  *
   63  * Reception is not much better. The driver has to allocate a single large
   64  * buffer area (up to 64K in size) into which the chip will DMA received
   65  * frames. Because we don't know where within this region received packets
   66  * will begin or end, we have no choice but to copy data from the buffer
   67  * area into mbufs in order to pass the packets up to the higher protocol
   68  * levels.
   69  *
   70  * It's impossible given this rotten design to really achieve decent
   71  * performance at 100Mbps, unless you happen to have a 400Mhz PII or
   72  * some equally overmuscled CPU to drive it.
   73  *
   74  * On the bright side, the 8139 does have a built-in PHY, although
   75  * rather than using an MDIO serial interface like most other NICs, the
   76  * PHY registers are directly accessible through the 8139's register
   77  * space. The 8139 supports autonegotiation, as well as a 64-bit multicast
   78  * filter.
   79  *
   80  * The 8129 chip is an older version of the 8139 that uses an external PHY
   81  * chip. The 8129 has a serial MDIO interface for accessing the MII where
   82  * the 8139 lets you directly access the on-board PHY registers. We need
   83  * to select which interface to use depending on the chip type.
   84  */
   85 
   86 #ifdef HAVE_KERNEL_OPTION_HEADERS
   87 #include "opt_device_polling.h"
   88 #endif
   89 
   90 #include <sys/param.h>
   91 #include <sys/endian.h>
   92 #include <sys/systm.h>
   93 #include <sys/sockio.h>
   94 #include <sys/mbuf.h>
   95 #include <sys/malloc.h>
   96 #include <sys/kernel.h>
   97 #include <sys/module.h>
   98 #include <sys/socket.h>
   99 
  100 #include <net/if.h>
  101 #include <net/if_arp.h>
  102 #include <net/ethernet.h>
  103 #include <net/if_dl.h>
  104 #include <net/if_media.h>
  105 #include <net/if_types.h>
  106 
  107 #include <net/bpf.h>
  108 
  109 #include <machine/bus.h>
  110 #include <machine/resource.h>
  111 #include <sys/bus.h>
  112 #include <sys/rman.h>
  113 
  114 #include <dev/mii/mii.h>
  115 #include <dev/mii/miivar.h>
  116 
  117 #include <dev/pci/pcireg.h>
  118 #include <dev/pci/pcivar.h>
  119 
  120 MODULE_DEPEND(rl, pci, 1, 1, 1);
  121 MODULE_DEPEND(rl, ether, 1, 1, 1);
  122 MODULE_DEPEND(rl, miibus, 1, 1, 1);
  123 
  124 /* "device miibus" required.  See GENERIC if you get errors here. */
  125 #include "miibus_if.h"
  126 
  127 /*
  128  * Default to using PIO access for this driver. On SMP systems,
  129  * there appear to be problems with memory mapped mode: it looks like
  130  * doing too many memory mapped access back to back in rapid succession
  131  * can hang the bus. I'm inclined to blame this on crummy design/construction
  132  * on the part of RealTek. Memory mapped mode does appear to work on
  133  * uniprocessor systems though.
  134  */
  135 #define RL_USEIOSPACE
  136 
  137 #include <pci/if_rlreg.h>
  138 
  139 /*
  140  * Various supported device vendors/types and their names.
  141  */
  142 static struct rl_type rl_devs[] = {
  143         { RT_VENDORID, RT_DEVICEID_8129, RL_8129,
  144                 "RealTek 8129 10/100BaseTX" },
  145         { RT_VENDORID, RT_DEVICEID_8139, RL_8139,
  146                 "RealTek 8139 10/100BaseTX" },
  147         { RT_VENDORID, RT_DEVICEID_8139D, RL_8139,
  148                 "RealTek 8139 10/100BaseTX" },
  149         { RT_VENDORID, RT_DEVICEID_8138, RL_8139,
  150                 "RealTek 8139 10/100BaseTX CardBus" },
  151         { RT_VENDORID, RT_DEVICEID_8100, RL_8139,
  152                 "RealTek 8100 10/100BaseTX" },
  153         { ACCTON_VENDORID, ACCTON_DEVICEID_5030, RL_8139,
  154                 "Accton MPX 5030/5038 10/100BaseTX" },
  155         { DELTA_VENDORID, DELTA_DEVICEID_8139, RL_8139,
  156                 "Delta Electronics 8139 10/100BaseTX" },
  157         { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139, RL_8139,
  158                 "Addtron Technolgy 8139 10/100BaseTX" },
  159         { DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS, RL_8139,
  160                 "D-Link DFE-530TX+ 10/100BaseTX" },
  161         { DLINK_VENDORID, DLINK_DEVICEID_690TXD, RL_8139,
  162                 "D-Link DFE-690TXD 10/100BaseTX" },
  163         { NORTEL_VENDORID, ACCTON_DEVICEID_5030, RL_8139,
  164                 "Nortel Networks 10/100BaseTX" },
  165         { COREGA_VENDORID, COREGA_DEVICEID_FETHERCBTXD, RL_8139,
  166                 "Corega FEther CB-TXD" },
  167         { COREGA_VENDORID, COREGA_DEVICEID_FETHERIICBTXD, RL_8139,
  168                 "Corega FEtherII CB-TXD" },
  169         { PEPPERCON_VENDORID, PEPPERCON_DEVICEID_ROLF, RL_8139,
  170                 "Peppercon AG ROL-F" },
  171         { PLANEX_VENDORID, PLANEX_DEVICEID_FNW3603TX, RL_8139,
  172                 "Planex FNW-3603-TX" },
  173         { PLANEX_VENDORID, PLANEX_DEVICEID_FNW3800TX, RL_8139,
  174                 "Planex FNW-3800-TX" },
  175         { CP_VENDORID, RT_DEVICEID_8139, RL_8139,
  176                 "Compaq HNE-300" },
  177         { LEVEL1_VENDORID, LEVEL1_DEVICEID_FPC0106TX, RL_8139,
  178                 "LevelOne FPC-0106TX" },
  179         { EDIMAX_VENDORID, EDIMAX_DEVICEID_EP4103DL, RL_8139,
  180                 "Edimax EP-4103DL CardBus" }
  181 };
  182 
  183 static int rl_attach(device_t);
  184 static int rl_detach(device_t);
  185 static void rl_dma_map_rxbuf(void *, bus_dma_segment_t *, int, int);
  186 static void rl_dma_map_txbuf(void *, bus_dma_segment_t *, int, int);
  187 static void rl_eeprom_putbyte(struct rl_softc *, int);
  188 static void rl_eeprom_getword(struct rl_softc *, int, uint16_t *);
  189 static int rl_encap(struct rl_softc *, struct mbuf * );
  190 static int rl_list_tx_init(struct rl_softc *);
  191 static int rl_ifmedia_upd(struct ifnet *);
  192 static void rl_ifmedia_sts(struct ifnet *, struct ifmediareq *);
  193 static int rl_ioctl(struct ifnet *, u_long, caddr_t);
  194 static void rl_intr(void *);
  195 static void rl_init(void *);
  196 static void rl_init_locked(struct rl_softc *sc);
  197 static void rl_mii_send(struct rl_softc *, uint32_t, int);
  198 static void rl_mii_sync(struct rl_softc *);
  199 static int rl_mii_readreg(struct rl_softc *, struct rl_mii_frame *);
  200 static int rl_mii_writereg(struct rl_softc *, struct rl_mii_frame *);
  201 static int rl_miibus_readreg(device_t, int, int);
  202 static void rl_miibus_statchg(device_t);
  203 static int rl_miibus_writereg(device_t, int, int, int);
  204 #ifdef DEVICE_POLLING
  205 static void rl_poll(struct ifnet *ifp, enum poll_cmd cmd, int count);
  206 static void rl_poll_locked(struct ifnet *ifp, enum poll_cmd cmd, int count);
  207 #endif
  208 static int rl_probe(device_t);
  209 static void rl_read_eeprom(struct rl_softc *, uint8_t *, int, int, int);
  210 static void rl_reset(struct rl_softc *);
  211 static int rl_resume(device_t);
  212 static void rl_rxeof(struct rl_softc *);
  213 static void rl_setmulti(struct rl_softc *);
  214 static int rl_shutdown(device_t);
  215 static void rl_start(struct ifnet *);
  216 static void rl_start_locked(struct ifnet *);
  217 static void rl_stop(struct rl_softc *);
  218 static int rl_suspend(device_t);
  219 static void rl_tick(void *);
  220 static void rl_txeof(struct rl_softc *);
  221 static void rl_watchdog(struct rl_softc *);
  222 
  223 #ifdef RL_USEIOSPACE
  224 #define RL_RES                  SYS_RES_IOPORT
  225 #define RL_RID                  RL_PCI_LOIO
  226 #else
  227 #define RL_RES                  SYS_RES_MEMORY
  228 #define RL_RID                  RL_PCI_LOMEM
  229 #endif
  230 
  231 static device_method_t rl_methods[] = {
  232         /* Device interface */
  233         DEVMETHOD(device_probe,         rl_probe),
  234         DEVMETHOD(device_attach,        rl_attach),
  235         DEVMETHOD(device_detach,        rl_detach),
  236         DEVMETHOD(device_suspend,       rl_suspend),
  237         DEVMETHOD(device_resume,        rl_resume),
  238         DEVMETHOD(device_shutdown,      rl_shutdown),
  239 
  240         /* bus interface */
  241         DEVMETHOD(bus_print_child,      bus_generic_print_child),
  242         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
  243 
  244         /* MII interface */
  245         DEVMETHOD(miibus_readreg,       rl_miibus_readreg),
  246         DEVMETHOD(miibus_writereg,      rl_miibus_writereg),
  247         DEVMETHOD(miibus_statchg,       rl_miibus_statchg),
  248 
  249         { 0, 0 }
  250 };
  251 
  252 static driver_t rl_driver = {
  253         "rl",
  254         rl_methods,
  255         sizeof(struct rl_softc)
  256 };
  257 
  258 static devclass_t rl_devclass;
  259 
  260 DRIVER_MODULE(rl, pci, rl_driver, rl_devclass, 0, 0);
  261 DRIVER_MODULE(rl, cardbus, rl_driver, rl_devclass, 0, 0);
  262 DRIVER_MODULE(miibus, rl, miibus_driver, miibus_devclass, 0, 0);
  263 
  264 #define EE_SET(x)                                       \
  265         CSR_WRITE_1(sc, RL_EECMD,                       \
  266                 CSR_READ_1(sc, RL_EECMD) | x)
  267 
  268 #define EE_CLR(x)                                       \
  269         CSR_WRITE_1(sc, RL_EECMD,                       \
  270                 CSR_READ_1(sc, RL_EECMD) & ~x)
  271 
  272 static void
  273 rl_dma_map_rxbuf(void *arg, bus_dma_segment_t *segs, int nseg, int error)
  274 {
  275         struct rl_softc *sc = arg;
  276 
  277         CSR_WRITE_4(sc, RL_RXADDR, segs->ds_addr & 0xFFFFFFFF);
  278 }
  279 
  280 static void
  281 rl_dma_map_txbuf(void *arg, bus_dma_segment_t *segs, int nseg, int error)
  282 {
  283         struct rl_softc *sc = arg;
  284 
  285         CSR_WRITE_4(sc, RL_CUR_TXADDR(sc), segs->ds_addr & 0xFFFFFFFF);
  286 }
  287 
  288 /*
  289  * Send a read command and address to the EEPROM, check for ACK.
  290  */
  291 static void
  292 rl_eeprom_putbyte(struct rl_softc *sc, int addr)
  293 {
  294         register int            d, i;
  295 
  296         d = addr | sc->rl_eecmd_read;
  297 
  298         /*
  299          * Feed in each bit and strobe the clock.
  300          */
  301         for (i = 0x400; i; i >>= 1) {
  302                 if (d & i) {
  303                         EE_SET(RL_EE_DATAIN);
  304                 } else {
  305                         EE_CLR(RL_EE_DATAIN);
  306                 }
  307                 DELAY(100);
  308                 EE_SET(RL_EE_CLK);
  309                 DELAY(150);
  310                 EE_CLR(RL_EE_CLK);
  311                 DELAY(100);
  312         }
  313 }
  314 
  315 /*
  316  * Read a word of data stored in the EEPROM at address 'addr.'
  317  */
  318 static void
  319 rl_eeprom_getword(struct rl_softc *sc, int addr, uint16_t *dest)
  320 {
  321         register int            i;
  322         uint16_t                word = 0;
  323 
  324         /* Enter EEPROM access mode. */
  325         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
  326 
  327         /*
  328          * Send address of word we want to read.
  329          */
  330         rl_eeprom_putbyte(sc, addr);
  331 
  332         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
  333 
  334         /*
  335          * Start reading bits from EEPROM.
  336          */
  337         for (i = 0x8000; i; i >>= 1) {
  338                 EE_SET(RL_EE_CLK);
  339                 DELAY(100);
  340                 if (CSR_READ_1(sc, RL_EECMD) & RL_EE_DATAOUT)
  341                         word |= i;
  342                 EE_CLR(RL_EE_CLK);
  343                 DELAY(100);
  344         }
  345 
  346         /* Turn off EEPROM access mode. */
  347         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
  348 
  349         *dest = word;
  350 }
  351 
  352 /*
  353  * Read a sequence of words from the EEPROM.
  354  */
  355 static void
  356 rl_read_eeprom(struct rl_softc *sc, uint8_t *dest, int off, int cnt, int swap)
  357 {
  358         int                     i;
  359         uint16_t                word = 0, *ptr;
  360 
  361         for (i = 0; i < cnt; i++) {
  362                 rl_eeprom_getword(sc, off + i, &word);
  363                 ptr = (uint16_t *)(dest + (i * 2));
  364                 if (swap)
  365                         *ptr = ntohs(word);
  366                 else
  367                         *ptr = word;
  368         }
  369 }
  370 
  371 /*
  372  * MII access routines are provided for the 8129, which
  373  * doesn't have a built-in PHY. For the 8139, we fake things
  374  * up by diverting rl_phy_readreg()/rl_phy_writereg() to the
  375  * direct access PHY registers.
  376  */
  377 #define MII_SET(x)                                      \
  378         CSR_WRITE_1(sc, RL_MII,                         \
  379                 CSR_READ_1(sc, RL_MII) | (x))
  380 
  381 #define MII_CLR(x)                                      \
  382         CSR_WRITE_1(sc, RL_MII,                         \
  383                 CSR_READ_1(sc, RL_MII) & ~(x))
  384 
  385 /*
  386  * Sync the PHYs by setting data bit and strobing the clock 32 times.
  387  */
  388 static void
  389 rl_mii_sync(struct rl_softc *sc)
  390 {
  391         register int            i;
  392 
  393         MII_SET(RL_MII_DIR|RL_MII_DATAOUT);
  394 
  395         for (i = 0; i < 32; i++) {
  396                 MII_SET(RL_MII_CLK);
  397                 DELAY(1);
  398                 MII_CLR(RL_MII_CLK);
  399                 DELAY(1);
  400         }
  401 }
  402 
  403 /*
  404  * Clock a series of bits through the MII.
  405  */
  406 static void
  407 rl_mii_send(struct rl_softc *sc, uint32_t bits, int cnt)
  408 {
  409         int                     i;
  410 
  411         MII_CLR(RL_MII_CLK);
  412 
  413         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
  414                 if (bits & i) {
  415                         MII_SET(RL_MII_DATAOUT);
  416                 } else {
  417                         MII_CLR(RL_MII_DATAOUT);
  418                 }
  419                 DELAY(1);
  420                 MII_CLR(RL_MII_CLK);
  421                 DELAY(1);
  422                 MII_SET(RL_MII_CLK);
  423         }
  424 }
  425 
  426 /*
  427  * Read an PHY register through the MII.
  428  */
  429 static int
  430 rl_mii_readreg(struct rl_softc *sc, struct rl_mii_frame *frame)
  431 {
  432         int                     i, ack;
  433 
  434         /* Set up frame for RX. */
  435         frame->mii_stdelim = RL_MII_STARTDELIM;
  436         frame->mii_opcode = RL_MII_READOP;
  437         frame->mii_turnaround = 0;
  438         frame->mii_data = 0;
  439 
  440         CSR_WRITE_2(sc, RL_MII, 0);
  441 
  442         /* Turn on data xmit. */
  443         MII_SET(RL_MII_DIR);
  444 
  445         rl_mii_sync(sc);
  446 
  447         /* Send command/address info. */
  448         rl_mii_send(sc, frame->mii_stdelim, 2);
  449         rl_mii_send(sc, frame->mii_opcode, 2);
  450         rl_mii_send(sc, frame->mii_phyaddr, 5);
  451         rl_mii_send(sc, frame->mii_regaddr, 5);
  452 
  453         /* Idle bit */
  454         MII_CLR((RL_MII_CLK|RL_MII_DATAOUT));
  455         DELAY(1);
  456         MII_SET(RL_MII_CLK);
  457         DELAY(1);
  458 
  459         /* Turn off xmit. */
  460         MII_CLR(RL_MII_DIR);
  461 
  462         /* Check for ack */
  463         MII_CLR(RL_MII_CLK);
  464         DELAY(1);
  465         ack = CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN;
  466         MII_SET(RL_MII_CLK);
  467         DELAY(1);
  468 
  469         /*
  470          * Now try reading data bits. If the ack failed, we still
  471          * need to clock through 16 cycles to keep the PHY(s) in sync.
  472          */
  473         if (ack) {
  474                 for(i = 0; i < 16; i++) {
  475                         MII_CLR(RL_MII_CLK);
  476                         DELAY(1);
  477                         MII_SET(RL_MII_CLK);
  478                         DELAY(1);
  479                 }
  480                 goto fail;
  481         }
  482 
  483         for (i = 0x8000; i; i >>= 1) {
  484                 MII_CLR(RL_MII_CLK);
  485                 DELAY(1);
  486                 if (!ack) {
  487                         if (CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN)
  488                                 frame->mii_data |= i;
  489                         DELAY(1);
  490                 }
  491                 MII_SET(RL_MII_CLK);
  492                 DELAY(1);
  493         }
  494 
  495 fail:
  496         MII_CLR(RL_MII_CLK);
  497         DELAY(1);
  498         MII_SET(RL_MII_CLK);
  499         DELAY(1);
  500 
  501         return (ack ? 1 : 0);
  502 }
  503 
  504 /*
  505  * Write to a PHY register through the MII.
  506  */
  507 static int
  508 rl_mii_writereg(struct rl_softc *sc, struct rl_mii_frame *frame)
  509 {
  510 
  511         /* Set up frame for TX. */
  512         frame->mii_stdelim = RL_MII_STARTDELIM;
  513         frame->mii_opcode = RL_MII_WRITEOP;
  514         frame->mii_turnaround = RL_MII_TURNAROUND;
  515 
  516         /* Turn on data output. */
  517         MII_SET(RL_MII_DIR);
  518 
  519         rl_mii_sync(sc);
  520 
  521         rl_mii_send(sc, frame->mii_stdelim, 2);
  522         rl_mii_send(sc, frame->mii_opcode, 2);
  523         rl_mii_send(sc, frame->mii_phyaddr, 5);
  524         rl_mii_send(sc, frame->mii_regaddr, 5);
  525         rl_mii_send(sc, frame->mii_turnaround, 2);
  526         rl_mii_send(sc, frame->mii_data, 16);
  527 
  528         /* Idle bit. */
  529         MII_SET(RL_MII_CLK);
  530         DELAY(1);
  531         MII_CLR(RL_MII_CLK);
  532         DELAY(1);
  533 
  534         /* Turn off xmit. */
  535         MII_CLR(RL_MII_DIR);
  536 
  537         return (0);
  538 }
  539 
  540 static int
  541 rl_miibus_readreg(device_t dev, int phy, int reg)
  542 {
  543         struct rl_softc         *sc;
  544         struct rl_mii_frame     frame;
  545         uint16_t                rval = 0;
  546         uint16_t                rl8139_reg = 0;
  547 
  548         sc = device_get_softc(dev);
  549 
  550         if (sc->rl_type == RL_8139) {
  551                 /* Pretend the internal PHY is only at address 0 */
  552                 if (phy) {
  553                         return (0);
  554                 }
  555                 switch (reg) {
  556                 case MII_BMCR:
  557                         rl8139_reg = RL_BMCR;
  558                         break;
  559                 case MII_BMSR:
  560                         rl8139_reg = RL_BMSR;
  561                         break;
  562                 case MII_ANAR:
  563                         rl8139_reg = RL_ANAR;
  564                         break;
  565                 case MII_ANER:
  566                         rl8139_reg = RL_ANER;
  567                         break;
  568                 case MII_ANLPAR:
  569                         rl8139_reg = RL_LPAR;
  570                         break;
  571                 case MII_PHYIDR1:
  572                 case MII_PHYIDR2:
  573                         return (0);
  574                 /*
  575                  * Allow the rlphy driver to read the media status
  576                  * register. If we have a link partner which does not
  577                  * support NWAY, this is the register which will tell
  578                  * us the results of parallel detection.
  579                  */
  580                 case RL_MEDIASTAT:
  581                         rval = CSR_READ_1(sc, RL_MEDIASTAT);
  582                         return (rval);
  583                 default:
  584                         device_printf(sc->rl_dev, "bad phy register\n");
  585                         return (0);
  586                 }
  587                 rval = CSR_READ_2(sc, rl8139_reg);
  588                 return (rval);
  589         }
  590 
  591         bzero((char *)&frame, sizeof(frame));
  592         frame.mii_phyaddr = phy;
  593         frame.mii_regaddr = reg;
  594         rl_mii_readreg(sc, &frame);
  595 
  596         return (frame.mii_data);
  597 }
  598 
  599 static int
  600 rl_miibus_writereg(device_t dev, int phy, int reg, int data)
  601 {
  602         struct rl_softc         *sc;
  603         struct rl_mii_frame     frame;
  604         uint16_t                rl8139_reg = 0;
  605 
  606         sc = device_get_softc(dev);
  607 
  608         if (sc->rl_type == RL_8139) {
  609                 /* Pretend the internal PHY is only at address 0 */
  610                 if (phy) {
  611                         return (0);
  612                 }
  613                 switch (reg) {
  614                 case MII_BMCR:
  615                         rl8139_reg = RL_BMCR;
  616                         break;
  617                 case MII_BMSR:
  618                         rl8139_reg = RL_BMSR;
  619                         break;
  620                 case MII_ANAR:
  621                         rl8139_reg = RL_ANAR;
  622                         break;
  623                 case MII_ANER:
  624                         rl8139_reg = RL_ANER;
  625                         break;
  626                 case MII_ANLPAR:
  627                         rl8139_reg = RL_LPAR;
  628                         break;
  629                 case MII_PHYIDR1:
  630                 case MII_PHYIDR2:
  631                         return (0);
  632                         break;
  633                 default:
  634                         device_printf(sc->rl_dev, "bad phy register\n");
  635                         return (0);
  636                 }
  637                 CSR_WRITE_2(sc, rl8139_reg, data);
  638                 return (0);
  639         }
  640 
  641         bzero((char *)&frame, sizeof(frame));
  642         frame.mii_phyaddr = phy;
  643         frame.mii_regaddr = reg;
  644         frame.mii_data = data;
  645         rl_mii_writereg(sc, &frame);
  646 
  647         return (0);
  648 }
  649 
  650 static void
  651 rl_miibus_statchg(device_t dev)
  652 {
  653 }
  654 
  655 /*
  656  * Program the 64-bit multicast hash filter.
  657  */
  658 static void
  659 rl_setmulti(struct rl_softc *sc)
  660 {
  661         struct ifnet            *ifp = sc->rl_ifp;
  662         int                     h = 0;
  663         uint32_t                hashes[2] = { 0, 0 };
  664         struct ifmultiaddr      *ifma;
  665         uint32_t                rxfilt;
  666         int                     mcnt = 0;
  667 
  668         RL_LOCK_ASSERT(sc);
  669 
  670         rxfilt = CSR_READ_4(sc, RL_RXCFG);
  671 
  672         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
  673                 rxfilt |= RL_RXCFG_RX_MULTI;
  674                 CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
  675                 CSR_WRITE_4(sc, RL_MAR0, 0xFFFFFFFF);
  676                 CSR_WRITE_4(sc, RL_MAR4, 0xFFFFFFFF);
  677                 return;
  678         }
  679 
  680         /* first, zot all the existing hash bits */
  681         CSR_WRITE_4(sc, RL_MAR0, 0);
  682         CSR_WRITE_4(sc, RL_MAR4, 0);
  683 
  684         /* now program new ones */
  685         IF_ADDR_LOCK(ifp);
  686         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
  687                 if (ifma->ifma_addr->sa_family != AF_LINK)
  688                         continue;
  689                 h = ether_crc32_be(LLADDR((struct sockaddr_dl *)
  690                     ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
  691                 if (h < 32)
  692                         hashes[0] |= (1 << h);
  693                 else
  694                         hashes[1] |= (1 << (h - 32));
  695                 mcnt++;
  696         }
  697         IF_ADDR_UNLOCK(ifp);
  698 
  699         if (mcnt)
  700                 rxfilt |= RL_RXCFG_RX_MULTI;
  701         else
  702                 rxfilt &= ~RL_RXCFG_RX_MULTI;
  703 
  704         CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
  705         CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
  706         CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
  707 }
  708 
  709 static void
  710 rl_reset(struct rl_softc *sc)
  711 {
  712         register int            i;
  713 
  714         RL_LOCK_ASSERT(sc);
  715 
  716         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_RESET);
  717 
  718         for (i = 0; i < RL_TIMEOUT; i++) {
  719                 DELAY(10);
  720                 if (!(CSR_READ_1(sc, RL_COMMAND) & RL_CMD_RESET))
  721                         break;
  722         }
  723         if (i == RL_TIMEOUT)
  724                 device_printf(sc->rl_dev, "reset never completed!\n");
  725 }
  726 
  727 /*
  728  * Probe for a RealTek 8129/8139 chip. Check the PCI vendor and device
  729  * IDs against our list and return a device name if we find a match.
  730  */
  731 static int
  732 rl_probe(device_t dev)
  733 {
  734         struct rl_type          *t;
  735         uint16_t                devid, revid, vendor;
  736         int                     i;
  737         
  738         vendor = pci_get_vendor(dev);
  739         devid = pci_get_device(dev);
  740         revid = pci_get_revid(dev);
  741 
  742         if (vendor == RT_VENDORID && devid == RT_DEVICEID_8139) {
  743                 if (revid == 0x20) {
  744                         /* 8139C+, let re(4) take care of this device. */
  745                         return (ENXIO);
  746                 }
  747         }
  748         t = rl_devs;
  749         for (i = 0; i < sizeof(rl_devs) / sizeof(rl_devs[0]); i++, t++) {
  750                 if (vendor == t->rl_vid && devid == t->rl_did) {
  751                         device_set_desc(dev, t->rl_name);
  752                         return (BUS_PROBE_DEFAULT);
  753                 }
  754         }
  755 
  756         return (ENXIO);
  757 }
  758 
  759 /*
  760  * Attach the interface. Allocate softc structures, do ifmedia
  761  * setup and ethernet/BPF attach.
  762  */
  763 static int
  764 rl_attach(device_t dev)
  765 {
  766         uint8_t                 eaddr[ETHER_ADDR_LEN];
  767         uint16_t                as[3];
  768         struct ifnet            *ifp;
  769         struct rl_softc         *sc;
  770         struct rl_type          *t;
  771         int                     error = 0, i, rid;
  772         int                     unit;
  773         uint16_t                rl_did = 0;
  774 
  775         sc = device_get_softc(dev);
  776         unit = device_get_unit(dev);
  777         sc->rl_dev = dev;
  778 
  779         mtx_init(&sc->rl_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
  780             MTX_DEF);
  781         callout_init_mtx(&sc->rl_stat_callout, &sc->rl_mtx, 0);
  782 
  783         pci_enable_busmaster(dev);
  784 
  785         /* Map control/status registers. */
  786         rid = RL_RID;
  787         sc->rl_res = bus_alloc_resource_any(dev, RL_RES, &rid, RF_ACTIVE);
  788 
  789         if (sc->rl_res == NULL) {
  790                 device_printf(dev, "couldn't map ports/memory\n");
  791                 error = ENXIO;
  792                 goto fail;
  793         }
  794 
  795 #ifdef notdef
  796         /*
  797          * Detect the Realtek 8139B. For some reason, this chip is very
  798          * unstable when left to autoselect the media
  799          * The best workaround is to set the device to the required
  800          * media type or to set it to the 10 Meg speed.
  801          */
  802         if ((rman_get_end(sc->rl_res) - rman_get_start(sc->rl_res)) == 0xFF)
  803                 device_printf(dev,
  804 "Realtek 8139B detected. Warning, this may be unstable in autoselect mode\n");
  805 #endif
  806 
  807         sc->rl_btag = rman_get_bustag(sc->rl_res);
  808         sc->rl_bhandle = rman_get_bushandle(sc->rl_res);
  809 
  810         /* Allocate interrupt */
  811         rid = 0;
  812         sc->rl_irq[0] = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
  813             RF_SHAREABLE | RF_ACTIVE);
  814 
  815         if (sc->rl_irq[0] == NULL) {
  816                 device_printf(dev, "couldn't map interrupt\n");
  817                 error = ENXIO;
  818                 goto fail;
  819         }
  820 
  821         /*
  822          * Reset the adapter. Only take the lock here as it's needed in
  823          * order to call rl_reset().
  824          */
  825         RL_LOCK(sc);
  826         rl_reset(sc);
  827         RL_UNLOCK(sc);
  828 
  829         sc->rl_eecmd_read = RL_EECMD_READ_6BIT;
  830         rl_read_eeprom(sc, (uint8_t *)&rl_did, 0, 1, 0);
  831         if (rl_did != 0x8129)
  832                 sc->rl_eecmd_read = RL_EECMD_READ_8BIT;
  833 
  834         /*
  835          * Get station address from the EEPROM.
  836          */
  837         rl_read_eeprom(sc, (uint8_t *)as, RL_EE_EADDR, 3, 0);
  838         for (i = 0; i < 3; i++) {
  839                 eaddr[(i * 2) + 0] = as[i] & 0xff;
  840                 eaddr[(i * 2) + 1] = as[i] >> 8;
  841         }
  842 
  843         /*
  844          * Now read the exact device type from the EEPROM to find
  845          * out if it's an 8129 or 8139.
  846          */
  847         rl_read_eeprom(sc, (uint8_t *)&rl_did, RL_EE_PCI_DID, 1, 0);
  848 
  849         t = rl_devs;
  850         sc->rl_type = 0;
  851         while(t->rl_name != NULL) {
  852                 if (rl_did == t->rl_did) {
  853                         sc->rl_type = t->rl_basetype;
  854                         break;
  855                 }
  856                 t++;
  857         }
  858 
  859         if (sc->rl_type == 0) {
  860                 device_printf(dev, "unknown device ID: %x\n", rl_did);
  861                 error = ENXIO;
  862                 goto fail;
  863         }
  864 
  865         /*
  866          * Allocate the parent bus DMA tag appropriate for PCI.
  867          */
  868 #define RL_NSEG_NEW 32
  869         error = bus_dma_tag_create(bus_get_dma_tag(dev),        /* parent */
  870                         1, 0,                   /* alignment, boundary */
  871                         BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
  872                         BUS_SPACE_MAXADDR,      /* highaddr */
  873                         NULL, NULL,             /* filter, filterarg */
  874                         MAXBSIZE, RL_NSEG_NEW,  /* maxsize, nsegments */
  875                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
  876                         BUS_DMA_ALLOCNOW,       /* flags */
  877                         NULL, NULL,             /* lockfunc, lockarg */
  878                         &sc->rl_parent_tag);
  879         if (error)
  880                 goto fail;
  881 
  882         /*
  883          * Now allocate a tag for the DMA descriptor lists.
  884          * All of our lists are allocated as a contiguous block
  885          * of memory.
  886          */
  887         error = bus_dma_tag_create(sc->rl_parent_tag,   /* parent */
  888                         1, 0,                   /* alignment, boundary */
  889                         BUS_SPACE_MAXADDR,      /* lowaddr */
  890                         BUS_SPACE_MAXADDR,      /* highaddr */
  891                         NULL, NULL,             /* filter, filterarg */
  892                         RL_RXBUFLEN + 1518, 1,  /* maxsize,nsegments */
  893                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
  894                         BUS_DMA_ALLOCNOW,               /* flags */
  895                         NULL, NULL,             /* lockfunc, lockarg */
  896                         &sc->rl_tag);
  897         if (error)
  898                 goto fail;
  899 
  900         /*
  901          * Now allocate a chunk of DMA-able memory based on the
  902          * tag we just created.
  903          */
  904         error = bus_dmamem_alloc(sc->rl_tag,
  905             (void **)&sc->rl_cdata.rl_rx_buf, BUS_DMA_NOWAIT | BUS_DMA_ZERO,
  906             &sc->rl_cdata.rl_rx_dmamap);
  907         if (error) {
  908                 device_printf(dev, "no memory for list buffers!\n");
  909                 bus_dma_tag_destroy(sc->rl_tag);
  910                 sc->rl_tag = NULL;
  911                 goto fail;
  912         }
  913 
  914         /* Leave a few bytes before the start of the RX ring buffer. */
  915         sc->rl_cdata.rl_rx_buf_ptr = sc->rl_cdata.rl_rx_buf;
  916         sc->rl_cdata.rl_rx_buf += sizeof(uint64_t);
  917 
  918         ifp = sc->rl_ifp = if_alloc(IFT_ETHER);
  919         if (ifp == NULL) {
  920                 device_printf(dev, "can not if_alloc()\n");
  921                 error = ENOSPC;
  922                 goto fail;
  923         }
  924 
  925         /* Do MII setup */
  926         if (mii_phy_probe(dev, &sc->rl_miibus,
  927             rl_ifmedia_upd, rl_ifmedia_sts)) {
  928                 device_printf(dev, "MII without any phy!\n");
  929                 error = ENXIO;
  930                 goto fail;
  931         }
  932 
  933         ifp->if_softc = sc;
  934         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
  935         ifp->if_mtu = ETHERMTU;
  936         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
  937         ifp->if_ioctl = rl_ioctl;
  938         ifp->if_start = rl_start;
  939         ifp->if_init = rl_init;
  940         ifp->if_capabilities = IFCAP_VLAN_MTU;
  941         ifp->if_capenable = ifp->if_capabilities;
  942 #ifdef DEVICE_POLLING
  943         ifp->if_capabilities |= IFCAP_POLLING;
  944 #endif
  945         IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
  946         ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
  947         IFQ_SET_READY(&ifp->if_snd);
  948 
  949         /*
  950          * Call MI attach routine.
  951          */
  952         ether_ifattach(ifp, eaddr);
  953 
  954         /* Hook interrupt last to avoid having to lock softc */
  955         error = bus_setup_intr(dev, sc->rl_irq[0], INTR_TYPE_NET | INTR_MPSAFE,
  956             NULL, rl_intr, sc, &sc->rl_intrhand[0]);
  957         if (error) {
  958                 device_printf(sc->rl_dev, "couldn't set up irq\n");
  959                 ether_ifdetach(ifp);
  960         }
  961 
  962 fail:
  963         if (error)
  964                 rl_detach(dev);
  965 
  966         return (error);
  967 }
  968 
  969 /*
  970  * Shutdown hardware and free up resources. This can be called any
  971  * time after the mutex has been initialized. It is called in both
  972  * the error case in attach and the normal detach case so it needs
  973  * to be careful about only freeing resources that have actually been
  974  * allocated.
  975  */
  976 static int
  977 rl_detach(device_t dev)
  978 {
  979         struct rl_softc         *sc;
  980         struct ifnet            *ifp;
  981 
  982         sc = device_get_softc(dev);
  983         ifp = sc->rl_ifp;
  984 
  985         KASSERT(mtx_initialized(&sc->rl_mtx), ("rl mutex not initialized"));
  986 
  987 #ifdef DEVICE_POLLING
  988         if (ifp->if_capenable & IFCAP_POLLING)
  989                 ether_poll_deregister(ifp);
  990 #endif
  991         /* These should only be active if attach succeeded */
  992         if (device_is_attached(dev)) {
  993                 RL_LOCK(sc);
  994                 rl_stop(sc);
  995                 RL_UNLOCK(sc);
  996                 callout_drain(&sc->rl_stat_callout);
  997                 ether_ifdetach(ifp);
  998         }
  999 #if 0
 1000         sc->suspended = 1;
 1001 #endif
 1002         if (sc->rl_miibus)
 1003                 device_delete_child(dev, sc->rl_miibus);
 1004         bus_generic_detach(dev);
 1005 
 1006         if (sc->rl_intrhand[0])
 1007                 bus_teardown_intr(dev, sc->rl_irq[0], sc->rl_intrhand[0]);
 1008         if (sc->rl_irq[0])
 1009                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq[0]);
 1010         if (sc->rl_res)
 1011                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
 1012 
 1013         if (ifp)
 1014                 if_free(ifp);
 1015 
 1016         if (sc->rl_tag) {
 1017                 bus_dmamap_unload(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap);
 1018                 bus_dmamem_free(sc->rl_tag, sc->rl_cdata.rl_rx_buf,
 1019                     sc->rl_cdata.rl_rx_dmamap);
 1020                 bus_dma_tag_destroy(sc->rl_tag);
 1021         }
 1022         if (sc->rl_parent_tag)
 1023                 bus_dma_tag_destroy(sc->rl_parent_tag);
 1024 
 1025         mtx_destroy(&sc->rl_mtx);
 1026 
 1027         return (0);
 1028 }
 1029 
 1030 /*
 1031  * Initialize the transmit descriptors.
 1032  */
 1033 static int
 1034 rl_list_tx_init(struct rl_softc *sc)
 1035 {
 1036         struct rl_chain_data    *cd;
 1037         int                     i;
 1038 
 1039         RL_LOCK_ASSERT(sc);
 1040 
 1041         cd = &sc->rl_cdata;
 1042         for (i = 0; i < RL_TX_LIST_CNT; i++) {
 1043                 cd->rl_tx_chain[i] = NULL;
 1044                 CSR_WRITE_4(sc,
 1045                     RL_TXADDR0 + (i * sizeof(uint32_t)), 0x0000000);
 1046         }
 1047 
 1048         sc->rl_cdata.cur_tx = 0;
 1049         sc->rl_cdata.last_tx = 0;
 1050 
 1051         return (0);
 1052 }
 1053 
 1054 /*
 1055  * A frame has been uploaded: pass the resulting mbuf chain up to
 1056  * the higher level protocols.
 1057  *
 1058  * You know there's something wrong with a PCI bus-master chip design
 1059  * when you have to use m_devget().
 1060  *
 1061  * The receive operation is badly documented in the datasheet, so I'll
 1062  * attempt to document it here. The driver provides a buffer area and
 1063  * places its base address in the RX buffer start address register.
 1064  * The chip then begins copying frames into the RX buffer. Each frame
 1065  * is preceded by a 32-bit RX status word which specifies the length
 1066  * of the frame and certain other status bits. Each frame (starting with
 1067  * the status word) is also 32-bit aligned. The frame length is in the
 1068  * first 16 bits of the status word; the lower 15 bits correspond with
 1069  * the 'rx status register' mentioned in the datasheet.
 1070  *
 1071  * Note: to make the Alpha happy, the frame payload needs to be aligned
 1072  * on a 32-bit boundary. To achieve this, we pass RL_ETHER_ALIGN (2 bytes)
 1073  * as the offset argument to m_devget().
 1074  */
 1075 static void
 1076 rl_rxeof(struct rl_softc *sc)
 1077 {
 1078         struct mbuf             *m;
 1079         struct ifnet            *ifp = sc->rl_ifp;
 1080         uint8_t                 *rxbufpos;
 1081         int                     total_len = 0;
 1082         int                     wrap = 0;
 1083         uint32_t                rxstat;
 1084         uint16_t                cur_rx;
 1085         uint16_t                limit;
 1086         uint16_t                max_bytes, rx_bytes = 0;
 1087 
 1088         RL_LOCK_ASSERT(sc);
 1089 
 1090         bus_dmamap_sync(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
 1091             BUS_DMASYNC_POSTREAD);
 1092 
 1093         cur_rx = (CSR_READ_2(sc, RL_CURRXADDR) + 16) % RL_RXBUFLEN;
 1094 
 1095         /* Do not try to read past this point. */
 1096         limit = CSR_READ_2(sc, RL_CURRXBUF) % RL_RXBUFLEN;
 1097 
 1098         if (limit < cur_rx)
 1099                 max_bytes = (RL_RXBUFLEN - cur_rx) + limit;
 1100         else
 1101                 max_bytes = limit - cur_rx;
 1102 
 1103         while((CSR_READ_1(sc, RL_COMMAND) & RL_CMD_EMPTY_RXBUF) == 0) {
 1104 #ifdef DEVICE_POLLING
 1105                 if (ifp->if_capenable & IFCAP_POLLING) {
 1106                         if (sc->rxcycles <= 0)
 1107                                 break;
 1108                         sc->rxcycles--;
 1109                 }
 1110 #endif
 1111                 rxbufpos = sc->rl_cdata.rl_rx_buf + cur_rx;
 1112                 rxstat = le32toh(*(uint32_t *)rxbufpos);
 1113 
 1114                 /*
 1115                  * Here's a totally undocumented fact for you. When the
 1116                  * RealTek chip is in the process of copying a packet into
 1117                  * RAM for you, the length will be 0xfff0. If you spot a
 1118                  * packet header with this value, you need to stop. The
 1119                  * datasheet makes absolutely no mention of this and
 1120                  * RealTek should be shot for this.
 1121                  */
 1122                 total_len = rxstat >> 16;
 1123                 if (total_len == RL_RXSTAT_UNFINISHED)
 1124                         break;
 1125 
 1126                 if (!(rxstat & RL_RXSTAT_RXOK) ||
 1127                     total_len < ETHER_MIN_LEN ||
 1128                     total_len > ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN) {
 1129                         ifp->if_ierrors++;
 1130                         rl_init_locked(sc);
 1131                         return;
 1132                 }
 1133 
 1134                 /* No errors; receive the packet. */
 1135                 rx_bytes += total_len + 4;
 1136 
 1137                 /*
 1138                  * XXX The RealTek chip includes the CRC with every
 1139                  * received frame, and there's no way to turn this
 1140                  * behavior off (at least, I can't find anything in
 1141                  * the manual that explains how to do it) so we have
 1142                  * to trim off the CRC manually.
 1143                  */
 1144                 total_len -= ETHER_CRC_LEN;
 1145 
 1146                 /*
 1147                  * Avoid trying to read more bytes than we know
 1148                  * the chip has prepared for us.
 1149                  */
 1150                 if (rx_bytes > max_bytes)
 1151                         break;
 1152 
 1153                 rxbufpos = sc->rl_cdata.rl_rx_buf +
 1154                         ((cur_rx + sizeof(uint32_t)) % RL_RXBUFLEN);
 1155                 if (rxbufpos == (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN))
 1156                         rxbufpos = sc->rl_cdata.rl_rx_buf;
 1157 
 1158                 wrap = (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN) - rxbufpos;
 1159                 if (total_len > wrap) {
 1160                         m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
 1161                             NULL);
 1162                         if (m == NULL) {
 1163                                 ifp->if_ierrors++;
 1164                         } else {
 1165                                 m_copyback(m, wrap, total_len - wrap,
 1166                                         sc->rl_cdata.rl_rx_buf);
 1167                         }
 1168                         cur_rx = (total_len - wrap + ETHER_CRC_LEN);
 1169                 } else {
 1170                         m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
 1171                             NULL);
 1172                         if (m == NULL)
 1173                                 ifp->if_ierrors++;
 1174                         cur_rx += total_len + 4 + ETHER_CRC_LEN;
 1175                 }
 1176 
 1177                 /* Round up to 32-bit boundary. */
 1178                 cur_rx = (cur_rx + 3) & ~3;
 1179                 CSR_WRITE_2(sc, RL_CURRXADDR, cur_rx - 16);
 1180 
 1181                 if (m == NULL)
 1182                         continue;
 1183 
 1184                 ifp->if_ipackets++;
 1185                 RL_UNLOCK(sc);
 1186                 (*ifp->if_input)(ifp, m);
 1187                 RL_LOCK(sc);
 1188         }
 1189 }
 1190 
 1191 /*
 1192  * A frame was downloaded to the chip. It's safe for us to clean up
 1193  * the list buffers.
 1194  */
 1195 static void
 1196 rl_txeof(struct rl_softc *sc)
 1197 {
 1198         struct ifnet            *ifp = sc->rl_ifp;
 1199         uint32_t                txstat;
 1200 
 1201         RL_LOCK_ASSERT(sc);
 1202 
 1203         /*
 1204          * Go through our tx list and free mbufs for those
 1205          * frames that have been uploaded.
 1206          */
 1207         do {
 1208                 if (RL_LAST_TXMBUF(sc) == NULL)
 1209                         break;
 1210                 txstat = CSR_READ_4(sc, RL_LAST_TXSTAT(sc));
 1211                 if (!(txstat & (RL_TXSTAT_TX_OK|
 1212                     RL_TXSTAT_TX_UNDERRUN|RL_TXSTAT_TXABRT)))
 1213                         break;
 1214 
 1215                 ifp->if_collisions += (txstat & RL_TXSTAT_COLLCNT) >> 24;
 1216 
 1217                 bus_dmamap_unload(sc->rl_tag, RL_LAST_DMAMAP(sc));
 1218                 bus_dmamap_destroy(sc->rl_tag, RL_LAST_DMAMAP(sc));
 1219                 m_freem(RL_LAST_TXMBUF(sc));
 1220                 RL_LAST_TXMBUF(sc) = NULL;
 1221                 /*
 1222                  * If there was a transmit underrun, bump the TX threshold.
 1223                  * Make sure not to overflow the 63 * 32byte we can address
 1224                  * with the 6 available bit.
 1225                  */
 1226                 if ((txstat & RL_TXSTAT_TX_UNDERRUN) &&
 1227                     (sc->rl_txthresh < 2016))
 1228                         sc->rl_txthresh += 32;
 1229                 if (txstat & RL_TXSTAT_TX_OK)
 1230                         ifp->if_opackets++;
 1231                 else {
 1232                         int                     oldthresh;
 1233                         ifp->if_oerrors++;
 1234                         if ((txstat & RL_TXSTAT_TXABRT) ||
 1235                             (txstat & RL_TXSTAT_OUTOFWIN))
 1236                                 CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
 1237                         oldthresh = sc->rl_txthresh;
 1238                         /* error recovery */
 1239                         rl_reset(sc);
 1240                         rl_init_locked(sc);
 1241                         /* restore original threshold */
 1242                         sc->rl_txthresh = oldthresh;
 1243                         return;
 1244                 }
 1245                 RL_INC(sc->rl_cdata.last_tx);
 1246                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
 1247         } while (sc->rl_cdata.last_tx != sc->rl_cdata.cur_tx);
 1248 
 1249         if (RL_LAST_TXMBUF(sc) == NULL)
 1250                 sc->rl_watchdog_timer = 0;
 1251         else if (sc->rl_watchdog_timer == 0)
 1252                 sc->rl_watchdog_timer = 5;
 1253 }
 1254 
 1255 static void
 1256 rl_tick(void *xsc)
 1257 {
 1258         struct rl_softc         *sc = xsc;
 1259         struct mii_data         *mii;
 1260 
 1261         RL_LOCK_ASSERT(sc);
 1262         mii = device_get_softc(sc->rl_miibus);
 1263         mii_tick(mii);
 1264 
 1265         rl_watchdog(sc);
 1266 
 1267         callout_reset(&sc->rl_stat_callout, hz, rl_tick, sc);
 1268 }
 1269 
 1270 #ifdef DEVICE_POLLING
 1271 static void
 1272 rl_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
 1273 {
 1274         struct rl_softc *sc = ifp->if_softc;
 1275 
 1276         RL_LOCK(sc);
 1277         if (ifp->if_drv_flags & IFF_DRV_RUNNING)
 1278                 rl_poll_locked(ifp, cmd, count);
 1279         RL_UNLOCK(sc);
 1280 }
 1281 
 1282 static void
 1283 rl_poll_locked(struct ifnet *ifp, enum poll_cmd cmd, int count)
 1284 {
 1285         struct rl_softc *sc = ifp->if_softc;
 1286 
 1287         RL_LOCK_ASSERT(sc);
 1288 
 1289         sc->rxcycles = count;
 1290         rl_rxeof(sc);
 1291         rl_txeof(sc);
 1292 
 1293         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
 1294                 rl_start_locked(ifp);
 1295 
 1296         if (cmd == POLL_AND_CHECK_STATUS) {
 1297                 uint16_t        status;
 1298 
 1299                 /* We should also check the status register. */
 1300                 status = CSR_READ_2(sc, RL_ISR);
 1301                 if (status == 0xffff)
 1302                         return;
 1303                 if (status != 0)
 1304                         CSR_WRITE_2(sc, RL_ISR, status);
 1305 
 1306                 /* XXX We should check behaviour on receiver stalls. */
 1307 
 1308                 if (status & RL_ISR_SYSTEM_ERR) {
 1309                         rl_reset(sc);
 1310                         rl_init_locked(sc);
 1311                 }
 1312         }
 1313 }
 1314 #endif /* DEVICE_POLLING */
 1315 
 1316 static void
 1317 rl_intr(void *arg)
 1318 {
 1319         struct rl_softc         *sc = arg;
 1320         struct ifnet            *ifp = sc->rl_ifp;
 1321         uint16_t                status;
 1322 
 1323         RL_LOCK(sc);
 1324 
 1325         if (sc->suspended)
 1326                 goto done_locked;
 1327 
 1328 #ifdef DEVICE_POLLING
 1329         if  (ifp->if_capenable & IFCAP_POLLING)
 1330                 goto done_locked;
 1331 #endif
 1332 
 1333         for (;;) {
 1334                 status = CSR_READ_2(sc, RL_ISR);
 1335                 /* If the card has gone away, the read returns 0xffff. */
 1336                 if (status == 0xffff)
 1337                         break;
 1338                 if (status != 0)
 1339                         CSR_WRITE_2(sc, RL_ISR, status);
 1340                 if ((status & RL_INTRS) == 0)
 1341                         break;
 1342                 if (status & RL_ISR_RX_OK)
 1343                         rl_rxeof(sc);
 1344                 if (status & RL_ISR_RX_ERR)
 1345                         rl_rxeof(sc);
 1346                 if ((status & RL_ISR_TX_OK) || (status & RL_ISR_TX_ERR))
 1347                         rl_txeof(sc);
 1348                 if (status & RL_ISR_SYSTEM_ERR) {
 1349                         rl_reset(sc);
 1350                         rl_init_locked(sc);
 1351                 }
 1352         }
 1353 
 1354         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
 1355                 rl_start_locked(ifp);
 1356 
 1357 done_locked:
 1358         RL_UNLOCK(sc);
 1359 }
 1360 
 1361 /*
 1362  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
 1363  * pointers to the fragment pointers.
 1364  */
 1365 static int
 1366 rl_encap(struct rl_softc *sc, struct mbuf *m_head)
 1367 {
 1368         struct mbuf             *m_new = NULL;
 1369 
 1370         RL_LOCK_ASSERT(sc);
 1371 
 1372         /*
 1373          * The RealTek is brain damaged and wants longword-aligned
 1374          * TX buffers, plus we can only have one fragment buffer
 1375          * per packet. We have to copy pretty much all the time.
 1376          */
 1377         m_new = m_defrag(m_head, M_DONTWAIT);
 1378 
 1379         if (m_new == NULL) {
 1380                 m_freem(m_head);
 1381                 return (1);
 1382         }
 1383         m_head = m_new;
 1384 
 1385         /* Pad frames to at least 60 bytes. */
 1386         if (m_head->m_pkthdr.len < RL_MIN_FRAMELEN) {
 1387                 /*
 1388                  * Make security concious people happy: zero out the
 1389                  * bytes in the pad area, since we don't know what
 1390                  * this mbuf cluster buffer's previous user might
 1391                  * have left in it.
 1392                  */
 1393                 bzero(mtod(m_head, char *) + m_head->m_pkthdr.len,
 1394                      RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
 1395                 m_head->m_pkthdr.len +=
 1396                     (RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
 1397                 m_head->m_len = m_head->m_pkthdr.len;
 1398         }
 1399 
 1400         RL_CUR_TXMBUF(sc) = m_head;
 1401 
 1402         return (0);
 1403 }
 1404 
 1405 /*
 1406  * Main transmit routine.
 1407  */
 1408 static void
 1409 rl_start(struct ifnet *ifp)
 1410 {
 1411         struct rl_softc         *sc = ifp->if_softc;
 1412 
 1413         RL_LOCK(sc);
 1414         rl_start_locked(ifp);
 1415         RL_UNLOCK(sc);
 1416 }
 1417 
 1418 static void
 1419 rl_start_locked(struct ifnet *ifp)
 1420 {
 1421         struct rl_softc         *sc = ifp->if_softc;
 1422         struct mbuf             *m_head = NULL;
 1423 
 1424         RL_LOCK_ASSERT(sc);
 1425 
 1426         while (RL_CUR_TXMBUF(sc) == NULL) {
 1427 
 1428                 IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
 1429 
 1430                 if (m_head == NULL)
 1431                         break;
 1432 
 1433                 if (rl_encap(sc, m_head))
 1434                         break;
 1435 
 1436                 /* Pass a copy of this mbuf chain to the bpf subsystem. */
 1437                 BPF_MTAP(ifp, RL_CUR_TXMBUF(sc));
 1438 
 1439                 /* Transmit the frame. */
 1440                 bus_dmamap_create(sc->rl_tag, 0, &RL_CUR_DMAMAP(sc));
 1441                 bus_dmamap_load(sc->rl_tag, RL_CUR_DMAMAP(sc),
 1442                     mtod(RL_CUR_TXMBUF(sc), void *),
 1443                     RL_CUR_TXMBUF(sc)->m_pkthdr.len, rl_dma_map_txbuf, sc, 0);
 1444                 bus_dmamap_sync(sc->rl_tag, RL_CUR_DMAMAP(sc),
 1445                     BUS_DMASYNC_PREREAD);
 1446                 CSR_WRITE_4(sc, RL_CUR_TXSTAT(sc),
 1447                     RL_TXTHRESH(sc->rl_txthresh) |
 1448                     RL_CUR_TXMBUF(sc)->m_pkthdr.len);
 1449 
 1450                 RL_INC(sc->rl_cdata.cur_tx);
 1451 
 1452                 /* Set a timeout in case the chip goes out to lunch. */
 1453                 sc->rl_watchdog_timer = 5;
 1454         }
 1455 
 1456         /*
 1457          * We broke out of the loop because all our TX slots are
 1458          * full. Mark the NIC as busy until it drains some of the
 1459          * packets from the queue.
 1460          */
 1461         if (RL_CUR_TXMBUF(sc) != NULL)
 1462                 ifp->if_drv_flags |= IFF_DRV_OACTIVE;
 1463 }
 1464 
 1465 static void
 1466 rl_init(void *xsc)
 1467 {
 1468         struct rl_softc         *sc = xsc;
 1469 
 1470         RL_LOCK(sc);
 1471         rl_init_locked(sc);
 1472         RL_UNLOCK(sc);
 1473 }
 1474 
 1475 static void
 1476 rl_init_locked(struct rl_softc *sc)
 1477 {
 1478         struct ifnet            *ifp = sc->rl_ifp;
 1479         struct mii_data         *mii;
 1480         uint32_t                rxcfg = 0;
 1481         uint32_t                eaddr[2];
 1482 
 1483         RL_LOCK_ASSERT(sc);
 1484 
 1485         mii = device_get_softc(sc->rl_miibus);
 1486 
 1487         /*
 1488          * Cancel pending I/O and free all RX/TX buffers.
 1489          */
 1490         rl_stop(sc);
 1491 
 1492         /*
 1493          * Init our MAC address.  Even though the chipset
 1494          * documentation doesn't mention it, we need to enter "Config
 1495          * register write enable" mode to modify the ID registers.
 1496          */
 1497         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_WRITECFG);
 1498         bzero(eaddr, sizeof(eaddr));
 1499         bcopy(IF_LLADDR(sc->rl_ifp), eaddr, ETHER_ADDR_LEN);
 1500         CSR_WRITE_STREAM_4(sc, RL_IDR0, eaddr[0]);
 1501         CSR_WRITE_STREAM_4(sc, RL_IDR4, eaddr[1]);
 1502         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
 1503 
 1504         /* Init the RX buffer pointer register. */
 1505         bus_dmamap_load(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
 1506             sc->rl_cdata.rl_rx_buf, RL_RXBUFLEN, rl_dma_map_rxbuf, sc, 0);
 1507         bus_dmamap_sync(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
 1508             BUS_DMASYNC_PREWRITE);
 1509 
 1510         /* Init TX descriptors. */
 1511         rl_list_tx_init(sc);
 1512 
 1513         /*
 1514          * Enable transmit and receive.
 1515          */
 1516         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
 1517 
 1518         /*
 1519          * Set the initial TX and RX configuration.
 1520          */
 1521         CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
 1522         CSR_WRITE_4(sc, RL_RXCFG, RL_RXCFG_CONFIG);
 1523 
 1524         /* Set the individual bit to receive frames for this host only. */
 1525         rxcfg = CSR_READ_4(sc, RL_RXCFG);
 1526         rxcfg |= RL_RXCFG_RX_INDIV;
 1527 
 1528         /* If we want promiscuous mode, set the allframes bit. */
 1529         if (ifp->if_flags & IFF_PROMISC) {
 1530                 rxcfg |= RL_RXCFG_RX_ALLPHYS;
 1531                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
 1532         } else {
 1533                 rxcfg &= ~RL_RXCFG_RX_ALLPHYS;
 1534                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
 1535         }
 1536 
 1537         /* Set capture broadcast bit to capture broadcast frames. */
 1538         if (ifp->if_flags & IFF_BROADCAST) {
 1539                 rxcfg |= RL_RXCFG_RX_BROAD;
 1540                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
 1541         } else {
 1542                 rxcfg &= ~RL_RXCFG_RX_BROAD;
 1543                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
 1544         }
 1545 
 1546         /* Program the multicast filter, if necessary. */
 1547         rl_setmulti(sc);
 1548 
 1549 #ifdef DEVICE_POLLING
 1550         /* Disable interrupts if we are polling. */
 1551         if (ifp->if_capenable & IFCAP_POLLING)
 1552                 CSR_WRITE_2(sc, RL_IMR, 0);
 1553         else
 1554 #endif
 1555         /* Enable interrupts. */
 1556         CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
 1557 
 1558         /* Set initial TX threshold */
 1559         sc->rl_txthresh = RL_TX_THRESH_INIT;
 1560 
 1561         /* Start RX/TX process. */
 1562         CSR_WRITE_4(sc, RL_MISSEDPKT, 0);
 1563 
 1564         /* Enable receiver and transmitter. */
 1565         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
 1566 
 1567         mii_mediachg(mii);
 1568 
 1569         CSR_WRITE_1(sc, RL_CFG1, RL_CFG1_DRVLOAD|RL_CFG1_FULLDUPLEX);
 1570 
 1571         ifp->if_drv_flags |= IFF_DRV_RUNNING;
 1572         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
 1573 
 1574         callout_reset(&sc->rl_stat_callout, hz, rl_tick, sc);
 1575 }
 1576 
 1577 /*
 1578  * Set media options.
 1579  */
 1580 static int
 1581 rl_ifmedia_upd(struct ifnet *ifp)
 1582 {
 1583         struct rl_softc         *sc = ifp->if_softc;
 1584         struct mii_data         *mii;
 1585 
 1586         mii = device_get_softc(sc->rl_miibus);
 1587 
 1588         RL_LOCK(sc);
 1589         mii_mediachg(mii);
 1590         RL_UNLOCK(sc);
 1591 
 1592         return (0);
 1593 }
 1594 
 1595 /*
 1596  * Report current media status.
 1597  */
 1598 static void
 1599 rl_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
 1600 {
 1601         struct rl_softc         *sc = ifp->if_softc;
 1602         struct mii_data         *mii;
 1603 
 1604         mii = device_get_softc(sc->rl_miibus);
 1605 
 1606         RL_LOCK(sc);
 1607         mii_pollstat(mii);
 1608         RL_UNLOCK(sc);
 1609         ifmr->ifm_active = mii->mii_media_active;
 1610         ifmr->ifm_status = mii->mii_media_status;
 1611 }
 1612 
 1613 static int
 1614 rl_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
 1615 {
 1616         struct ifreq            *ifr = (struct ifreq *)data;
 1617         struct mii_data         *mii;
 1618         struct rl_softc         *sc = ifp->if_softc;
 1619         int                     error = 0;
 1620 
 1621         switch (command) {
 1622         case SIOCSIFFLAGS:
 1623                 RL_LOCK(sc);
 1624                 if (ifp->if_flags & IFF_UP) {
 1625                         rl_init_locked(sc);
 1626                 } else {
 1627                         if (ifp->if_drv_flags & IFF_DRV_RUNNING)
 1628                                 rl_stop(sc);
 1629                 }
 1630                 RL_UNLOCK(sc);
 1631                 error = 0;
 1632                 break;
 1633         case SIOCADDMULTI:
 1634         case SIOCDELMULTI:
 1635                 RL_LOCK(sc);
 1636                 rl_setmulti(sc);
 1637                 RL_UNLOCK(sc);
 1638                 error = 0;
 1639                 break;
 1640         case SIOCGIFMEDIA:
 1641         case SIOCSIFMEDIA:
 1642                 mii = device_get_softc(sc->rl_miibus);
 1643                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
 1644                 break;
 1645         case SIOCSIFCAP:
 1646 #ifdef DEVICE_POLLING
 1647                 if (ifr->ifr_reqcap & IFCAP_POLLING &&
 1648                     !(ifp->if_capenable & IFCAP_POLLING)) {
 1649                         error = ether_poll_register(rl_poll, ifp);
 1650                         if (error)
 1651                                 return(error);
 1652                         RL_LOCK(sc);
 1653                         /* Disable interrupts */
 1654                         CSR_WRITE_2(sc, RL_IMR, 0x0000);
 1655                         ifp->if_capenable |= IFCAP_POLLING;
 1656                         RL_UNLOCK(sc);
 1657                         return (error);
 1658                         
 1659                 }
 1660                 if (!(ifr->ifr_reqcap & IFCAP_POLLING) &&
 1661                     ifp->if_capenable & IFCAP_POLLING) {
 1662                         error = ether_poll_deregister(ifp);
 1663                         /* Enable interrupts. */
 1664                         RL_LOCK(sc);
 1665                         CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
 1666                         ifp->if_capenable &= ~IFCAP_POLLING;
 1667                         RL_UNLOCK(sc);
 1668                         return (error);
 1669                 }
 1670 #endif /* DEVICE_POLLING */
 1671                 break;
 1672         default:
 1673                 error = ether_ioctl(ifp, command, data);
 1674                 break;
 1675         }
 1676 
 1677         return (error);
 1678 }
 1679 
 1680 static void
 1681 rl_watchdog(struct rl_softc *sc)
 1682 {
 1683 
 1684         RL_LOCK_ASSERT(sc);
 1685 
 1686         if (sc->rl_watchdog_timer == 0 || --sc->rl_watchdog_timer >0)
 1687                 return;
 1688 
 1689         device_printf(sc->rl_dev, "watchdog timeout\n");
 1690         sc->rl_ifp->if_oerrors++;
 1691 
 1692         rl_txeof(sc);
 1693         rl_rxeof(sc);
 1694         rl_init_locked(sc);
 1695 }
 1696 
 1697 /*
 1698  * Stop the adapter and free any mbufs allocated to the
 1699  * RX and TX lists.
 1700  */
 1701 static void
 1702 rl_stop(struct rl_softc *sc)
 1703 {
 1704         register int            i;
 1705         struct ifnet            *ifp = sc->rl_ifp;
 1706 
 1707         RL_LOCK_ASSERT(sc);
 1708 
 1709         sc->rl_watchdog_timer = 0;
 1710         callout_stop(&sc->rl_stat_callout);
 1711         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
 1712 
 1713         CSR_WRITE_1(sc, RL_COMMAND, 0x00);
 1714         CSR_WRITE_2(sc, RL_IMR, 0x0000);
 1715         bus_dmamap_unload(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap);
 1716 
 1717         /*
 1718          * Free the TX list buffers.
 1719          */
 1720         for (i = 0; i < RL_TX_LIST_CNT; i++) {
 1721                 if (sc->rl_cdata.rl_tx_chain[i] != NULL) {
 1722                         bus_dmamap_unload(sc->rl_tag,
 1723                             sc->rl_cdata.rl_tx_dmamap[i]);
 1724                         bus_dmamap_destroy(sc->rl_tag,
 1725                             sc->rl_cdata.rl_tx_dmamap[i]);
 1726                         m_freem(sc->rl_cdata.rl_tx_chain[i]);
 1727                         sc->rl_cdata.rl_tx_chain[i] = NULL;
 1728                         CSR_WRITE_4(sc, RL_TXADDR0 + (i * sizeof(uint32_t)),
 1729                             0x0000000);
 1730                 }
 1731         }
 1732 }
 1733 
 1734 /*
 1735  * Device suspend routine.  Stop the interface and save some PCI
 1736  * settings in case the BIOS doesn't restore them properly on
 1737  * resume.
 1738  */
 1739 static int
 1740 rl_suspend(device_t dev)
 1741 {
 1742         struct rl_softc         *sc;
 1743 
 1744         sc = device_get_softc(dev);
 1745 
 1746         RL_LOCK(sc);
 1747         rl_stop(sc);
 1748         sc->suspended = 1;
 1749         RL_UNLOCK(sc);
 1750 
 1751         return (0);
 1752 }
 1753 
 1754 /*
 1755  * Device resume routine.  Restore some PCI settings in case the BIOS
 1756  * doesn't, re-enable busmastering, and restart the interface if
 1757  * appropriate.
 1758  */
 1759 static int
 1760 rl_resume(device_t dev)
 1761 {
 1762         struct rl_softc         *sc;
 1763         struct ifnet            *ifp;
 1764 
 1765         sc = device_get_softc(dev);
 1766         ifp = sc->rl_ifp;
 1767 
 1768         RL_LOCK(sc);
 1769 
 1770         /* reinitialize interface if necessary */
 1771         if (ifp->if_flags & IFF_UP)
 1772                 rl_init_locked(sc);
 1773 
 1774         sc->suspended = 0;
 1775 
 1776         RL_UNLOCK(sc);
 1777 
 1778         return (0);
 1779 }
 1780 
 1781 /*
 1782  * Stop all chip I/O so that the kernel's probe routines don't
 1783  * get confused by errant DMAs when rebooting.
 1784  */
 1785 static int
 1786 rl_shutdown(device_t dev)
 1787 {
 1788         struct rl_softc         *sc;
 1789 
 1790         sc = device_get_softc(dev);
 1791 
 1792         RL_LOCK(sc);
 1793         rl_stop(sc);
 1794         RL_UNLOCK(sc);
 1795 
 1796         return (0);
 1797 }

Cache object: b214d46b39e2ca6524340cd063c8065b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.