Home | History | Annotate | Line # | Download | only in pci
if_vr.c revision 1.32
      1  1.32   thorpej /*	$NetBSD: if_vr.c,v 1.32 2000/02/02 17:09:41 thorpej Exp $	*/
      2  1.18   thorpej 
      3  1.18   thorpej /*-
      4  1.18   thorpej  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
      5  1.18   thorpej  * All rights reserved.
      6  1.18   thorpej  *
      7  1.18   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.18   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.18   thorpej  * NASA Ames Research Center.
     10  1.18   thorpej  *
     11  1.18   thorpej  * Redistribution and use in source and binary forms, with or without
     12  1.18   thorpej  * modification, are permitted provided that the following conditions
     13  1.18   thorpej  * are met:
     14  1.18   thorpej  * 1. Redistributions of source code must retain the above copyright
     15  1.18   thorpej  *    notice, this list of conditions and the following disclaimer.
     16  1.18   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.18   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18  1.18   thorpej  *    documentation and/or other materials provided with the distribution.
     19  1.18   thorpej  * 3. All advertising materials mentioning features or use of this software
     20  1.18   thorpej  *    must display the following acknowledgement:
     21  1.18   thorpej  *	This product includes software developed by the NetBSD
     22  1.18   thorpej  *	Foundation, Inc. and its contributors.
     23  1.18   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.18   thorpej  *    contributors may be used to endorse or promote products derived
     25  1.18   thorpej  *    from this software without specific prior written permission.
     26  1.18   thorpej  *
     27  1.18   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.18   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.18   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.18   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.18   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.18   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.18   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.18   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.18   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.18   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.18   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38  1.18   thorpej  */
     39   1.2  sakamoto 
     40   1.1  sakamoto /*
     41   1.1  sakamoto  * Copyright (c) 1997, 1998
     42   1.1  sakamoto  *	Bill Paul <wpaul (at) ctr.columbia.edu>.  All rights reserved.
     43   1.1  sakamoto  *
     44   1.1  sakamoto  * Redistribution and use in source and binary forms, with or without
     45   1.1  sakamoto  * modification, are permitted provided that the following conditions
     46   1.1  sakamoto  * are met:
     47   1.1  sakamoto  * 1. Redistributions of source code must retain the above copyright
     48   1.1  sakamoto  *    notice, this list of conditions and the following disclaimer.
     49   1.1  sakamoto  * 2. Redistributions in binary form must reproduce the above copyright
     50   1.1  sakamoto  *    notice, this list of conditions and the following disclaimer in the
     51   1.1  sakamoto  *    documentation and/or other materials provided with the distribution.
     52   1.1  sakamoto  * 3. All advertising materials mentioning features or use of this software
     53   1.1  sakamoto  *    must display the following acknowledgement:
     54   1.1  sakamoto  *	This product includes software developed by Bill Paul.
     55   1.1  sakamoto  * 4. Neither the name of the author nor the names of any co-contributors
     56   1.1  sakamoto  *    may be used to endorse or promote products derived from this software
     57   1.1  sakamoto  *    without specific prior written permission.
     58   1.1  sakamoto  *
     59   1.1  sakamoto  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     60   1.1  sakamoto  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     61   1.1  sakamoto  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     62   1.1  sakamoto  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
     63   1.1  sakamoto  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     64   1.1  sakamoto  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     65   1.1  sakamoto  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     66   1.1  sakamoto  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     67   1.1  sakamoto  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     68   1.1  sakamoto  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     69   1.1  sakamoto  * THE POSSIBILITY OF SUCH DAMAGE.
     70   1.1  sakamoto  *
     71   1.2  sakamoto  *	$FreeBSD: if_vr.c,v 1.7 1999/01/10 18:51:49 wpaul Exp $
     72   1.1  sakamoto  */
     73   1.1  sakamoto 
     74   1.1  sakamoto /*
     75   1.1  sakamoto  * VIA Rhine fast ethernet PCI NIC driver
     76   1.1  sakamoto  *
     77   1.1  sakamoto  * Supports various network adapters based on the VIA Rhine
     78   1.1  sakamoto  * and Rhine II PCI controllers, including the D-Link DFE530TX.
     79   1.1  sakamoto  * Datasheets are available at http://www.via.com.tw.
     80   1.1  sakamoto  *
     81   1.1  sakamoto  * Written by Bill Paul <wpaul (at) ctr.columbia.edu>
     82   1.1  sakamoto  * Electrical Engineering Department
     83   1.1  sakamoto  * Columbia University, New York City
     84   1.1  sakamoto  */
     85   1.1  sakamoto 
     86   1.1  sakamoto /*
     87   1.1  sakamoto  * The VIA Rhine controllers are similar in some respects to the
     88   1.1  sakamoto  * the DEC tulip chips, except less complicated. The controller
     89   1.1  sakamoto  * uses an MII bus and an external physical layer interface. The
     90   1.1  sakamoto  * receiver has a one entry perfect filter and a 64-bit hash table
     91   1.1  sakamoto  * multicast filter. Transmit and receive descriptors are similar
     92   1.1  sakamoto  * to the tulip.
     93   1.1  sakamoto  *
     94   1.1  sakamoto  * The Rhine has a serious flaw in its transmit DMA mechanism:
     95   1.1  sakamoto  * transmit buffers must be longword aligned. Unfortunately,
     96  1.17   thorpej  * the kernel doesn't guarantee that mbufs will be filled in starting
     97   1.1  sakamoto  * at longword boundaries, so we have to do a buffer copy before
     98   1.1  sakamoto  * transmission.
     99  1.17   thorpej  *
    100  1.17   thorpej  * Apparently, the receive DMA mechanism also has the same flaw.  This
    101  1.17   thorpej  * means that on systems with struct alignment requirements, incoming
    102  1.17   thorpej  * frames must be copied to a new buffer which shifts the data forward
    103  1.17   thorpej  * 2 bytes so that the payload is aligned on a 4-byte boundary.
    104   1.1  sakamoto  */
    105   1.1  sakamoto 
    106   1.2  sakamoto #include "opt_inet.h"
    107   1.1  sakamoto 
    108   1.1  sakamoto #include <sys/param.h>
    109   1.1  sakamoto #include <sys/systm.h>
    110   1.1  sakamoto #include <sys/sockio.h>
    111   1.1  sakamoto #include <sys/mbuf.h>
    112   1.1  sakamoto #include <sys/malloc.h>
    113   1.1  sakamoto #include <sys/kernel.h>
    114   1.1  sakamoto #include <sys/socket.h>
    115   1.6   thorpej #include <sys/device.h>
    116   1.1  sakamoto 
    117  1.18   thorpej #include <vm/vm.h>		/* for PAGE_SIZE */
    118  1.18   thorpej 
    119   1.1  sakamoto #include <net/if.h>
    120   1.1  sakamoto #include <net/if_arp.h>
    121   1.1  sakamoto #include <net/if_dl.h>
    122   1.1  sakamoto #include <net/if_media.h>
    123   1.2  sakamoto #include <net/if_ether.h>
    124   1.6   thorpej 
    125   1.2  sakamoto #if defined(INET)
    126   1.2  sakamoto #include <netinet/in.h>
    127   1.2  sakamoto #include <netinet/if_inarp.h>
    128   1.2  sakamoto #endif
    129   1.1  sakamoto 
    130   1.2  sakamoto #include "bpfilter.h"
    131   1.1  sakamoto #if NBPFILTER > 0
    132   1.1  sakamoto #include <net/bpf.h>
    133   1.1  sakamoto #endif
    134   1.1  sakamoto 
    135   1.1  sakamoto #include <machine/bus.h>
    136   1.6   thorpej #include <machine/intr.h>
    137  1.30   thorpej #include <machine/endian.h>
    138   1.1  sakamoto 
    139  1.10   thorpej #include <dev/mii/mii.h>
    140  1.11   thorpej #include <dev/mii/miivar.h>
    141  1.29   thorpej #include <dev/mii/mii_bitbang.h>
    142  1.10   thorpej 
    143   1.2  sakamoto #include <dev/pci/pcireg.h>
    144   1.2  sakamoto #include <dev/pci/pcivar.h>
    145   1.8   thorpej #include <dev/pci/pcidevs.h>
    146   1.8   thorpej 
    147   1.2  sakamoto #include <dev/pci/if_vrreg.h>
    148   1.1  sakamoto 
    149   1.2  sakamoto #define	VR_USEIOSPACE
    150   1.1  sakamoto 
    151   1.1  sakamoto /*
    152   1.1  sakamoto  * Various supported device vendors/types and their names.
    153   1.1  sakamoto  */
    154   1.7   thorpej static struct vr_type {
    155   1.7   thorpej 	pci_vendor_id_t		vr_vid;
    156   1.7   thorpej 	pci_product_id_t	vr_did;
    157   1.7   thorpej 	const char		*vr_name;
    158   1.7   thorpej } vr_devs[] = {
    159   1.8   thorpej 	{ PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3043,
    160  1.24       hwr 		"VIA VT3043 (Rhine) 10/100" },
    161   1.8   thorpej 	{ PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT86C100A,
    162  1.24       hwr 		"VIA VT86C100A (Rhine-II) 10/100" },
    163   1.1  sakamoto 	{ 0, 0, NULL }
    164   1.1  sakamoto };
    165   1.1  sakamoto 
    166  1.18   thorpej /*
    167  1.18   thorpej  * Transmit descriptor list size.
    168  1.18   thorpej  */
    169  1.18   thorpej #define	VR_NTXDESC		64
    170  1.18   thorpej #define	VR_NTXDESC_MASK		(VR_NTXDESC - 1)
    171  1.18   thorpej #define	VR_NEXTTX(x)		(((x) + 1) & VR_NTXDESC_MASK)
    172  1.18   thorpej 
    173  1.18   thorpej /*
    174  1.18   thorpej  * Receive descriptor list size.
    175  1.18   thorpej  */
    176  1.18   thorpej #define	VR_NRXDESC		64
    177  1.18   thorpej #define	VR_NRXDESC_MASK		(VR_NRXDESC - 1)
    178  1.18   thorpej #define	VR_NEXTRX(x)		(((x) + 1) & VR_NRXDESC_MASK)
    179   1.7   thorpej 
    180  1.18   thorpej /*
    181  1.18   thorpej  * Control data structres that are DMA'd to the Rhine chip.  We allocate
    182  1.18   thorpej  * them in a single clump that maps to a single DMA segment to make several
    183  1.18   thorpej  * things easier.
    184  1.18   thorpej  *
    185  1.18   thorpej  * Note that since we always copy outgoing packets to aligned transmit
    186  1.18   thorpej  * buffers, we can reduce the transmit descriptors to one per packet.
    187  1.18   thorpej  */
    188  1.18   thorpej struct vr_control_data {
    189  1.18   thorpej 	struct vr_desc		vr_txdescs[VR_NTXDESC];
    190  1.18   thorpej 	struct vr_desc		vr_rxdescs[VR_NRXDESC];
    191   1.7   thorpej };
    192   1.7   thorpej 
    193  1.18   thorpej #define	VR_CDOFF(x)		offsetof(struct vr_control_data, x)
    194  1.18   thorpej #define	VR_CDTXOFF(x)		VR_CDOFF(vr_txdescs[(x)])
    195  1.18   thorpej #define	VR_CDRXOFF(x)		VR_CDOFF(vr_rxdescs[(x)])
    196   1.7   thorpej 
    197  1.18   thorpej /*
    198  1.18   thorpej  * Software state of transmit and receive descriptors.
    199  1.18   thorpej  */
    200  1.18   thorpej struct vr_descsoft {
    201  1.18   thorpej 	struct mbuf		*ds_mbuf;	/* head of mbuf chain */
    202  1.18   thorpej 	bus_dmamap_t		ds_dmamap;	/* our DMA map */
    203   1.7   thorpej };
    204   1.7   thorpej 
    205   1.7   thorpej struct vr_softc {
    206  1.14   thorpej 	struct device		vr_dev;		/* generic device glue */
    207  1.14   thorpej 	void			*vr_ih;		/* interrupt cookie */
    208  1.14   thorpej 	void			*vr_ats;	/* shutdown hook */
    209  1.14   thorpej 	bus_space_tag_t		vr_bst;		/* bus space tag */
    210  1.14   thorpej 	bus_space_handle_t	vr_bsh;		/* bus space handle */
    211  1.18   thorpej 	bus_dma_tag_t		vr_dmat;	/* bus DMA tag */
    212  1.14   thorpej 	pci_chipset_tag_t	vr_pc;		/* PCI chipset info */
    213  1.14   thorpej 	struct ethercom		vr_ec;		/* Ethernet common info */
    214   1.7   thorpej 	u_int8_t 		vr_enaddr[ETHER_ADDR_LEN];
    215  1.11   thorpej 	struct mii_data		vr_mii;		/* MII/media info */
    216  1.18   thorpej 
    217  1.18   thorpej 	bus_dmamap_t		vr_cddmamap;	/* control data DMA map */
    218  1.18   thorpej #define	vr_cddma	vr_cddmamap->dm_segs[0].ds_addr
    219  1.18   thorpej 
    220  1.18   thorpej 	/*
    221  1.18   thorpej 	 * Software state for transmit and receive descriptors.
    222  1.18   thorpej 	 */
    223  1.18   thorpej 	struct vr_descsoft	vr_txsoft[VR_NTXDESC];
    224  1.18   thorpej 	struct vr_descsoft	vr_rxsoft[VR_NRXDESC];
    225  1.18   thorpej 
    226  1.18   thorpej 	/*
    227  1.18   thorpej 	 * Control data structures.
    228  1.18   thorpej 	 */
    229  1.18   thorpej 	struct vr_control_data	*vr_control_data;
    230  1.18   thorpej 
    231  1.18   thorpej 	int	vr_txpending;		/* number of TX requests pending */
    232  1.18   thorpej 	int	vr_txdirty;		/* first dirty TX descriptor */
    233  1.18   thorpej 	int	vr_txlast;		/* last used TX descriptor */
    234  1.18   thorpej 
    235  1.18   thorpej 	int	vr_rxptr;		/* next ready RX descriptor */
    236   1.7   thorpej };
    237   1.7   thorpej 
    238  1.18   thorpej #define	VR_CDTXADDR(sc, x)	((sc)->vr_cddma + VR_CDTXOFF((x)))
    239  1.18   thorpej #define	VR_CDRXADDR(sc, x)	((sc)->vr_cddma + VR_CDRXOFF((x)))
    240  1.18   thorpej 
    241  1.18   thorpej #define	VR_CDTX(sc, x)		(&(sc)->vr_control_data->vr_txdescs[(x)])
    242  1.18   thorpej #define	VR_CDRX(sc, x)		(&(sc)->vr_control_data->vr_rxdescs[(x)])
    243  1.18   thorpej 
    244  1.18   thorpej #define	VR_DSTX(sc, x)		(&(sc)->vr_txsoft[(x)])
    245  1.18   thorpej #define	VR_DSRX(sc, x)		(&(sc)->vr_rxsoft[(x)])
    246  1.18   thorpej 
    247  1.18   thorpej #define	VR_CDTXSYNC(sc, x, ops)						\
    248  1.18   thorpej 	bus_dmamap_sync((sc)->vr_dmat, (sc)->vr_cddmamap,		\
    249  1.18   thorpej 	    VR_CDTXOFF((x)), sizeof(struct vr_desc), (ops))
    250  1.18   thorpej 
    251  1.18   thorpej #define	VR_CDRXSYNC(sc, x, ops)						\
    252  1.18   thorpej 	bus_dmamap_sync((sc)->vr_dmat, (sc)->vr_cddmamap,		\
    253  1.18   thorpej 	    VR_CDRXOFF((x)), sizeof(struct vr_desc), (ops))
    254  1.18   thorpej 
    255  1.18   thorpej /*
    256  1.18   thorpej  * Note we rely on MCLBYTES being a power of two below.
    257  1.18   thorpej  */
    258  1.18   thorpej #define	VR_INIT_RXDESC(sc, i)						\
    259  1.18   thorpej do {									\
    260  1.18   thorpej 	struct vr_desc *__d = VR_CDRX((sc), (i));			\
    261  1.18   thorpej 	struct vr_descsoft *__ds = VR_DSRX((sc), (i));			\
    262  1.18   thorpej 									\
    263  1.30   thorpej 	__d->vr_next = htole32(VR_CDRXADDR((sc), VR_NEXTRX((i))));	\
    264  1.30   thorpej 	__d->vr_status = htole32(VR_RXSTAT_FIRSTFRAG |			\
    265  1.21   thorpej 	    VR_RXSTAT_LASTFRAG | VR_RXSTAT_OWN);			\
    266  1.30   thorpej 	__d->vr_data = htole32(__ds->ds_dmamap->dm_segs[0].ds_addr);	\
    267  1.30   thorpej 	__d->vr_ctl = htole32(VR_RXCTL_CHAIN | VR_RXCTL_RX_INTR |	\
    268  1.21   thorpej 	    ((MCLBYTES - 1) & VR_RXCTL_BUFLEN));			\
    269  1.18   thorpej 	VR_CDRXSYNC((sc), (i), BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
    270  1.18   thorpej } while (0)
    271  1.18   thorpej 
    272   1.7   thorpej /*
    273   1.7   thorpej  * register space access macros
    274   1.7   thorpej  */
    275  1.18   thorpej #define	CSR_WRITE_4(sc, reg, val)					\
    276  1.14   thorpej 	bus_space_write_4(sc->vr_bst, sc->vr_bsh, reg, val)
    277  1.18   thorpej #define	CSR_WRITE_2(sc, reg, val)					\
    278  1.14   thorpej 	bus_space_write_2(sc->vr_bst, sc->vr_bsh, reg, val)
    279  1.18   thorpej #define	CSR_WRITE_1(sc, reg, val)					\
    280  1.14   thorpej 	bus_space_write_1(sc->vr_bst, sc->vr_bsh, reg, val)
    281   1.7   thorpej 
    282  1.18   thorpej #define	CSR_READ_4(sc, reg)						\
    283  1.14   thorpej 	bus_space_read_4(sc->vr_bst, sc->vr_bsh, reg)
    284  1.18   thorpej #define	CSR_READ_2(sc, reg)						\
    285  1.14   thorpej 	bus_space_read_2(sc->vr_bst, sc->vr_bsh, reg)
    286  1.18   thorpej #define	CSR_READ_1(sc, reg)						\
    287  1.14   thorpej 	bus_space_read_1(sc->vr_bst, sc->vr_bsh, reg)
    288   1.7   thorpej 
    289   1.7   thorpej #define	VR_TIMEOUT		1000
    290   1.1  sakamoto 
    291  1.18   thorpej static int vr_add_rxbuf		__P((struct vr_softc *, int));
    292   1.1  sakamoto 
    293   1.1  sakamoto static void vr_rxeof		__P((struct vr_softc *));
    294   1.1  sakamoto static void vr_rxeoc		__P((struct vr_softc *));
    295   1.1  sakamoto static void vr_txeof		__P((struct vr_softc *));
    296  1.16   thorpej static int vr_intr		__P((void *));
    297   1.1  sakamoto static void vr_start		__P((struct ifnet *));
    298   1.1  sakamoto static int vr_ioctl		__P((struct ifnet *, u_long, caddr_t));
    299  1.23   thorpej static int vr_init		__P((struct vr_softc *));
    300  1.23   thorpej static void vr_stop		__P((struct vr_softc *, int));
    301  1.23   thorpej static void vr_rxdrain		__P((struct vr_softc *));
    302   1.1  sakamoto static void vr_watchdog		__P((struct ifnet *));
    303  1.11   thorpej static void vr_tick		__P((void *));
    304  1.11   thorpej 
    305   1.1  sakamoto static int vr_ifmedia_upd	__P((struct ifnet *));
    306   1.1  sakamoto static void vr_ifmedia_sts	__P((struct ifnet *, struct ifmediareq *));
    307   1.1  sakamoto 
    308  1.11   thorpej static int vr_mii_readreg	__P((struct device *, int, int));
    309  1.11   thorpej static void vr_mii_writereg	__P((struct device *, int, int, int));
    310  1.11   thorpej static void vr_mii_statchg	__P((struct device *));
    311  1.11   thorpej 
    312   1.1  sakamoto static u_int8_t vr_calchash	__P((u_int8_t *));
    313   1.1  sakamoto static void vr_setmulti		__P((struct vr_softc *));
    314   1.1  sakamoto static void vr_reset		__P((struct vr_softc *));
    315   1.1  sakamoto 
    316  1.23   thorpej int	vr_copy_small = 0;
    317  1.23   thorpej 
    318   1.2  sakamoto #define	VR_SETBIT(sc, reg, x)				\
    319   1.1  sakamoto 	CSR_WRITE_1(sc, reg,				\
    320   1.1  sakamoto 		CSR_READ_1(sc, reg) | x)
    321   1.1  sakamoto 
    322   1.2  sakamoto #define	VR_CLRBIT(sc, reg, x)				\
    323   1.1  sakamoto 	CSR_WRITE_1(sc, reg,				\
    324   1.1  sakamoto 		CSR_READ_1(sc, reg) & ~x)
    325   1.1  sakamoto 
    326   1.2  sakamoto #define	VR_SETBIT16(sc, reg, x)				\
    327   1.1  sakamoto 	CSR_WRITE_2(sc, reg,				\
    328   1.1  sakamoto 		CSR_READ_2(sc, reg) | x)
    329   1.1  sakamoto 
    330   1.2  sakamoto #define	VR_CLRBIT16(sc, reg, x)				\
    331   1.1  sakamoto 	CSR_WRITE_2(sc, reg,				\
    332   1.1  sakamoto 		CSR_READ_2(sc, reg) & ~x)
    333   1.1  sakamoto 
    334   1.2  sakamoto #define	VR_SETBIT32(sc, reg, x)				\
    335   1.1  sakamoto 	CSR_WRITE_4(sc, reg,				\
    336   1.1  sakamoto 		CSR_READ_4(sc, reg) | x)
    337   1.1  sakamoto 
    338   1.2  sakamoto #define	VR_CLRBIT32(sc, reg, x)				\
    339   1.1  sakamoto 	CSR_WRITE_4(sc, reg,				\
    340   1.1  sakamoto 		CSR_READ_4(sc, reg) & ~x)
    341   1.1  sakamoto 
    342  1.29   thorpej /*
    343  1.29   thorpej  * MII bit-bang glue.
    344  1.29   thorpej  */
    345  1.29   thorpej u_int32_t vr_mii_bitbang_read __P((struct device *));
    346  1.29   thorpej void vr_mii_bitbang_write __P((struct device *, u_int32_t));
    347   1.1  sakamoto 
    348  1.29   thorpej const struct mii_bitbang_ops vr_mii_bitbang_ops = {
    349  1.29   thorpej 	vr_mii_bitbang_read,
    350  1.29   thorpej 	vr_mii_bitbang_write,
    351  1.29   thorpej 	{
    352  1.29   thorpej 		VR_MIICMD_DATAOUT,	/* MII_BIT_MDO */
    353  1.29   thorpej 		VR_MIICMD_DATAIN,	/* MII_BIT_MDI */
    354  1.29   thorpej 		VR_MIICMD_CLK,		/* MII_BIT_MDC */
    355  1.29   thorpej 		VR_MIICMD_DIR,		/* MII_BIT_DIR_HOST_PHY */
    356  1.29   thorpej 		0,			/* MII_BIT_DIR_PHY_HOST */
    357  1.29   thorpej 	}
    358  1.29   thorpej };
    359   1.1  sakamoto 
    360  1.29   thorpej u_int32_t
    361  1.29   thorpej vr_mii_bitbang_read(self)
    362  1.29   thorpej 	struct device *self;
    363   1.1  sakamoto {
    364  1.29   thorpej 	struct vr_softc *sc = (void *) self;
    365   1.1  sakamoto 
    366  1.29   thorpej 	return (CSR_READ_1(sc, VR_MIICMD));
    367   1.1  sakamoto }
    368   1.1  sakamoto 
    369  1.29   thorpej void
    370  1.29   thorpej vr_mii_bitbang_write(self, val)
    371  1.29   thorpej 	struct device *self;
    372  1.29   thorpej 	u_int32_t val;
    373   1.1  sakamoto {
    374  1.29   thorpej 	struct vr_softc *sc = (void *) self;
    375   1.1  sakamoto 
    376  1.29   thorpej 	CSR_WRITE_1(sc, VR_MIICMD, (val & 0xff) | VR_MIICMD_DIRECTPGM);
    377   1.1  sakamoto }
    378   1.1  sakamoto 
    379   1.1  sakamoto /*
    380   1.1  sakamoto  * Read an PHY register through the MII.
    381   1.1  sakamoto  */
    382  1.15   thorpej static int
    383  1.15   thorpej vr_mii_readreg(self, phy, reg)
    384  1.11   thorpej 	struct device *self;
    385  1.11   thorpej 	int phy, reg;
    386   1.1  sakamoto {
    387  1.29   thorpej 	struct vr_softc *sc = (void *) self;
    388   1.1  sakamoto 
    389  1.29   thorpej 	CSR_WRITE_1(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM);
    390  1.29   thorpej 	return (mii_bitbang_readreg(self, &vr_mii_bitbang_ops, phy, reg));
    391   1.1  sakamoto }
    392   1.1  sakamoto 
    393   1.1  sakamoto /*
    394   1.1  sakamoto  * Write to a PHY register through the MII.
    395   1.1  sakamoto  */
    396  1.15   thorpej static void
    397  1.15   thorpej vr_mii_writereg(self, phy, reg, val)
    398  1.11   thorpej 	struct device *self;
    399  1.11   thorpej 	int phy, reg, val;
    400   1.1  sakamoto {
    401  1.29   thorpej 	struct vr_softc *sc = (void *) self;
    402   1.1  sakamoto 
    403  1.29   thorpej 	CSR_WRITE_1(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM);
    404  1.29   thorpej 	mii_bitbang_writereg(self, &vr_mii_bitbang_ops, phy, reg, val);
    405   1.1  sakamoto }
    406   1.1  sakamoto 
    407  1.15   thorpej static void
    408  1.15   thorpej vr_mii_statchg(self)
    409  1.11   thorpej 	struct device *self;
    410   1.1  sakamoto {
    411  1.11   thorpej 	struct vr_softc *sc = (struct vr_softc *)self;
    412   1.1  sakamoto 
    413  1.11   thorpej 	/*
    414  1.11   thorpej 	 * In order to fiddle with the 'full-duplex' bit in the netconfig
    415  1.11   thorpej 	 * register, we first have to put the transmit and/or receive logic
    416  1.11   thorpej 	 * in the idle state.
    417  1.11   thorpej 	 */
    418  1.18   thorpej 	VR_CLRBIT16(sc, VR_COMMAND, (VR_CMD_TX_ON|VR_CMD_RX_ON));
    419   1.1  sakamoto 
    420  1.11   thorpej 	if (sc->vr_mii.mii_media_active & IFM_FDX)
    421  1.11   thorpej 		VR_SETBIT16(sc, VR_COMMAND, VR_CMD_FULLDUPLEX);
    422  1.11   thorpej 	else
    423  1.11   thorpej 		VR_CLRBIT16(sc, VR_COMMAND, VR_CMD_FULLDUPLEX);
    424   1.1  sakamoto 
    425  1.18   thorpej 	if (sc->vr_ec.ec_if.if_flags & IFF_RUNNING)
    426  1.11   thorpej 		VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_ON|VR_CMD_RX_ON);
    427   1.1  sakamoto 
    428  1.11   thorpej 	/* XXX Update ifp->if_baudrate */
    429   1.1  sakamoto }
    430   1.1  sakamoto 
    431   1.1  sakamoto /*
    432   1.1  sakamoto  * Calculate CRC of a multicast group address, return the lower 6 bits.
    433   1.1  sakamoto  */
    434  1.15   thorpej static u_int8_t
    435  1.15   thorpej vr_calchash(addr)
    436  1.15   thorpej 	u_int8_t *addr;
    437  1.15   thorpej {
    438  1.15   thorpej 	u_int32_t crc, carry;
    439  1.15   thorpej 	int i, j;
    440  1.15   thorpej 	u_int8_t c;
    441   1.1  sakamoto 
    442   1.1  sakamoto 	/* Compute CRC for the address value. */
    443   1.1  sakamoto 	crc = 0xFFFFFFFF; /* initial value */
    444   1.1  sakamoto 
    445   1.1  sakamoto 	for (i = 0; i < 6; i++) {
    446   1.1  sakamoto 		c = *(addr + i);
    447   1.1  sakamoto 		for (j = 0; j < 8; j++) {
    448   1.1  sakamoto 			carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
    449   1.1  sakamoto 			crc <<= 1;
    450   1.1  sakamoto 			c >>= 1;
    451   1.1  sakamoto 			if (carry)
    452   1.1  sakamoto 				crc = (crc ^ 0x04c11db6) | carry;
    453   1.1  sakamoto 		}
    454   1.1  sakamoto 	}
    455   1.1  sakamoto 
    456   1.1  sakamoto 	/* return the filter bit position */
    457   1.2  sakamoto 	return ((crc >> 26) & 0x0000003F);
    458   1.1  sakamoto }
    459   1.1  sakamoto 
    460   1.1  sakamoto /*
    461   1.1  sakamoto  * Program the 64-bit multicast hash filter.
    462   1.1  sakamoto  */
    463  1.15   thorpej static void
    464  1.15   thorpej vr_setmulti(sc)
    465  1.15   thorpej 	struct vr_softc *sc;
    466   1.1  sakamoto {
    467  1.15   thorpej 	struct ifnet *ifp;
    468  1.15   thorpej 	int h = 0;
    469  1.15   thorpej 	u_int32_t hashes[2] = { 0, 0 };
    470  1.15   thorpej 	struct ether_multistep step;
    471  1.15   thorpej 	struct ether_multi *enm;
    472  1.15   thorpej 	int mcnt = 0;
    473  1.15   thorpej 	u_int8_t rxfilt;
    474   1.1  sakamoto 
    475   1.6   thorpej 	ifp = &sc->vr_ec.ec_if;
    476   1.1  sakamoto 
    477   1.1  sakamoto 	rxfilt = CSR_READ_1(sc, VR_RXCFG);
    478   1.1  sakamoto 
    479   1.1  sakamoto 	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
    480   1.1  sakamoto 		rxfilt |= VR_RXCFG_RX_MULTI;
    481   1.1  sakamoto 		CSR_WRITE_1(sc, VR_RXCFG, rxfilt);
    482   1.1  sakamoto 		CSR_WRITE_4(sc, VR_MAR0, 0xFFFFFFFF);
    483   1.1  sakamoto 		CSR_WRITE_4(sc, VR_MAR1, 0xFFFFFFFF);
    484   1.1  sakamoto 		return;
    485   1.1  sakamoto 	}
    486   1.1  sakamoto 
    487   1.1  sakamoto 	/* first, zot all the existing hash bits */
    488   1.1  sakamoto 	CSR_WRITE_4(sc, VR_MAR0, 0);
    489   1.1  sakamoto 	CSR_WRITE_4(sc, VR_MAR1, 0);
    490   1.1  sakamoto 
    491   1.1  sakamoto 	/* now program new ones */
    492   1.2  sakamoto 	ETHER_FIRST_MULTI(step, &sc->vr_ec, enm);
    493   1.2  sakamoto 	while (enm != NULL) {
    494   1.2  sakamoto 		if (memcmp(enm->enm_addrlo, enm->enm_addrhi, 6) != 0)
    495   1.2  sakamoto 			continue;
    496   1.2  sakamoto 
    497   1.2  sakamoto 		h = vr_calchash(enm->enm_addrlo);
    498   1.2  sakamoto 
    499   1.1  sakamoto 		if (h < 32)
    500   1.1  sakamoto 			hashes[0] |= (1 << h);
    501   1.1  sakamoto 		else
    502   1.1  sakamoto 			hashes[1] |= (1 << (h - 32));
    503   1.2  sakamoto 		ETHER_NEXT_MULTI(step, enm);
    504   1.1  sakamoto 		mcnt++;
    505   1.1  sakamoto 	}
    506   1.1  sakamoto 
    507   1.1  sakamoto 	if (mcnt)
    508   1.1  sakamoto 		rxfilt |= VR_RXCFG_RX_MULTI;
    509   1.1  sakamoto 	else
    510   1.1  sakamoto 		rxfilt &= ~VR_RXCFG_RX_MULTI;
    511   1.1  sakamoto 
    512   1.1  sakamoto 	CSR_WRITE_4(sc, VR_MAR0, hashes[0]);
    513   1.1  sakamoto 	CSR_WRITE_4(sc, VR_MAR1, hashes[1]);
    514   1.1  sakamoto 	CSR_WRITE_1(sc, VR_RXCFG, rxfilt);
    515   1.1  sakamoto }
    516   1.1  sakamoto 
    517  1.15   thorpej static void
    518  1.15   thorpej vr_reset(sc)
    519  1.15   thorpej 	struct vr_softc *sc;
    520   1.1  sakamoto {
    521  1.15   thorpej 	int i;
    522   1.1  sakamoto 
    523   1.1  sakamoto 	VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RESET);
    524   1.1  sakamoto 
    525   1.1  sakamoto 	for (i = 0; i < VR_TIMEOUT; i++) {
    526   1.1  sakamoto 		DELAY(10);
    527   1.1  sakamoto 		if (!(CSR_READ_2(sc, VR_COMMAND) & VR_CMD_RESET))
    528   1.1  sakamoto 			break;
    529   1.1  sakamoto 	}
    530   1.1  sakamoto 	if (i == VR_TIMEOUT)
    531   1.6   thorpej 		printf("%s: reset never completed!\n",
    532   1.6   thorpej 			sc->vr_dev.dv_xname);
    533   1.1  sakamoto 
    534   1.1  sakamoto 	/* Wait a little while for the chip to get its brains in order. */
    535   1.1  sakamoto 	DELAY(1000);
    536   1.1  sakamoto }
    537   1.1  sakamoto 
    538   1.1  sakamoto /*
    539   1.1  sakamoto  * Initialize an RX descriptor and attach an MBUF cluster.
    540   1.1  sakamoto  * Note: the length fields are only 11 bits wide, which means the
    541   1.1  sakamoto  * largest size we can specify is 2047. This is important because
    542   1.1  sakamoto  * MCLBYTES is 2048, so we have to subtract one otherwise we'll
    543   1.1  sakamoto  * overflow the field and make a mess.
    544   1.1  sakamoto  */
    545  1.15   thorpej static int
    546  1.18   thorpej vr_add_rxbuf(sc, i)
    547  1.15   thorpej 	struct vr_softc *sc;
    548  1.18   thorpej 	int i;
    549   1.1  sakamoto {
    550  1.18   thorpej 	struct vr_descsoft *ds = VR_DSRX(sc, i);
    551  1.18   thorpej 	struct mbuf *m_new;
    552  1.18   thorpej 	int error;
    553   1.1  sakamoto 
    554   1.1  sakamoto 	MGETHDR(m_new, M_DONTWAIT, MT_DATA);
    555  1.18   thorpej 	if (m_new == NULL)
    556   1.2  sakamoto 		return (ENOBUFS);
    557   1.1  sakamoto 
    558   1.1  sakamoto 	MCLGET(m_new, M_DONTWAIT);
    559  1.18   thorpej 	if ((m_new->m_flags & M_EXT) == 0) {
    560   1.1  sakamoto 		m_freem(m_new);
    561   1.2  sakamoto 		return (ENOBUFS);
    562   1.1  sakamoto 	}
    563   1.1  sakamoto 
    564  1.18   thorpej 	if (ds->ds_mbuf != NULL)
    565  1.18   thorpej 		bus_dmamap_unload(sc->vr_dmat, ds->ds_dmamap);
    566  1.18   thorpej 
    567  1.18   thorpej 	ds->ds_mbuf = m_new;
    568  1.18   thorpej 
    569  1.18   thorpej 	error = bus_dmamap_load(sc->vr_dmat, ds->ds_dmamap,
    570  1.18   thorpej 	    m_new->m_ext.ext_buf, m_new->m_ext.ext_size, NULL, BUS_DMA_NOWAIT);
    571  1.18   thorpej 	if (error) {
    572  1.18   thorpej 		printf("%s: unable to load rx DMA map %d, error = %d\n",
    573  1.18   thorpej 		    sc->vr_dev.dv_xname, i, error);
    574  1.18   thorpej 		panic("vr_add_rxbuf");		/* XXX */
    575  1.18   thorpej 	}
    576  1.18   thorpej 
    577  1.18   thorpej 	bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
    578  1.18   thorpej 	    ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
    579  1.18   thorpej 
    580  1.18   thorpej 	VR_INIT_RXDESC(sc, i);
    581   1.1  sakamoto 
    582   1.2  sakamoto 	return (0);
    583   1.1  sakamoto }
    584   1.1  sakamoto 
    585   1.1  sakamoto /*
    586   1.1  sakamoto  * A frame has been uploaded: pass the resulting mbuf chain up to
    587   1.1  sakamoto  * the higher level protocols.
    588   1.1  sakamoto  */
    589  1.15   thorpej static void
    590  1.15   thorpej vr_rxeof(sc)
    591  1.15   thorpej 	struct vr_softc *sc;
    592   1.1  sakamoto {
    593  1.15   thorpej 	struct ether_header *eh;
    594  1.15   thorpej 	struct mbuf *m;
    595  1.15   thorpej 	struct ifnet *ifp;
    596  1.18   thorpej 	struct vr_desc *d;
    597  1.18   thorpej 	struct vr_descsoft *ds;
    598  1.18   thorpej 	int i, total_len;
    599  1.15   thorpej 	u_int32_t rxstat;
    600   1.1  sakamoto 
    601   1.6   thorpej 	ifp = &sc->vr_ec.ec_if;
    602   1.1  sakamoto 
    603  1.18   thorpej 	for (i = sc->vr_rxptr;; i = VR_NEXTRX(i)) {
    604  1.18   thorpej 		d = VR_CDRX(sc, i);
    605  1.18   thorpej 		ds = VR_DSRX(sc, i);
    606  1.18   thorpej 
    607  1.18   thorpej 		VR_CDRXSYNC(sc, i, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
    608  1.18   thorpej 
    609  1.30   thorpej 		rxstat = le32toh(d->vr_status);
    610  1.18   thorpej 
    611  1.18   thorpej 		if (rxstat & VR_RXSTAT_OWN) {
    612  1.18   thorpej 			/*
    613  1.18   thorpej 			 * We have processed all of the receive buffers.
    614  1.18   thorpej 			 */
    615  1.18   thorpej 			break;
    616  1.18   thorpej 		}
    617   1.1  sakamoto 
    618   1.1  sakamoto 		/*
    619   1.1  sakamoto 		 * If an error occurs, update stats, clear the
    620   1.1  sakamoto 		 * status word and leave the mbuf cluster in place:
    621   1.1  sakamoto 		 * it should simply get re-used next time this descriptor
    622   1.2  sakamoto 		 * comes up in the ring.
    623   1.1  sakamoto 		 */
    624   1.1  sakamoto 		if (rxstat & VR_RXSTAT_RXERR) {
    625  1.18   thorpej 			const char *errstr;
    626  1.18   thorpej 
    627   1.1  sakamoto 			ifp->if_ierrors++;
    628   1.2  sakamoto 			switch (rxstat & 0x000000FF) {
    629   1.1  sakamoto 			case VR_RXSTAT_CRCERR:
    630  1.18   thorpej 				errstr = "crc error";
    631   1.1  sakamoto 				break;
    632   1.1  sakamoto 			case VR_RXSTAT_FRAMEALIGNERR:
    633  1.18   thorpej 				errstr = "frame alignment error";
    634   1.1  sakamoto 				break;
    635   1.1  sakamoto 			case VR_RXSTAT_FIFOOFLOW:
    636  1.18   thorpej 				errstr = "FIFO overflow";
    637   1.1  sakamoto 				break;
    638   1.1  sakamoto 			case VR_RXSTAT_GIANT:
    639  1.18   thorpej 				errstr = "received giant packet";
    640   1.1  sakamoto 				break;
    641   1.1  sakamoto 			case VR_RXSTAT_RUNT:
    642  1.18   thorpej 				errstr = "received runt packet";
    643   1.1  sakamoto 				break;
    644   1.1  sakamoto 			case VR_RXSTAT_BUSERR:
    645  1.18   thorpej 				errstr = "system bus error";
    646   1.1  sakamoto 				break;
    647   1.1  sakamoto 			case VR_RXSTAT_BUFFERR:
    648  1.18   thorpej 				errstr = "rx buffer error";
    649   1.1  sakamoto 				break;
    650   1.1  sakamoto 			default:
    651  1.18   thorpej 				errstr = "unknown rx error";
    652   1.1  sakamoto 				break;
    653   1.1  sakamoto 			}
    654  1.18   thorpej 			printf("%s: receive error: %s\n", sc->vr_dev.dv_xname,
    655  1.18   thorpej 			    errstr);
    656  1.18   thorpej 
    657  1.18   thorpej 			VR_INIT_RXDESC(sc, i);
    658  1.18   thorpej 
    659   1.1  sakamoto 			continue;
    660   1.1  sakamoto 		}
    661   1.1  sakamoto 
    662  1.18   thorpej 		bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
    663  1.18   thorpej 		    ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD);
    664  1.18   thorpej 
    665   1.2  sakamoto 		/* No errors; receive the packet. */
    666  1.30   thorpej 		total_len = VR_RXBYTES(le32toh(d->vr_status));
    667   1.1  sakamoto 
    668   1.1  sakamoto 		/*
    669   1.1  sakamoto 		 * XXX The VIA Rhine chip includes the CRC with every
    670   1.1  sakamoto 		 * received frame, and there's no way to turn this
    671   1.1  sakamoto 		 * behavior off (at least, I can't find anything in
    672   1.2  sakamoto 		 * the manual that explains how to do it) so we have
    673   1.1  sakamoto 		 * to trim off the CRC manually.
    674   1.1  sakamoto 		 */
    675   1.1  sakamoto 		total_len -= ETHER_CRC_LEN;
    676   1.1  sakamoto 
    677  1.17   thorpej #ifdef __NO_STRICT_ALIGNMENT
    678   1.1  sakamoto 		/*
    679  1.23   thorpej 		 * If the packet is small enough to fit in a
    680  1.23   thorpej 		 * single header mbuf, allocate one and copy
    681  1.23   thorpej 		 * the data into it.  This greatly reduces
    682  1.23   thorpej 		 * memory consumption when we receive lots
    683  1.23   thorpej 		 * of small packets.
    684  1.23   thorpej 		 *
    685  1.23   thorpej 		 * Otherwise, we add a new buffer to the receive
    686  1.23   thorpej 		 * chain.  If this fails, we drop the packet and
    687  1.23   thorpej 		 * recycle the old buffer.
    688   1.1  sakamoto 		 */
    689  1.23   thorpej 		if (vr_copy_small != 0 && total_len <= MHLEN) {
    690  1.23   thorpej 			MGETHDR(m, M_DONTWAIT, MT_DATA);
    691  1.23   thorpej 			if (m == NULL)
    692  1.23   thorpej 				goto dropit;
    693  1.23   thorpej 			memcpy(mtod(m, caddr_t),
    694  1.23   thorpej 			    mtod(ds->ds_mbuf, caddr_t), total_len);
    695  1.18   thorpej 			VR_INIT_RXDESC(sc, i);
    696  1.18   thorpej 			bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
    697  1.23   thorpej 			    ds->ds_dmamap->dm_mapsize,
    698  1.23   thorpej 			    BUS_DMASYNC_PREREAD);
    699  1.23   thorpej 		} else {
    700  1.23   thorpej 			m = ds->ds_mbuf;
    701  1.23   thorpej 			if (vr_add_rxbuf(sc, i) == ENOBUFS) {
    702  1.23   thorpej  dropit:
    703  1.23   thorpej 				ifp->if_ierrors++;
    704  1.23   thorpej 				VR_INIT_RXDESC(sc, i);
    705  1.23   thorpej 				bus_dmamap_sync(sc->vr_dmat,
    706  1.23   thorpej 				    ds->ds_dmamap, 0,
    707  1.23   thorpej 				    ds->ds_dmamap->dm_mapsize,
    708  1.23   thorpej 				    BUS_DMASYNC_PREREAD);
    709  1.23   thorpej 				continue;
    710  1.23   thorpej 			}
    711   1.1  sakamoto 		}
    712  1.17   thorpej #else
    713  1.17   thorpej 		/*
    714  1.17   thorpej 		 * The Rhine's packet buffers must be 4-byte aligned.
    715  1.17   thorpej 		 * But this means that the data after the Ethernet header
    716  1.17   thorpej 		 * is misaligned.  We must allocate a new buffer and
    717  1.17   thorpej 		 * copy the data, shifted forward 2 bytes.
    718  1.17   thorpej 		 */
    719  1.17   thorpej 		MGETHDR(m, M_DONTWAIT, MT_DATA);
    720  1.17   thorpej 		if (m == NULL) {
    721  1.17   thorpej  dropit:
    722  1.17   thorpej 			ifp->if_ierrors++;
    723  1.18   thorpej 			VR_INIT_RXDESC(sc, i);
    724  1.18   thorpej 			bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
    725  1.18   thorpej 			    ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
    726  1.17   thorpej 			continue;
    727  1.17   thorpej 		}
    728  1.17   thorpej 		if (total_len > (MHLEN - 2)) {
    729  1.17   thorpej 			MCLGET(m, M_DONTWAIT);
    730  1.20   thorpej 			if ((m->m_flags & M_EXT) == 0) {
    731  1.20   thorpej 				m_freem(m);
    732  1.17   thorpej 				goto dropit;
    733  1.20   thorpej 			}
    734  1.17   thorpej 		}
    735  1.17   thorpej 		m->m_data += 2;
    736  1.17   thorpej 
    737  1.17   thorpej 		/*
    738  1.17   thorpej 		 * Note that we use clusters for incoming frames, so the
    739  1.17   thorpej 		 * buffer is virtually contiguous.
    740  1.17   thorpej 		 */
    741  1.18   thorpej 		memcpy(mtod(m, caddr_t), mtod(ds->ds_mbuf, caddr_t),
    742  1.17   thorpej 		    total_len);
    743  1.17   thorpej 
    744  1.17   thorpej 		/* Allow the recieve descriptor to continue using its mbuf. */
    745  1.18   thorpej 		VR_INIT_RXDESC(sc, i);
    746  1.18   thorpej 		bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
    747  1.18   thorpej 		    ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
    748  1.17   thorpej #endif /* __NO_STRICT_ALIGNMENT */
    749   1.1  sakamoto 
    750   1.1  sakamoto 		ifp->if_ipackets++;
    751   1.1  sakamoto 		eh = mtod(m, struct ether_header *);
    752   1.1  sakamoto 		m->m_pkthdr.rcvif = ifp;
    753   1.1  sakamoto 		m->m_pkthdr.len = m->m_len = total_len;
    754   1.1  sakamoto #if NBPFILTER > 0
    755   1.1  sakamoto 		/*
    756   1.1  sakamoto 		 * Handle BPF listeners. Let the BPF user see the packet, but
    757   1.1  sakamoto 		 * don't pass it up to the ether_input() layer unless it's
    758   1.1  sakamoto 		 * a broadcast packet, multicast packet, matches our ethernet
    759   1.1  sakamoto 		 * address or the interface is in promiscuous mode.
    760   1.1  sakamoto 		 */
    761   1.1  sakamoto 		if (ifp->if_bpf) {
    762   1.2  sakamoto 			bpf_mtap(ifp->if_bpf, m);
    763  1.18   thorpej 			if ((ifp->if_flags & IFF_PROMISC) != 0 &&
    764  1.26   thorpej 			    ETHER_IS_MULTICAST(eh->ether_dhost) == 0 &&
    765  1.26   thorpej 			    memcmp(eh->ether_dhost, LLADDR(ifp->if_sadl),
    766  1.26   thorpej 				   ETHER_ADDR_LEN) != 0) {
    767   1.1  sakamoto 				m_freem(m);
    768   1.1  sakamoto 				continue;
    769   1.1  sakamoto 			}
    770   1.1  sakamoto 		}
    771   1.1  sakamoto #endif
    772  1.22   thorpej 		/* Pass it on. */
    773  1.22   thorpej 		(*ifp->if_input)(ifp, m);
    774   1.1  sakamoto 	}
    775  1.18   thorpej 
    776  1.18   thorpej 	/* Update the receive pointer. */
    777  1.18   thorpej 	sc->vr_rxptr = i;
    778   1.1  sakamoto }
    779   1.1  sakamoto 
    780  1.15   thorpej void
    781  1.15   thorpej vr_rxeoc(sc)
    782  1.15   thorpej 	struct vr_softc *sc;
    783   1.1  sakamoto {
    784   1.1  sakamoto 
    785   1.1  sakamoto 	vr_rxeof(sc);
    786   1.1  sakamoto 	VR_CLRBIT16(sc, VR_COMMAND, VR_CMD_RX_ON);
    787  1.18   thorpej 	CSR_WRITE_4(sc, VR_RXADDR, VR_CDRXADDR(sc, sc->vr_rxptr));
    788   1.1  sakamoto 	VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RX_ON);
    789   1.1  sakamoto 	VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RX_GO);
    790   1.1  sakamoto }
    791   1.1  sakamoto 
    792   1.1  sakamoto /*
    793   1.1  sakamoto  * A frame was downloaded to the chip. It's safe for us to clean up
    794   1.1  sakamoto  * the list buffers.
    795   1.1  sakamoto  */
    796  1.15   thorpej static void
    797  1.15   thorpej vr_txeof(sc)
    798  1.15   thorpej 	struct vr_softc *sc;
    799   1.1  sakamoto {
    800  1.18   thorpej 	struct ifnet *ifp = &sc->vr_ec.ec_if;
    801  1.18   thorpej 	struct vr_desc *d;
    802  1.18   thorpej 	struct vr_descsoft *ds;
    803  1.18   thorpej 	u_int32_t txstat;
    804  1.18   thorpej 	int i;
    805   1.1  sakamoto 
    806  1.18   thorpej 	ifp->if_flags &= ~IFF_OACTIVE;
    807   1.1  sakamoto 
    808   1.1  sakamoto 	/*
    809   1.1  sakamoto 	 * Go through our tx list and free mbufs for those
    810   1.1  sakamoto 	 * frames that have been transmitted.
    811   1.1  sakamoto 	 */
    812  1.18   thorpej 	for (i = sc->vr_txdirty; sc->vr_txpending != 0;
    813  1.18   thorpej 	     i = VR_NEXTTX(i), sc->vr_txpending--) {
    814  1.18   thorpej 		d = VR_CDTX(sc, i);
    815  1.18   thorpej 		ds = VR_DSTX(sc, i);
    816   1.1  sakamoto 
    817  1.18   thorpej 		VR_CDTXSYNC(sc, i, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
    818   1.1  sakamoto 
    819  1.30   thorpej 		txstat = le32toh(d->vr_status);
    820   1.1  sakamoto 		if (txstat & VR_TXSTAT_OWN)
    821   1.1  sakamoto 			break;
    822   1.1  sakamoto 
    823  1.18   thorpej 		bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap,
    824  1.18   thorpej 		    0, ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
    825  1.18   thorpej 		bus_dmamap_unload(sc->vr_dmat, ds->ds_dmamap);
    826  1.18   thorpej 		m_freem(ds->ds_mbuf);
    827  1.18   thorpej 		ds->ds_mbuf = NULL;
    828  1.18   thorpej 
    829   1.1  sakamoto 		if (txstat & VR_TXSTAT_ERRSUM) {
    830   1.1  sakamoto 			ifp->if_oerrors++;
    831   1.1  sakamoto 			if (txstat & VR_TXSTAT_DEFER)
    832   1.1  sakamoto 				ifp->if_collisions++;
    833   1.1  sakamoto 			if (txstat & VR_TXSTAT_LATECOLL)
    834   1.1  sakamoto 				ifp->if_collisions++;
    835   1.1  sakamoto 		}
    836   1.1  sakamoto 
    837  1.18   thorpej 		ifp->if_collisions += (txstat & VR_TXSTAT_COLLCNT) >> 3;
    838   1.1  sakamoto 		ifp->if_opackets++;
    839   1.1  sakamoto 	}
    840   1.1  sakamoto 
    841  1.18   thorpej 	/* Update the dirty transmit buffer pointer. */
    842  1.18   thorpej 	sc->vr_txdirty = i;
    843   1.1  sakamoto 
    844  1.18   thorpej 	/*
    845  1.18   thorpej 	 * Cancel the watchdog timer if there are no pending
    846  1.18   thorpej 	 * transmissions.
    847  1.18   thorpej 	 */
    848  1.18   thorpej 	if (sc->vr_txpending == 0)
    849  1.18   thorpej 		ifp->if_timer = 0;
    850   1.1  sakamoto }
    851   1.1  sakamoto 
    852  1.16   thorpej static int
    853  1.15   thorpej vr_intr(arg)
    854  1.15   thorpej 	void *arg;
    855   1.1  sakamoto {
    856  1.15   thorpej 	struct vr_softc *sc;
    857  1.15   thorpej 	struct ifnet *ifp;
    858  1.15   thorpej 	u_int16_t status;
    859  1.18   thorpej 	int handled = 0, dotx = 0;
    860   1.1  sakamoto 
    861   1.1  sakamoto 	sc = arg;
    862   1.6   thorpej 	ifp = &sc->vr_ec.ec_if;
    863   1.1  sakamoto 
    864  1.18   thorpej 	/* Suppress unwanted interrupts. */
    865  1.16   thorpej 	if ((ifp->if_flags & IFF_UP) == 0) {
    866  1.23   thorpej 		vr_stop(sc, 1);
    867  1.16   thorpej 		return (0);
    868   1.1  sakamoto 	}
    869   1.1  sakamoto 
    870   1.1  sakamoto 	/* Disable interrupts. */
    871   1.1  sakamoto 	CSR_WRITE_2(sc, VR_IMR, 0x0000);
    872   1.1  sakamoto 
    873   1.1  sakamoto 	for (;;) {
    874   1.1  sakamoto 		status = CSR_READ_2(sc, VR_ISR);
    875   1.1  sakamoto 		if (status)
    876   1.1  sakamoto 			CSR_WRITE_2(sc, VR_ISR, status);
    877   1.1  sakamoto 
    878   1.1  sakamoto 		if ((status & VR_INTRS) == 0)
    879   1.1  sakamoto 			break;
    880   1.1  sakamoto 
    881  1.16   thorpej 		handled = 1;
    882  1.16   thorpej 
    883   1.1  sakamoto 		if (status & VR_ISR_RX_OK)
    884   1.1  sakamoto 			vr_rxeof(sc);
    885   1.1  sakamoto 
    886  1.18   thorpej 		if (status &
    887  1.18   thorpej 		    (VR_ISR_RX_ERR | VR_ISR_RX_NOBUF | VR_ISR_RX_OFLOW |
    888  1.18   thorpej 		     VR_ISR_RX_DROPPED))
    889   1.1  sakamoto 			vr_rxeoc(sc);
    890   1.1  sakamoto 
    891   1.1  sakamoto 		if (status & VR_ISR_TX_OK) {
    892  1.18   thorpej 			dotx = 1;
    893   1.1  sakamoto 			vr_txeof(sc);
    894   1.1  sakamoto 		}
    895   1.1  sakamoto 
    896  1.18   thorpej 		if (status & (VR_ISR_TX_UNDERRUN | VR_ISR_TX_ABRT)) {
    897  1.18   thorpej 			if (status & VR_ISR_TX_UNDERRUN)
    898  1.18   thorpej 				printf("%s: transmit underrun\n",
    899  1.18   thorpej 				    sc->vr_dev.dv_xname);
    900  1.18   thorpej 			if (status & VR_ISR_TX_ABRT)
    901  1.18   thorpej 				printf("%s: transmit aborted\n",
    902  1.18   thorpej 				    sc->vr_dev.dv_xname);
    903   1.1  sakamoto 			ifp->if_oerrors++;
    904  1.18   thorpej 			dotx = 1;
    905   1.1  sakamoto 			vr_txeof(sc);
    906  1.18   thorpej 			if (sc->vr_txpending) {
    907   1.1  sakamoto 				VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_ON);
    908   1.1  sakamoto 				VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_GO);
    909   1.1  sakamoto 			}
    910   1.1  sakamoto 		}
    911   1.1  sakamoto 
    912   1.1  sakamoto 		if (status & VR_ISR_BUSERR) {
    913  1.18   thorpej 			printf("%s: PCI bus error\n", sc->vr_dev.dv_xname);
    914  1.18   thorpej 			/* vr_init() calls vr_start() */
    915  1.18   thorpej 			dotx = 0;
    916  1.23   thorpej 			(void) vr_init(sc);
    917   1.1  sakamoto 		}
    918   1.1  sakamoto 	}
    919   1.1  sakamoto 
    920   1.1  sakamoto 	/* Re-enable interrupts. */
    921   1.1  sakamoto 	CSR_WRITE_2(sc, VR_IMR, VR_INTRS);
    922   1.1  sakamoto 
    923  1.18   thorpej 	if (dotx)
    924   1.1  sakamoto 		vr_start(ifp);
    925  1.16   thorpej 
    926  1.16   thorpej 	return (handled);
    927   1.1  sakamoto }
    928   1.1  sakamoto 
    929   1.1  sakamoto /*
    930   1.1  sakamoto  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
    931   1.1  sakamoto  * to the mbuf data regions directly in the transmit lists. We also save a
    932   1.1  sakamoto  * copy of the pointers since the transmit list fragment pointers are
    933   1.1  sakamoto  * physical addresses.
    934   1.1  sakamoto  */
    935  1.15   thorpej static void
    936  1.15   thorpej vr_start(ifp)
    937  1.15   thorpej 	struct ifnet *ifp;
    938   1.1  sakamoto {
    939  1.18   thorpej 	struct vr_softc *sc = ifp->if_softc;
    940  1.18   thorpej 	struct mbuf *m0, *m;
    941  1.18   thorpej 	struct vr_desc *d;
    942  1.18   thorpej 	struct vr_descsoft *ds;
    943  1.18   thorpej 	int error, firsttx, nexttx, opending;
    944   1.1  sakamoto 
    945  1.18   thorpej 	/*
    946  1.18   thorpej 	 * Remember the previous txpending and the first transmit
    947  1.18   thorpej 	 * descriptor we use.
    948  1.18   thorpej 	 */
    949  1.18   thorpej 	opending = sc->vr_txpending;
    950  1.18   thorpej 	firsttx = VR_NEXTTX(sc->vr_txlast);
    951   1.1  sakamoto 
    952   1.1  sakamoto 	/*
    953  1.18   thorpej 	 * Loop through the send queue, setting up transmit descriptors
    954  1.18   thorpej 	 * until we drain the queue, or use up all available transmit
    955  1.18   thorpej 	 * descriptors.
    956   1.1  sakamoto 	 */
    957  1.18   thorpej 	while (sc->vr_txpending < VR_NTXDESC) {
    958  1.18   thorpej 		/*
    959  1.18   thorpej 		 * Grab a packet off the queue.
    960  1.18   thorpej 		 */
    961  1.18   thorpej 		IF_DEQUEUE(&ifp->if_snd, m0);
    962  1.18   thorpej 		if (m0 == NULL)
    963  1.18   thorpej 			break;
    964   1.1  sakamoto 
    965  1.18   thorpej 		/*
    966  1.18   thorpej 		 * Get the next available transmit descriptor.
    967  1.18   thorpej 		 */
    968  1.18   thorpej 		nexttx = VR_NEXTTX(sc->vr_txlast);
    969  1.18   thorpej 		d = VR_CDTX(sc, nexttx);
    970  1.18   thorpej 		ds = VR_DSTX(sc, nexttx);
    971   1.1  sakamoto 
    972  1.18   thorpej 		/*
    973  1.18   thorpej 		 * Load the DMA map.  If this fails, the packet didn't
    974  1.18   thorpej 		 * fit in one DMA segment, and we need to copy.  Note,
    975  1.18   thorpej 		 * the packet must also be aligned.
    976  1.18   thorpej 		 */
    977  1.18   thorpej 		if ((mtod(m0, bus_addr_t) & 3) != 0 ||
    978  1.18   thorpej 		    bus_dmamap_load_mbuf(sc->vr_dmat, ds->ds_dmamap, m0,
    979  1.18   thorpej 		     BUS_DMA_NOWAIT) != 0) {
    980  1.18   thorpej 			MGETHDR(m, M_DONTWAIT, MT_DATA);
    981  1.18   thorpej 			if (m == NULL) {
    982  1.18   thorpej 				printf("%s: unable to allocate Tx mbuf\n",
    983  1.18   thorpej 				    sc->vr_dev.dv_xname);
    984  1.18   thorpej 				IF_PREPEND(&ifp->if_snd, m0);
    985  1.18   thorpej 				break;
    986  1.18   thorpej 			}
    987  1.18   thorpej 			if (m0->m_pkthdr.len > MHLEN) {
    988  1.18   thorpej 				MCLGET(m, M_DONTWAIT);
    989  1.18   thorpej 				if ((m->m_flags & M_EXT) == 0) {
    990  1.18   thorpej 					printf("%s: unable to allocate Tx "
    991  1.18   thorpej 					    "cluster\n", sc->vr_dev.dv_xname);
    992  1.18   thorpej 					m_freem(m);
    993  1.18   thorpej 					IF_PREPEND(&ifp->if_snd, m0);
    994  1.18   thorpej 					break;
    995  1.18   thorpej 				}
    996  1.18   thorpej 			}
    997  1.18   thorpej 			m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, caddr_t));
    998  1.18   thorpej 			m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
    999  1.18   thorpej 			m_freem(m0);
   1000  1.18   thorpej 			m0 = m;
   1001  1.18   thorpej 			error = bus_dmamap_load_mbuf(sc->vr_dmat,
   1002  1.18   thorpej 			    ds->ds_dmamap, m0, BUS_DMA_NOWAIT);
   1003  1.18   thorpej 			if (error) {
   1004  1.18   thorpej 				printf("%s: unable to load Tx buffer, "
   1005  1.18   thorpej 				    "error = %d\n", sc->vr_dev.dv_xname, error);
   1006  1.18   thorpej 				IF_PREPEND(&ifp->if_snd, m0);
   1007  1.18   thorpej 				break;
   1008  1.18   thorpej 			}
   1009  1.18   thorpej 		}
   1010   1.1  sakamoto 
   1011  1.18   thorpej 		/* Sync the DMA map. */
   1012  1.18   thorpej 		bus_dmamap_sync(sc->vr_dmat, ds->ds_dmamap, 0,
   1013  1.18   thorpej 		    ds->ds_dmamap->dm_mapsize, BUS_DMASYNC_PREWRITE);
   1014   1.1  sakamoto 
   1015  1.18   thorpej 		/*
   1016  1.18   thorpej 		 * Store a pointer to the packet so we can free it later.
   1017  1.18   thorpej 		 */
   1018  1.18   thorpej 		ds->ds_mbuf = m0;
   1019   1.1  sakamoto 
   1020   1.1  sakamoto #if NBPFILTER > 0
   1021   1.1  sakamoto 		/*
   1022   1.1  sakamoto 		 * If there's a BPF listener, bounce a copy of this frame
   1023   1.1  sakamoto 		 * to him.
   1024   1.1  sakamoto 		 */
   1025   1.1  sakamoto 		if (ifp->if_bpf)
   1026  1.18   thorpej 			bpf_mtap(ifp->if_bpf, m0);
   1027   1.2  sakamoto #endif
   1028  1.18   thorpej 
   1029  1.18   thorpej 		/*
   1030  1.18   thorpej 		 * Fill in the transmit descriptor.  The Rhine
   1031  1.18   thorpej 		 * doesn't auto-pad, so we have to do this ourselves.
   1032  1.18   thorpej 		 */
   1033  1.30   thorpej 		d->vr_data = htole32(ds->ds_dmamap->dm_segs[0].ds_addr);
   1034  1.30   thorpej 		d->vr_ctl = htole32(m0->m_pkthdr.len < VR_MIN_FRAMELEN ?
   1035  1.21   thorpej 		    VR_MIN_FRAMELEN : m0->m_pkthdr.len);
   1036  1.18   thorpej 		d->vr_ctl |=
   1037  1.30   thorpej 		    htole32(VR_TXCTL_TLINK|VR_TXCTL_FIRSTFRAG|
   1038  1.30   thorpej 		    VR_TXCTL_LASTFRAG);
   1039  1.18   thorpej 
   1040  1.18   thorpej 		/*
   1041  1.18   thorpej 		 * If this is the first descriptor we're enqueuing,
   1042  1.18   thorpej 		 * don't give it to the Rhine yet.  That could cause
   1043  1.18   thorpej 		 * a race condition.  We'll do it below.
   1044  1.18   thorpej 		 */
   1045  1.18   thorpej 		if (nexttx == firsttx)
   1046  1.18   thorpej 			d->vr_status = 0;
   1047  1.18   thorpej 		else
   1048  1.30   thorpej 			d->vr_status = htole32(VR_TXSTAT_OWN);
   1049  1.18   thorpej 
   1050  1.18   thorpej 		VR_CDTXSYNC(sc, nexttx,
   1051  1.18   thorpej 		    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1052  1.18   thorpej 
   1053  1.18   thorpej 		/* Advance the tx pointer. */
   1054  1.18   thorpej 		sc->vr_txpending++;
   1055  1.18   thorpej 		sc->vr_txlast = nexttx;
   1056  1.18   thorpej 	}
   1057  1.18   thorpej 
   1058  1.18   thorpej 	if (sc->vr_txpending == VR_NTXDESC) {
   1059  1.18   thorpej 		/* No more slots left; notify upper layer. */
   1060  1.18   thorpej 		ifp->if_flags |= IFF_OACTIVE;
   1061   1.1  sakamoto 	}
   1062   1.1  sakamoto 
   1063  1.18   thorpej 	if (sc->vr_txpending != opending) {
   1064  1.18   thorpej 		/*
   1065  1.18   thorpej 		 * We enqueued packets.  If the transmitter was idle,
   1066  1.18   thorpej 		 * reset the txdirty pointer.
   1067  1.18   thorpej 		 */
   1068  1.18   thorpej 		if (opending == 0)
   1069  1.18   thorpej 			sc->vr_txdirty = firsttx;
   1070  1.18   thorpej 
   1071  1.18   thorpej 		/*
   1072  1.18   thorpej 		 * Cause a transmit interrupt to happen on the
   1073  1.18   thorpej 		 * last packet we enqueued.
   1074  1.18   thorpej 		 */
   1075  1.30   thorpej 		VR_CDTX(sc, sc->vr_txlast)->vr_ctl |= htole32(VR_TXCTL_FINT);
   1076  1.18   thorpej 		VR_CDTXSYNC(sc, sc->vr_txlast,
   1077  1.18   thorpej 		    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1078   1.1  sakamoto 
   1079  1.18   thorpej 		/*
   1080  1.18   thorpej 		 * The entire packet chain is set up.  Give the
   1081  1.18   thorpej 		 * first descriptor to the Rhine now.
   1082  1.18   thorpej 		 */
   1083  1.30   thorpej 		VR_CDTX(sc, firsttx)->vr_status = htole32(VR_TXSTAT_OWN);
   1084  1.18   thorpej 		VR_CDTXSYNC(sc, firsttx,
   1085  1.18   thorpej 		    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1086   1.1  sakamoto 
   1087  1.18   thorpej 		/* Start the transmitter. */
   1088  1.18   thorpej 		VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_ON|VR_CMD_TX_GO);
   1089   1.1  sakamoto 
   1090  1.18   thorpej 		/* Set the watchdog timer in case the chip flakes out. */
   1091  1.18   thorpej 		ifp->if_timer = 5;
   1092  1.18   thorpej 	}
   1093   1.1  sakamoto }
   1094   1.1  sakamoto 
   1095  1.13   thorpej /*
   1096  1.13   thorpej  * Initialize the interface.  Must be called at splnet.
   1097  1.13   thorpej  */
   1098  1.23   thorpej static int
   1099  1.23   thorpej vr_init(sc)
   1100  1.23   thorpej 	struct vr_softc *sc;
   1101   1.1  sakamoto {
   1102  1.15   thorpej 	struct ifnet *ifp = &sc->vr_ec.ec_if;
   1103  1.18   thorpej 	struct vr_desc *d;
   1104  1.23   thorpej 	struct vr_descsoft *ds;
   1105  1.25       hwr 	int i, error = 0;
   1106   1.1  sakamoto 
   1107  1.18   thorpej 	/* Cancel pending I/O. */
   1108  1.23   thorpej 	vr_stop(sc, 0);
   1109  1.18   thorpej 
   1110  1.18   thorpej 	/* Reset the Rhine to a known state. */
   1111   1.1  sakamoto 	vr_reset(sc);
   1112   1.1  sakamoto 
   1113   1.1  sakamoto 	VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_THRESH);
   1114   1.1  sakamoto 	VR_SETBIT(sc, VR_RXCFG, VR_RXTHRESH_STORENFWD);
   1115   1.1  sakamoto 
   1116   1.1  sakamoto 	VR_CLRBIT(sc, VR_TXCFG, VR_TXCFG_TX_THRESH);
   1117   1.1  sakamoto 	VR_SETBIT(sc, VR_TXCFG, VR_TXTHRESH_STORENFWD);
   1118   1.1  sakamoto 
   1119   1.1  sakamoto 	/*
   1120  1.18   thorpej 	 * Initialize the transmit desciptor ring.  txlast is initialized
   1121  1.18   thorpej 	 * to the end of the list so that it will wrap around to the first
   1122  1.18   thorpej 	 * descriptor when the first packet is transmitted.
   1123  1.18   thorpej 	 */
   1124  1.18   thorpej 	for (i = 0; i < VR_NTXDESC; i++) {
   1125  1.18   thorpej 		d = VR_CDTX(sc, i);
   1126  1.18   thorpej 		memset(d, 0, sizeof(struct vr_desc));
   1127  1.30   thorpej 		d->vr_next = htole32(VR_CDTXADDR(sc, VR_NEXTTX(i)));
   1128  1.18   thorpej 		VR_CDTXSYNC(sc, i, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
   1129  1.18   thorpej 	}
   1130  1.18   thorpej 	sc->vr_txpending = 0;
   1131  1.18   thorpej 	sc->vr_txdirty = 0;
   1132  1.18   thorpej 	sc->vr_txlast = VR_NTXDESC - 1;
   1133  1.18   thorpej 
   1134  1.18   thorpej 	/*
   1135  1.23   thorpej 	 * Initialize the receive descriptor ring.
   1136  1.18   thorpej 	 */
   1137  1.23   thorpej 	for (i = 0; i < VR_NRXDESC; i++) {
   1138  1.23   thorpej 		ds = VR_DSRX(sc, i);
   1139  1.23   thorpej 		if (ds->ds_mbuf == NULL) {
   1140  1.23   thorpej 			if ((error = vr_add_rxbuf(sc, i)) != 0) {
   1141  1.23   thorpej 				printf("%s: unable to allocate or map rx "
   1142  1.23   thorpej 				    "buffer %d, error = %d\n",
   1143  1.23   thorpej 				    sc->vr_dev.dv_xname, i, error);
   1144  1.23   thorpej 				/*
   1145  1.23   thorpej 				 * XXX Should attempt to run with fewer receive
   1146  1.23   thorpej 				 * XXX buffers instead of just failing.
   1147  1.23   thorpej 				 */
   1148  1.23   thorpej 				vr_rxdrain(sc);
   1149  1.23   thorpej 				goto out;
   1150  1.23   thorpej 			}
   1151  1.23   thorpej 		}
   1152  1.23   thorpej 	}
   1153  1.18   thorpej 	sc->vr_rxptr = 0;
   1154   1.1  sakamoto 
   1155   1.1  sakamoto 	/* If we want promiscuous mode, set the allframes bit. */
   1156   1.1  sakamoto 	if (ifp->if_flags & IFF_PROMISC)
   1157   1.1  sakamoto 		VR_SETBIT(sc, VR_RXCFG, VR_RXCFG_RX_PROMISC);
   1158   1.1  sakamoto 	else
   1159   1.1  sakamoto 		VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_PROMISC);
   1160   1.1  sakamoto 
   1161   1.1  sakamoto 	/* Set capture broadcast bit to capture broadcast frames. */
   1162   1.1  sakamoto 	if (ifp->if_flags & IFF_BROADCAST)
   1163   1.1  sakamoto 		VR_SETBIT(sc, VR_RXCFG, VR_RXCFG_RX_BROAD);
   1164   1.1  sakamoto 	else
   1165   1.1  sakamoto 		VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_BROAD);
   1166   1.1  sakamoto 
   1167  1.18   thorpej 	/* Program the multicast filter, if necessary. */
   1168   1.1  sakamoto 	vr_setmulti(sc);
   1169   1.1  sakamoto 
   1170  1.18   thorpej 	/* Give the transmit and recieve rings to the Rhine. */
   1171  1.18   thorpej 	CSR_WRITE_4(sc, VR_RXADDR, VR_CDRXADDR(sc, sc->vr_rxptr));
   1172  1.18   thorpej 	CSR_WRITE_4(sc, VR_TXADDR, VR_CDTXADDR(sc, VR_NEXTTX(sc->vr_txlast)));
   1173  1.18   thorpej 
   1174  1.18   thorpej 	/* Set current media. */
   1175  1.18   thorpej 	mii_mediachg(&sc->vr_mii);
   1176   1.1  sakamoto 
   1177   1.1  sakamoto 	/* Enable receiver and transmitter. */
   1178   1.1  sakamoto 	CSR_WRITE_2(sc, VR_COMMAND, VR_CMD_TX_NOPOLL|VR_CMD_START|
   1179   1.1  sakamoto 				    VR_CMD_TX_ON|VR_CMD_RX_ON|
   1180   1.1  sakamoto 				    VR_CMD_RX_GO);
   1181   1.1  sakamoto 
   1182  1.18   thorpej 	/* Enable interrupts. */
   1183   1.1  sakamoto 	CSR_WRITE_2(sc, VR_ISR, 0xFFFF);
   1184   1.1  sakamoto 	CSR_WRITE_2(sc, VR_IMR, VR_INTRS);
   1185   1.1  sakamoto 
   1186   1.1  sakamoto 	ifp->if_flags |= IFF_RUNNING;
   1187   1.1  sakamoto 	ifp->if_flags &= ~IFF_OACTIVE;
   1188   1.1  sakamoto 
   1189  1.11   thorpej 	/* Start one second timer. */
   1190  1.11   thorpej 	timeout(vr_tick, sc, hz);
   1191  1.18   thorpej 
   1192  1.18   thorpej 	/* Attempt to start output on the interface. */
   1193  1.18   thorpej 	vr_start(ifp);
   1194  1.23   thorpej 
   1195  1.23   thorpej  out:
   1196  1.23   thorpej 	if (error)
   1197  1.23   thorpej 		printf("%s: interface not running\n", sc->vr_dev.dv_xname);
   1198  1.23   thorpej 	return (error);
   1199   1.1  sakamoto }
   1200   1.1  sakamoto 
   1201   1.1  sakamoto /*
   1202   1.1  sakamoto  * Set media options.
   1203   1.1  sakamoto  */
   1204  1.15   thorpej static int
   1205  1.15   thorpej vr_ifmedia_upd(ifp)
   1206  1.15   thorpej 	struct ifnet *ifp;
   1207   1.1  sakamoto {
   1208  1.11   thorpej 	struct vr_softc *sc = ifp->if_softc;
   1209   1.1  sakamoto 
   1210  1.11   thorpej 	if (ifp->if_flags & IFF_UP)
   1211  1.11   thorpej 		mii_mediachg(&sc->vr_mii);
   1212   1.2  sakamoto 	return (0);
   1213   1.1  sakamoto }
   1214   1.1  sakamoto 
   1215   1.1  sakamoto /*
   1216   1.1  sakamoto  * Report current media status.
   1217   1.1  sakamoto  */
   1218  1.15   thorpej static void
   1219  1.15   thorpej vr_ifmedia_sts(ifp, ifmr)
   1220  1.15   thorpej 	struct ifnet *ifp;
   1221  1.15   thorpej 	struct ifmediareq *ifmr;
   1222   1.1  sakamoto {
   1223  1.11   thorpej 	struct vr_softc *sc = ifp->if_softc;
   1224   1.1  sakamoto 
   1225  1.11   thorpej 	mii_pollstat(&sc->vr_mii);
   1226  1.11   thorpej 	ifmr->ifm_status = sc->vr_mii.mii_media_status;
   1227  1.11   thorpej 	ifmr->ifm_active = sc->vr_mii.mii_media_active;
   1228   1.1  sakamoto }
   1229   1.1  sakamoto 
   1230  1.15   thorpej static int
   1231  1.15   thorpej vr_ioctl(ifp, command, data)
   1232  1.15   thorpej 	struct ifnet *ifp;
   1233  1.15   thorpej 	u_long command;
   1234  1.15   thorpej 	caddr_t data;
   1235  1.15   thorpej {
   1236  1.15   thorpej 	struct vr_softc *sc = ifp->if_softc;
   1237  1.15   thorpej 	struct ifreq *ifr = (struct ifreq *)data;
   1238  1.15   thorpej 	struct ifaddr *ifa = (struct ifaddr *)data;
   1239  1.15   thorpej 	int s, error = 0;
   1240   1.1  sakamoto 
   1241  1.12   thorpej 	s = splnet();
   1242   1.1  sakamoto 
   1243   1.2  sakamoto 	switch (command) {
   1244   1.2  sakamoto 	case SIOCSIFADDR:
   1245   1.2  sakamoto 		ifp->if_flags |= IFF_UP;
   1246   1.2  sakamoto 
   1247   1.2  sakamoto 		switch (ifa->ifa_addr->sa_family) {
   1248   1.2  sakamoto #ifdef INET
   1249   1.2  sakamoto 		case AF_INET:
   1250  1.23   thorpej 			if ((error = vr_init(sc)) != 0)
   1251  1.23   thorpej 				break;
   1252   1.2  sakamoto 			arp_ifinit(ifp, ifa);
   1253   1.2  sakamoto 			break;
   1254   1.2  sakamoto #endif /* INET */
   1255   1.2  sakamoto 		default:
   1256  1.23   thorpej 			error = vr_init(sc);
   1257   1.2  sakamoto 			break;
   1258   1.2  sakamoto 		}
   1259   1.2  sakamoto 		break;
   1260   1.2  sakamoto 
   1261   1.2  sakamoto 	case SIOCGIFADDR:
   1262   1.2  sakamoto 		bcopy((caddr_t) sc->vr_enaddr,
   1263   1.2  sakamoto 			(caddr_t) ((struct sockaddr *)&ifr->ifr_data)->sa_data,
   1264   1.2  sakamoto 			ETHER_ADDR_LEN);
   1265   1.2  sakamoto 		break;
   1266   1.2  sakamoto 
   1267   1.2  sakamoto 	case SIOCSIFMTU:
   1268   1.2  sakamoto 		if (ifr->ifr_mtu > ETHERMTU)
   1269   1.2  sakamoto 			error = EINVAL;
   1270   1.2  sakamoto 		else
   1271   1.2  sakamoto 			ifp->if_mtu = ifr->ifr_mtu;
   1272   1.2  sakamoto 		break;
   1273   1.2  sakamoto 
   1274   1.1  sakamoto 	case SIOCSIFFLAGS:
   1275  1.18   thorpej 		if ((ifp->if_flags & IFF_UP) == 0 &&
   1276  1.18   thorpej 		    (ifp->if_flags & IFF_RUNNING) != 0) {
   1277  1.18   thorpej 			/*
   1278  1.18   thorpej 			 * If interface is marked down and it is running, then
   1279  1.18   thorpej 			 * stop it.
   1280  1.18   thorpej 			 */
   1281  1.23   thorpej 			vr_stop(sc, 1);
   1282  1.18   thorpej 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
   1283  1.18   thorpej 			   (ifp->if_flags & IFF_RUNNING) == 0) {
   1284  1.18   thorpej 			/*
   1285  1.18   thorpej 			 * If interface is marked up and it is stopped, then
   1286  1.18   thorpej 			 * start it.
   1287  1.18   thorpej 			 */
   1288  1.23   thorpej 			error = vr_init(sc);
   1289  1.18   thorpej 		} else if ((ifp->if_flags & IFF_UP) != 0) {
   1290  1.18   thorpej 			/*
   1291  1.18   thorpej 			 * Reset the interface to pick up changes in any other
   1292  1.18   thorpej 			 * flags that affect the hardware state.
   1293  1.18   thorpej 			 */
   1294  1.23   thorpej 			error = vr_init(sc);
   1295   1.1  sakamoto 		}
   1296   1.1  sakamoto 		break;
   1297  1.18   thorpej 
   1298   1.1  sakamoto 	case SIOCADDMULTI:
   1299   1.1  sakamoto 	case SIOCDELMULTI:
   1300   1.2  sakamoto 		if (command == SIOCADDMULTI)
   1301   1.2  sakamoto 			error = ether_addmulti(ifr, &sc->vr_ec);
   1302   1.2  sakamoto 		else
   1303   1.2  sakamoto 			error = ether_delmulti(ifr, &sc->vr_ec);
   1304   1.2  sakamoto 
   1305   1.2  sakamoto 		if (error == ENETRESET) {
   1306  1.18   thorpej 			/*
   1307  1.18   thorpej 			 * Multicast list has changed; set the hardware filter
   1308  1.18   thorpej 			 * accordingly.
   1309  1.18   thorpej 			 */
   1310   1.2  sakamoto 			vr_setmulti(sc);
   1311   1.2  sakamoto 			error = 0;
   1312   1.2  sakamoto 		}
   1313   1.1  sakamoto 		break;
   1314  1.18   thorpej 
   1315   1.1  sakamoto 	case SIOCGIFMEDIA:
   1316   1.1  sakamoto 	case SIOCSIFMEDIA:
   1317  1.11   thorpej 		error = ifmedia_ioctl(ifp, ifr, &sc->vr_mii.mii_media, command);
   1318   1.1  sakamoto 		break;
   1319  1.18   thorpej 
   1320   1.1  sakamoto 	default:
   1321   1.1  sakamoto 		error = EINVAL;
   1322   1.1  sakamoto 		break;
   1323   1.1  sakamoto 	}
   1324   1.1  sakamoto 
   1325  1.13   thorpej 	splx(s);
   1326   1.2  sakamoto 	return (error);
   1327   1.1  sakamoto }
   1328   1.1  sakamoto 
   1329  1.15   thorpej static void
   1330  1.15   thorpej vr_watchdog(ifp)
   1331  1.15   thorpej 	struct ifnet *ifp;
   1332   1.1  sakamoto {
   1333  1.18   thorpej 	struct vr_softc *sc = ifp->if_softc;
   1334   1.1  sakamoto 
   1335  1.18   thorpej 	printf("%s: device timeout\n", sc->vr_dev.dv_xname);
   1336   1.1  sakamoto 	ifp->if_oerrors++;
   1337   1.1  sakamoto 
   1338  1.23   thorpej 	(void) vr_init(sc);
   1339   1.1  sakamoto }
   1340   1.1  sakamoto 
   1341   1.1  sakamoto /*
   1342  1.11   thorpej  * One second timer, used to tick MII.
   1343  1.11   thorpej  */
   1344  1.11   thorpej static void
   1345  1.11   thorpej vr_tick(arg)
   1346  1.11   thorpej 	void *arg;
   1347  1.11   thorpej {
   1348  1.11   thorpej 	struct vr_softc *sc = arg;
   1349  1.11   thorpej 	int s;
   1350  1.11   thorpej 
   1351  1.12   thorpej 	s = splnet();
   1352  1.11   thorpej 	mii_tick(&sc->vr_mii);
   1353  1.11   thorpej 	splx(s);
   1354  1.11   thorpej 
   1355  1.11   thorpej 	timeout(vr_tick, sc, hz);
   1356  1.11   thorpej }
   1357  1.11   thorpej 
   1358  1.11   thorpej /*
   1359  1.23   thorpej  * Drain the receive queue.
   1360  1.23   thorpej  */
   1361  1.23   thorpej static void
   1362  1.23   thorpej vr_rxdrain(sc)
   1363  1.23   thorpej 	struct vr_softc *sc;
   1364  1.23   thorpej {
   1365  1.23   thorpej 	struct vr_descsoft *ds;
   1366  1.23   thorpej 	int i;
   1367  1.23   thorpej 
   1368  1.23   thorpej 	for (i = 0; i < VR_NRXDESC; i++) {
   1369  1.23   thorpej 		ds = VR_DSRX(sc, i);
   1370  1.23   thorpej 		if (ds->ds_mbuf != NULL) {
   1371  1.23   thorpej 			bus_dmamap_unload(sc->vr_dmat, ds->ds_dmamap);
   1372  1.23   thorpej 			m_freem(ds->ds_mbuf);
   1373  1.23   thorpej 			ds->ds_mbuf = NULL;
   1374  1.23   thorpej 		}
   1375  1.23   thorpej 	}
   1376  1.23   thorpej }
   1377  1.23   thorpej 
   1378  1.23   thorpej /*
   1379   1.1  sakamoto  * Stop the adapter and free any mbufs allocated to the
   1380  1.18   thorpej  * transmit lists.
   1381   1.1  sakamoto  */
   1382  1.15   thorpej static void
   1383  1.23   thorpej vr_stop(sc, drain)
   1384  1.15   thorpej 	struct vr_softc *sc;
   1385  1.23   thorpej 	int drain;
   1386   1.1  sakamoto {
   1387  1.18   thorpej 	struct vr_descsoft *ds;
   1388  1.15   thorpej 	struct ifnet *ifp;
   1389  1.15   thorpej 	int i;
   1390   1.1  sakamoto 
   1391  1.11   thorpej 	/* Cancel one second timer. */
   1392  1.11   thorpej 	untimeout(vr_tick, sc);
   1393  1.28   thorpej 
   1394  1.28   thorpej 	/* Down the MII. */
   1395  1.28   thorpej 	mii_down(&sc->vr_mii);
   1396  1.11   thorpej 
   1397   1.6   thorpej 	ifp = &sc->vr_ec.ec_if;
   1398   1.1  sakamoto 	ifp->if_timer = 0;
   1399   1.1  sakamoto 
   1400   1.1  sakamoto 	VR_SETBIT16(sc, VR_COMMAND, VR_CMD_STOP);
   1401   1.1  sakamoto 	VR_CLRBIT16(sc, VR_COMMAND, (VR_CMD_RX_ON|VR_CMD_TX_ON));
   1402   1.1  sakamoto 	CSR_WRITE_2(sc, VR_IMR, 0x0000);
   1403   1.1  sakamoto 	CSR_WRITE_4(sc, VR_TXADDR, 0x00000000);
   1404   1.1  sakamoto 	CSR_WRITE_4(sc, VR_RXADDR, 0x00000000);
   1405   1.1  sakamoto 
   1406   1.1  sakamoto 	/*
   1407  1.18   thorpej 	 * Release any queued transmit buffers.
   1408   1.1  sakamoto 	 */
   1409  1.18   thorpej 	for (i = 0; i < VR_NTXDESC; i++) {
   1410  1.18   thorpej 		ds = VR_DSTX(sc, i);
   1411  1.18   thorpej 		if (ds->ds_mbuf != NULL) {
   1412  1.18   thorpej 			bus_dmamap_unload(sc->vr_dmat, ds->ds_dmamap);
   1413  1.18   thorpej 			m_freem(ds->ds_mbuf);
   1414  1.18   thorpej 			ds->ds_mbuf = NULL;
   1415   1.1  sakamoto 		}
   1416   1.1  sakamoto 	}
   1417   1.1  sakamoto 
   1418  1.23   thorpej 	if (drain) {
   1419  1.23   thorpej 		/*
   1420  1.23   thorpej 		 * Release the receive buffers.
   1421  1.23   thorpej 		 */
   1422  1.23   thorpej 		vr_rxdrain(sc);
   1423  1.23   thorpej 	}
   1424  1.23   thorpej 
   1425   1.1  sakamoto 	/*
   1426  1.18   thorpej 	 * Mark the interface down and cancel the watchdog timer.
   1427   1.1  sakamoto 	 */
   1428   1.1  sakamoto 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   1429  1.18   thorpej 	ifp->if_timer = 0;
   1430   1.1  sakamoto }
   1431   1.1  sakamoto 
   1432   1.3  sakamoto static struct vr_type *vr_lookup __P((struct pci_attach_args *));
   1433   1.2  sakamoto static int vr_probe __P((struct device *, struct cfdata *, void *));
   1434   1.2  sakamoto static void vr_attach __P((struct device *, struct device *, void *));
   1435   1.2  sakamoto static void vr_shutdown __P((void *));
   1436   1.2  sakamoto 
   1437   1.2  sakamoto struct cfattach vr_ca = {
   1438   1.2  sakamoto 	sizeof (struct vr_softc), vr_probe, vr_attach
   1439   1.2  sakamoto };
   1440   1.2  sakamoto 
   1441   1.3  sakamoto static struct vr_type *
   1442   1.3  sakamoto vr_lookup(pa)
   1443   1.3  sakamoto 	struct pci_attach_args *pa;
   1444   1.3  sakamoto {
   1445   1.3  sakamoto 	struct vr_type *vrt;
   1446   1.3  sakamoto 
   1447   1.3  sakamoto 	for (vrt = vr_devs; vrt->vr_name != NULL; vrt++) {
   1448   1.3  sakamoto 		if (PCI_VENDOR(pa->pa_id) == vrt->vr_vid &&
   1449   1.3  sakamoto 		    PCI_PRODUCT(pa->pa_id) == vrt->vr_did)
   1450   1.3  sakamoto 			return (vrt);
   1451   1.3  sakamoto 	}
   1452   1.3  sakamoto 	return (NULL);
   1453   1.3  sakamoto }
   1454   1.3  sakamoto 
   1455   1.2  sakamoto static int
   1456   1.2  sakamoto vr_probe(parent, match, aux)
   1457   1.2  sakamoto 	struct device *parent;
   1458   1.2  sakamoto 	struct cfdata *match;
   1459   1.2  sakamoto 	void *aux;
   1460   1.2  sakamoto {
   1461   1.2  sakamoto 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
   1462   1.2  sakamoto 
   1463   1.3  sakamoto 	if (vr_lookup(pa) != NULL)
   1464   1.3  sakamoto 		return (1);
   1465   1.2  sakamoto 
   1466   1.2  sakamoto 	return (0);
   1467   1.2  sakamoto }
   1468   1.2  sakamoto 
   1469   1.2  sakamoto /*
   1470   1.2  sakamoto  * Stop all chip I/O so that the kernel's probe routines don't
   1471   1.2  sakamoto  * get confused by errant DMAs when rebooting.
   1472   1.2  sakamoto  */
   1473  1.15   thorpej static void
   1474  1.15   thorpej vr_shutdown(arg)
   1475   1.2  sakamoto 	void *arg;
   1476   1.2  sakamoto {
   1477  1.15   thorpej 	struct vr_softc *sc = (struct vr_softc *)arg;
   1478   1.2  sakamoto 
   1479  1.23   thorpej 	vr_stop(sc, 1);
   1480   1.2  sakamoto }
   1481   1.2  sakamoto 
   1482   1.2  sakamoto /*
   1483   1.2  sakamoto  * Attach the interface. Allocate softc structures, do ifmedia
   1484   1.2  sakamoto  * setup and ethernet/BPF attach.
   1485   1.2  sakamoto  */
   1486   1.2  sakamoto static void
   1487   1.2  sakamoto vr_attach(parent, self, aux)
   1488  1.15   thorpej 	struct device *parent;
   1489  1.15   thorpej 	struct device *self;
   1490  1.15   thorpej 	void *aux;
   1491   1.2  sakamoto {
   1492  1.15   thorpej 	struct vr_softc *sc = (struct vr_softc *) self;
   1493  1.15   thorpej 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
   1494  1.18   thorpej 	bus_dma_segment_t seg;
   1495  1.15   thorpej 	struct vr_type *vrt;
   1496  1.15   thorpej 	u_int32_t command;
   1497  1.15   thorpej 	struct ifnet *ifp;
   1498  1.15   thorpej 	u_char eaddr[ETHER_ADDR_LEN];
   1499  1.18   thorpej 	int i, rseg, error;
   1500  1.15   thorpej 
   1501   1.2  sakamoto #define	PCI_CONF_WRITE(r, v)	pci_conf_write(pa->pa_pc, pa->pa_tag, (r), (v))
   1502   1.2  sakamoto #define	PCI_CONF_READ(r)	pci_conf_read(pa->pa_pc, pa->pa_tag, (r))
   1503   1.2  sakamoto 
   1504   1.3  sakamoto 	vrt = vr_lookup(pa);
   1505   1.3  sakamoto 	if (vrt == NULL) {
   1506   1.3  sakamoto 		printf("\n");
   1507   1.3  sakamoto 		panic("vr_attach: impossible");
   1508   1.3  sakamoto 	}
   1509   1.3  sakamoto 
   1510   1.3  sakamoto 	printf(": %s Ethernet\n", vrt->vr_name);
   1511   1.2  sakamoto 
   1512   1.2  sakamoto 	/*
   1513   1.2  sakamoto 	 * Handle power management nonsense.
   1514   1.2  sakamoto 	 */
   1515   1.2  sakamoto 
   1516   1.2  sakamoto 	command = PCI_CONF_READ(VR_PCI_CAPID) & 0x000000FF;
   1517   1.2  sakamoto 	if (command == 0x01) {
   1518   1.2  sakamoto 		command = PCI_CONF_READ(VR_PCI_PWRMGMTCTRL);
   1519   1.2  sakamoto 		if (command & VR_PSTATE_MASK) {
   1520  1.15   thorpej 			u_int32_t iobase, membase, irq;
   1521   1.2  sakamoto 
   1522   1.2  sakamoto 			/* Save important PCI config data. */
   1523   1.2  sakamoto 			iobase = PCI_CONF_READ(VR_PCI_LOIO);
   1524   1.2  sakamoto 			membase = PCI_CONF_READ(VR_PCI_LOMEM);
   1525   1.2  sakamoto 			irq = PCI_CONF_READ(VR_PCI_INTLINE);
   1526   1.2  sakamoto 
   1527   1.2  sakamoto 			/* Reset the power state. */
   1528   1.6   thorpej 			printf("%s: chip is in D%d power mode "
   1529   1.2  sakamoto 				"-- setting to D0\n",
   1530   1.6   thorpej 				sc->vr_dev.dv_xname, command & VR_PSTATE_MASK);
   1531   1.2  sakamoto 			command &= 0xFFFFFFFC;
   1532   1.2  sakamoto 			PCI_CONF_WRITE(VR_PCI_PWRMGMTCTRL, command);
   1533   1.2  sakamoto 
   1534   1.2  sakamoto 			/* Restore PCI config data. */
   1535   1.2  sakamoto 			PCI_CONF_WRITE(VR_PCI_LOIO, iobase);
   1536   1.2  sakamoto 			PCI_CONF_WRITE(VR_PCI_LOMEM, membase);
   1537   1.2  sakamoto 			PCI_CONF_WRITE(VR_PCI_INTLINE, irq);
   1538   1.2  sakamoto 		}
   1539   1.2  sakamoto 	}
   1540   1.2  sakamoto 
   1541  1.19   thorpej 	/* Make sure bus mastering is enabled. */
   1542  1.19   thorpej 	command = PCI_CONF_READ(PCI_COMMAND_STATUS_REG);
   1543  1.19   thorpej 	command |= PCI_COMMAND_MASTER_ENABLE;
   1544  1.19   thorpej 	PCI_CONF_WRITE(PCI_COMMAND_STATUS_REG, command);
   1545  1.19   thorpej 
   1546   1.2  sakamoto 	/*
   1547   1.2  sakamoto 	 * Map control/status registers.
   1548   1.2  sakamoto 	 */
   1549   1.2  sakamoto 	{
   1550   1.2  sakamoto 		bus_space_tag_t iot, memt;
   1551   1.2  sakamoto 		bus_space_handle_t ioh, memh;
   1552   1.2  sakamoto 		int ioh_valid, memh_valid;
   1553   1.2  sakamoto 		pci_intr_handle_t intrhandle;
   1554   1.2  sakamoto 		const char *intrstr;
   1555   1.2  sakamoto 
   1556   1.2  sakamoto 		ioh_valid = (pci_mapreg_map(pa, VR_PCI_LOIO,
   1557   1.2  sakamoto 			PCI_MAPREG_TYPE_IO, 0,
   1558   1.2  sakamoto 			&iot, &ioh, NULL, NULL) == 0);
   1559   1.2  sakamoto 		memh_valid = (pci_mapreg_map(pa, VR_PCI_LOMEM,
   1560   1.2  sakamoto 			PCI_MAPREG_TYPE_MEM |
   1561   1.2  sakamoto 			PCI_MAPREG_MEM_TYPE_32BIT,
   1562   1.2  sakamoto 			0, &memt, &memh, NULL, NULL) == 0);
   1563   1.2  sakamoto #if defined(VR_USEIOSPACE)
   1564   1.2  sakamoto 		if (ioh_valid) {
   1565  1.14   thorpej 			sc->vr_bst = iot;
   1566  1.14   thorpej 			sc->vr_bsh = ioh;
   1567   1.2  sakamoto 		} else if (memh_valid) {
   1568  1.14   thorpej 			sc->vr_bst = memt;
   1569  1.14   thorpej 			sc->vr_bsh = memh;
   1570   1.2  sakamoto 		}
   1571   1.2  sakamoto #else
   1572   1.2  sakamoto 		if (memh_valid) {
   1573  1.14   thorpej 			sc->vr_bst = memt;
   1574  1.14   thorpej 			sc->vr_bsh = memh;
   1575   1.2  sakamoto 		} else if (ioh_valid) {
   1576  1.14   thorpej 			sc->vr_bst = iot;
   1577  1.14   thorpej 			sc->vr_bsh = ioh;
   1578   1.2  sakamoto 		}
   1579   1.2  sakamoto #endif
   1580   1.2  sakamoto 		else {
   1581   1.2  sakamoto 			printf(": unable to map device registers\n");
   1582   1.2  sakamoto 			return;
   1583   1.2  sakamoto 		}
   1584   1.2  sakamoto 
   1585   1.2  sakamoto 		/* Allocate interrupt */
   1586   1.2  sakamoto 		if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin,
   1587   1.2  sakamoto 				pa->pa_intrline, &intrhandle)) {
   1588   1.6   thorpej 			printf("%s: couldn't map interrupt\n",
   1589   1.6   thorpej 				sc->vr_dev.dv_xname);
   1590  1.15   thorpej 			return;
   1591   1.2  sakamoto 		}
   1592   1.2  sakamoto 		intrstr = pci_intr_string(pa->pa_pc, intrhandle);
   1593   1.2  sakamoto 		sc->vr_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_NET,
   1594  1.16   thorpej 						vr_intr, sc);
   1595   1.2  sakamoto 		if (sc->vr_ih == NULL) {
   1596   1.6   thorpej 			printf("%s: couldn't establish interrupt",
   1597   1.6   thorpej 				sc->vr_dev.dv_xname);
   1598   1.2  sakamoto 			if (intrstr != NULL)
   1599   1.2  sakamoto 				printf(" at %s", intrstr);
   1600   1.2  sakamoto 			printf("\n");
   1601   1.2  sakamoto 		}
   1602   1.6   thorpej 		printf("%s: interrupting at %s\n",
   1603   1.6   thorpej 			sc->vr_dev.dv_xname, intrstr);
   1604   1.2  sakamoto 	}
   1605   1.2  sakamoto 
   1606   1.2  sakamoto 	/* Reset the adapter. */
   1607   1.2  sakamoto 	vr_reset(sc);
   1608   1.2  sakamoto 
   1609   1.2  sakamoto 	/*
   1610   1.2  sakamoto 	 * Get station address. The way the Rhine chips work,
   1611   1.2  sakamoto 	 * you're not allowed to directly access the EEPROM once
   1612   1.2  sakamoto 	 * they've been programmed a special way. Consequently,
   1613   1.2  sakamoto 	 * we need to read the node address from the PAR0 and PAR1
   1614   1.2  sakamoto 	 * registers.
   1615   1.2  sakamoto 	 */
   1616   1.2  sakamoto 	VR_SETBIT(sc, VR_EECSR, VR_EECSR_LOAD);
   1617   1.2  sakamoto 	DELAY(200);
   1618   1.2  sakamoto 	for (i = 0; i < ETHER_ADDR_LEN; i++)
   1619   1.2  sakamoto 		eaddr[i] = CSR_READ_1(sc, VR_PAR0 + i);
   1620   1.2  sakamoto 
   1621   1.2  sakamoto 	/*
   1622   1.2  sakamoto 	 * A Rhine chip was detected. Inform the world.
   1623   1.2  sakamoto 	 */
   1624   1.6   thorpej 	printf("%s: Ethernet address: %s\n",
   1625   1.6   thorpej 		sc->vr_dev.dv_xname, ether_sprintf(eaddr));
   1626   1.2  sakamoto 
   1627   1.2  sakamoto 	bcopy(eaddr, sc->vr_enaddr, ETHER_ADDR_LEN);
   1628   1.2  sakamoto 
   1629  1.18   thorpej 	sc->vr_dmat = pa->pa_dmat;
   1630  1.18   thorpej 
   1631  1.18   thorpej 	/*
   1632  1.18   thorpej 	 * Allocate the control data structures, and create and load
   1633  1.18   thorpej 	 * the DMA map for it.
   1634  1.18   thorpej 	 */
   1635  1.18   thorpej 	if ((error = bus_dmamem_alloc(sc->vr_dmat,
   1636  1.18   thorpej 	    sizeof(struct vr_control_data), PAGE_SIZE, 0, &seg, 1, &rseg,
   1637  1.18   thorpej 	    0)) != 0) {
   1638  1.18   thorpej 		printf("%s: unable to allocate control data, error = %d\n",
   1639  1.18   thorpej 		    sc->vr_dev.dv_xname, error);
   1640  1.18   thorpej 		goto fail_0;
   1641  1.18   thorpej 	}
   1642  1.18   thorpej 
   1643  1.18   thorpej 	if ((error = bus_dmamem_map(sc->vr_dmat, &seg, rseg,
   1644  1.18   thorpej 	    sizeof(struct vr_control_data), (caddr_t *)&sc->vr_control_data,
   1645  1.18   thorpej 	    BUS_DMA_COHERENT)) != 0) {
   1646  1.18   thorpej 		printf("%s: unable to map control data, error = %d\n",
   1647  1.18   thorpej 		    sc->vr_dev.dv_xname, error);
   1648  1.18   thorpej 		goto fail_1;
   1649  1.18   thorpej 	}
   1650  1.18   thorpej 
   1651  1.18   thorpej 	if ((error = bus_dmamap_create(sc->vr_dmat,
   1652  1.18   thorpej 	    sizeof(struct vr_control_data), 1,
   1653  1.18   thorpej 	    sizeof(struct vr_control_data), 0, 0,
   1654  1.18   thorpej 	    &sc->vr_cddmamap)) != 0) {
   1655  1.18   thorpej 		printf("%s: unable to create control data DMA map, "
   1656  1.18   thorpej 		    "error = %d\n", sc->vr_dev.dv_xname, error);
   1657  1.18   thorpej 		goto fail_2;
   1658  1.18   thorpej 	}
   1659  1.18   thorpej 
   1660  1.18   thorpej 	if ((error = bus_dmamap_load(sc->vr_dmat, sc->vr_cddmamap,
   1661  1.18   thorpej 	    sc->vr_control_data, sizeof(struct vr_control_data), NULL,
   1662  1.18   thorpej 	    0)) != 0) {
   1663  1.18   thorpej 		printf("%s: unable to load control data DMA map, error = %d\n",
   1664  1.18   thorpej 		    sc->vr_dev.dv_xname, error);
   1665  1.18   thorpej 		goto fail_3;
   1666  1.18   thorpej 	}
   1667  1.18   thorpej 
   1668  1.18   thorpej 	/*
   1669  1.18   thorpej 	 * Create the transmit buffer DMA maps.
   1670  1.18   thorpej 	 */
   1671  1.18   thorpej 	for (i = 0; i < VR_NTXDESC; i++) {
   1672  1.18   thorpej 		if ((error = bus_dmamap_create(sc->vr_dmat, MCLBYTES,
   1673  1.18   thorpej 		    1, MCLBYTES, 0, 0,
   1674  1.18   thorpej 		    &VR_DSTX(sc, i)->ds_dmamap)) != 0) {
   1675  1.18   thorpej 			printf("%s: unable to create tx DMA map %d, "
   1676  1.18   thorpej 			    "error = %d\n", sc->vr_dev.dv_xname, i, error);
   1677  1.18   thorpej 			goto fail_4;
   1678  1.18   thorpej 		}
   1679  1.18   thorpej 	}
   1680  1.18   thorpej 
   1681  1.18   thorpej 	/*
   1682  1.18   thorpej 	 * Create the receive buffer DMA maps.
   1683  1.18   thorpej 	 */
   1684  1.18   thorpej 	for (i = 0; i < VR_NRXDESC; i++) {
   1685  1.18   thorpej 		if ((error = bus_dmamap_create(sc->vr_dmat, MCLBYTES, 1,
   1686  1.18   thorpej 		    MCLBYTES, 0, 0,
   1687  1.18   thorpej 		    &VR_DSRX(sc, i)->ds_dmamap)) != 0) {
   1688  1.18   thorpej 			printf("%s: unable to create rx DMA map %d, "
   1689  1.18   thorpej 			    "error = %d\n", sc->vr_dev.dv_xname, i, error);
   1690  1.18   thorpej 			goto fail_5;
   1691  1.18   thorpej 		}
   1692  1.23   thorpej 		VR_DSRX(sc, i)->ds_mbuf = NULL;
   1693   1.2  sakamoto 	}
   1694   1.2  sakamoto 
   1695   1.6   thorpej 	ifp = &sc->vr_ec.ec_if;
   1696   1.2  sakamoto 	ifp->if_softc = sc;
   1697   1.2  sakamoto 	ifp->if_mtu = ETHERMTU;
   1698   1.2  sakamoto 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
   1699   1.2  sakamoto 	ifp->if_ioctl = vr_ioctl;
   1700   1.2  sakamoto 	ifp->if_start = vr_start;
   1701   1.2  sakamoto 	ifp->if_watchdog = vr_watchdog;
   1702   1.2  sakamoto 	ifp->if_baudrate = 10000000;
   1703   1.2  sakamoto 	bcopy(sc->vr_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
   1704   1.2  sakamoto 
   1705   1.2  sakamoto 	/*
   1706  1.11   thorpej 	 * Initialize MII/media info.
   1707   1.2  sakamoto 	 */
   1708  1.11   thorpej 	sc->vr_mii.mii_ifp = ifp;
   1709  1.11   thorpej 	sc->vr_mii.mii_readreg = vr_mii_readreg;
   1710  1.11   thorpej 	sc->vr_mii.mii_writereg = vr_mii_writereg;
   1711  1.11   thorpej 	sc->vr_mii.mii_statchg = vr_mii_statchg;
   1712  1.11   thorpej 	ifmedia_init(&sc->vr_mii.mii_media, 0, vr_ifmedia_upd, vr_ifmedia_sts);
   1713  1.31   thorpej 	mii_attach(&sc->vr_dev, &sc->vr_mii, 0xffffffff, MII_PHY_ANY,
   1714  1.32   thorpej 	    MII_OFFSET_ANY, 0);
   1715  1.11   thorpej 	if (LIST_FIRST(&sc->vr_mii.mii_phys) == NULL) {
   1716  1.11   thorpej 		ifmedia_add(&sc->vr_mii.mii_media, IFM_ETHER|IFM_NONE, 0, NULL);
   1717  1.11   thorpej 		ifmedia_set(&sc->vr_mii.mii_media, IFM_ETHER|IFM_NONE);
   1718  1.11   thorpej 	} else
   1719  1.11   thorpej 		ifmedia_set(&sc->vr_mii.mii_media, IFM_ETHER|IFM_AUTO);
   1720   1.2  sakamoto 
   1721   1.2  sakamoto 	/*
   1722   1.2  sakamoto 	 * Call MI attach routines.
   1723   1.2  sakamoto 	 */
   1724   1.2  sakamoto 	if_attach(ifp);
   1725   1.2  sakamoto 	ether_ifattach(ifp, sc->vr_enaddr);
   1726   1.2  sakamoto 
   1727   1.2  sakamoto #if NBPFILTER > 0
   1728   1.6   thorpej 	bpfattach(&sc->vr_ec.ec_if.if_bpf,
   1729   1.2  sakamoto 		ifp, DLT_EN10MB, sizeof (struct ether_header));
   1730   1.2  sakamoto #endif
   1731   1.2  sakamoto 
   1732   1.2  sakamoto 	sc->vr_ats = shutdownhook_establish(vr_shutdown, sc);
   1733   1.2  sakamoto 	if (sc->vr_ats == NULL)
   1734   1.2  sakamoto 		printf("%s: warning: couldn't establish shutdown hook\n",
   1735   1.2  sakamoto 			sc->vr_dev.dv_xname);
   1736  1.18   thorpej 	return;
   1737  1.18   thorpej 
   1738  1.18   thorpej  fail_5:
   1739  1.18   thorpej 	for (i = 0; i < VR_NRXDESC; i++) {
   1740  1.18   thorpej 		if (sc->vr_rxsoft[i].ds_dmamap != NULL)
   1741  1.18   thorpej 			bus_dmamap_destroy(sc->vr_dmat,
   1742  1.18   thorpej 			    sc->vr_rxsoft[i].ds_dmamap);
   1743  1.18   thorpej 	}
   1744  1.18   thorpej  fail_4:
   1745  1.18   thorpej 	for (i = 0; i < VR_NTXDESC; i++) {
   1746  1.18   thorpej 		if (sc->vr_txsoft[i].ds_dmamap != NULL)
   1747  1.18   thorpej 			bus_dmamap_destroy(sc->vr_dmat,
   1748  1.18   thorpej 			    sc->vr_txsoft[i].ds_dmamap);
   1749  1.18   thorpej 	}
   1750  1.18   thorpej 	bus_dmamap_unload(sc->vr_dmat, sc->vr_cddmamap);
   1751  1.18   thorpej  fail_3:
   1752  1.18   thorpej 	bus_dmamap_destroy(sc->vr_dmat, sc->vr_cddmamap);
   1753  1.18   thorpej  fail_2:
   1754  1.18   thorpej 	bus_dmamem_unmap(sc->vr_dmat, (caddr_t)sc->vr_control_data,
   1755  1.18   thorpej 	    sizeof(struct vr_control_data));
   1756  1.18   thorpej  fail_1:
   1757  1.18   thorpej 	bus_dmamem_free(sc->vr_dmat, &seg, rseg);
   1758  1.18   thorpej  fail_0:
   1759  1.18   thorpej 	return;
   1760   1.2  sakamoto }
   1761