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