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