Home | History | Annotate | Line # | Download | only in hpc
if_sq.c revision 1.43.24.2
      1  1.43.24.2     skrll /*	$NetBSD: if_sq.c,v 1.43.24.2 2016/03/19 11:30:04 skrll Exp $	*/
      2        1.1   thorpej 
      3        1.1   thorpej /*
      4        1.1   thorpej  * Copyright (c) 2001 Rafal K. Boni
      5        1.1   thorpej  * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
      6        1.1   thorpej  * All rights reserved.
      7        1.1   thorpej  *
      8       1.10    simonb  * Portions of this code are derived from software contributed to The
      9       1.10    simonb  * NetBSD Foundation by Jason R. Thorpe of the Numerical Aerospace
     10        1.1   thorpej  * Simulation Facility, NASA Ames Research Center.
     11       1.10    simonb  *
     12        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     13        1.1   thorpej  * modification, are permitted provided that the following conditions
     14        1.1   thorpej  * are met:
     15        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     16        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     17        1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     18        1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     19        1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     20        1.1   thorpej  * 3. The name of the author may not be used to endorse or promote products
     21        1.1   thorpej  *    derived from this software without specific prior written permission.
     22       1.10    simonb  *
     23        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24        1.1   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25        1.1   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26        1.1   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27        1.1   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28        1.1   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29        1.1   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30        1.1   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31        1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32        1.1   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33        1.1   thorpej  */
     34       1.17     lukem 
     35       1.17     lukem #include <sys/cdefs.h>
     36  1.43.24.2     skrll __KERNEL_RCSID(0, "$NetBSD: if_sq.c,v 1.43.24.2 2016/03/19 11:30:04 skrll Exp $");
     37        1.1   thorpej 
     38        1.1   thorpej 
     39        1.1   thorpej #include <sys/param.h>
     40       1.10    simonb #include <sys/systm.h>
     41        1.1   thorpej #include <sys/device.h>
     42        1.1   thorpej #include <sys/callout.h>
     43       1.10    simonb #include <sys/mbuf.h>
     44        1.1   thorpej #include <sys/malloc.h>
     45        1.1   thorpej #include <sys/kernel.h>
     46        1.1   thorpej #include <sys/socket.h>
     47        1.1   thorpej #include <sys/ioctl.h>
     48        1.1   thorpej #include <sys/errno.h>
     49        1.1   thorpej #include <sys/syslog.h>
     50        1.1   thorpej 
     51        1.1   thorpej #include <uvm/uvm_extern.h>
     52        1.1   thorpej 
     53        1.1   thorpej #include <machine/endian.h>
     54        1.1   thorpej 
     55        1.1   thorpej #include <net/if.h>
     56        1.1   thorpej #include <net/if_dl.h>
     57        1.1   thorpej #include <net/if_media.h>
     58        1.1   thorpej #include <net/if_ether.h>
     59        1.1   thorpej 
     60        1.1   thorpej #include <net/bpf.h>
     61        1.1   thorpej 
     62       1.42    dyoung #include <sys/bus.h>
     63        1.1   thorpej #include <machine/intr.h>
     64       1.32    rumble #include <machine/sysconf.h>
     65        1.1   thorpej 
     66        1.1   thorpej #include <dev/ic/seeq8003reg.h>
     67        1.1   thorpej 
     68        1.1   thorpej #include <sgimips/hpc/sqvar.h>
     69        1.1   thorpej #include <sgimips/hpc/hpcvar.h>
     70        1.1   thorpej #include <sgimips/hpc/hpcreg.h>
     71        1.1   thorpej 
     72        1.5   thorpej #include <dev/arcbios/arcbios.h>
     73        1.5   thorpej #include <dev/arcbios/arcbiosvar.h>
     74        1.5   thorpej 
     75        1.1   thorpej #define static
     76        1.1   thorpej 
     77        1.1   thorpej /*
     78        1.1   thorpej  * Short TODO list:
     79        1.1   thorpej  *	(1) Do counters for bad-RX packets.
     80        1.9     rafal  *	(2) Allow multi-segment transmits, instead of copying to a single,
     81        1.1   thorpej  *	    contiguous mbuf.
     82        1.9     rafal  *	(3) Verify sq_stop() turns off enough stuff; I was still getting
     83        1.1   thorpej  *	    seeq interrupts after sq_stop().
     84       1.20    sekiya  *	(4) Implement EDLC modes: especially packet auto-pad and simplex
     85        1.1   thorpej  *	    mode.
     86       1.20    sekiya  *	(5) Should the driver filter out its own transmissions in non-EDLC
     87        1.1   thorpej  *	    mode?
     88       1.20    sekiya  *	(6) Multicast support -- multicast filter, address management, ...
     89       1.20    sekiya  *	(7) Deal with RB0 (recv buffer overflow) on reception.  Will need
     90        1.1   thorpej  *	    to figure out if RB0 is read-only as stated in one spot in the
     91        1.1   thorpej  *	    HPC spec or read-write (ie, is the 'write a one to clear it')
     92        1.1   thorpej  *	    the correct thing?
     93        1.1   thorpej  */
     94        1.1   thorpej 
     95       1.20    sekiya #if defined(SQ_DEBUG)
     96       1.20    sekiya  int sq_debug = 0;
     97       1.20    sekiya  #define SQ_DPRINTF(x) if (sq_debug) printf x
     98       1.20    sekiya #else
     99       1.20    sekiya  #define SQ_DPRINTF(x)
    100       1.20    sekiya #endif
    101       1.20    sekiya 
    102       1.39   tsutsui static int	sq_match(device_t, cfdata_t, void *);
    103       1.39   tsutsui static void	sq_attach(device_t, device_t, void *);
    104        1.1   thorpej static int	sq_init(struct ifnet *);
    105        1.1   thorpej static void	sq_start(struct ifnet *);
    106        1.1   thorpej static void	sq_stop(struct ifnet *, int);
    107        1.1   thorpej static void	sq_watchdog(struct ifnet *);
    108       1.33  christos static int	sq_ioctl(struct ifnet *, u_long, void *);
    109        1.1   thorpej 
    110        1.3   thorpej static void	sq_set_filter(struct sq_softc *);
    111        1.1   thorpej static int	sq_intr(void *);
    112        1.1   thorpej static int	sq_rxintr(struct sq_softc *);
    113        1.1   thorpej static int	sq_txintr(struct sq_softc *);
    114       1.23    rumble static void	sq_txring_hpc1(struct sq_softc *);
    115       1.23    rumble static void	sq_txring_hpc3(struct sq_softc *);
    116        1.1   thorpej static void	sq_reset(struct sq_softc *);
    117       1.40   tsutsui static int	sq_add_rxbuf(struct sq_softc *, int);
    118       1.40   tsutsui static void	sq_dump_buffer(paddr_t addr, psize_t len);
    119       1.22    rumble static void	sq_trace_dump(struct sq_softc *);
    120        1.1   thorpej 
    121       1.39   tsutsui CFATTACH_DECL_NEW(sq, sizeof(struct sq_softc),
    122       1.14   thorpej     sq_match, sq_attach, NULL, NULL);
    123        1.1   thorpej 
    124       1.40   tsutsui #define ETHER_PAD_LEN (ETHER_MIN_LEN - ETHER_CRC_LEN)
    125       1.16    bouyer 
    126       1.24    rumble #define sq_seeq_read(sc, off) \
    127  1.43.24.1     skrll 	bus_space_read_1(sc->sc_regt, sc->sc_regh, (off << 2) + 3)
    128       1.24    rumble #define sq_seeq_write(sc, off, val) \
    129  1.43.24.1     skrll 	bus_space_write_1(sc->sc_regt, sc->sc_regh, (off << 2) + 3, val)
    130       1.24    rumble 
    131       1.24    rumble #define sq_hpc_read(sc, off) \
    132       1.40   tsutsui 	bus_space_read_4(sc->sc_hpct, sc->sc_hpch, off)
    133       1.24    rumble #define sq_hpc_write(sc, off, val) \
    134       1.40   tsutsui 	bus_space_write_4(sc->sc_hpct, sc->sc_hpch, off, val)
    135       1.24    rumble 
    136       1.30    rumble /* MAC address offset for non-onboard implementations */
    137       1.30    rumble #define SQ_HPC_EEPROM_ENADDR	250
    138       1.30    rumble 
    139       1.30    rumble #define SGI_OUI_0		0x08
    140       1.30    rumble #define SGI_OUI_1		0x00
    141       1.30    rumble #define SGI_OUI_2		0x69
    142       1.30    rumble 
    143        1.1   thorpej static int
    144       1.39   tsutsui sq_match(device_t parent, cfdata_t cf, void *aux)
    145        1.1   thorpej {
    146        1.8   thorpej 	struct hpc_attach_args *ha = aux;
    147        1.8   thorpej 
    148       1.32    rumble 	if (strcmp(ha->ha_name, cf->cf_name) == 0) {
    149       1.34      matt 		vaddr_t reset, txstat;
    150       1.32    rumble 
    151       1.32    rumble 		reset = MIPS_PHYS_TO_KSEG1(ha->ha_sh +
    152       1.32    rumble 		    ha->ha_dmaoff + ha->hpc_regs->enetr_reset);
    153       1.32    rumble 		txstat = MIPS_PHYS_TO_KSEG1(ha->ha_sh +
    154       1.32    rumble 		    ha->ha_devoff + (SEEQ_TXSTAT << 2));
    155       1.32    rumble 
    156       1.32    rumble 		if (platform.badaddr((void *)reset, sizeof(reset)))
    157       1.40   tsutsui 			return 0;
    158       1.32    rumble 
    159       1.32    rumble 		*(volatile uint32_t *)reset = 0x1;
    160       1.32    rumble 		delay(20);
    161       1.32    rumble 		*(volatile uint32_t *)reset = 0x0;
    162       1.32    rumble 
    163       1.32    rumble 		if (platform.badaddr((void *)txstat, sizeof(txstat)))
    164       1.40   tsutsui 			return 0;
    165       1.32    rumble 
    166       1.32    rumble 		if ((*(volatile uint32_t *)txstat & 0xff) == TXSTAT_OLDNEW)
    167       1.40   tsutsui 			return 1;
    168       1.32    rumble 	}
    169        1.8   thorpej 
    170       1.40   tsutsui 	return 0;
    171        1.1   thorpej }
    172        1.1   thorpej 
    173        1.1   thorpej static void
    174       1.39   tsutsui sq_attach(device_t parent, device_t self, void *aux)
    175        1.1   thorpej {
    176        1.1   thorpej 	int i, err;
    177       1.28    martin 	const char* macaddr;
    178       1.39   tsutsui 	struct sq_softc *sc = device_private(self);
    179        1.1   thorpej 	struct hpc_attach_args *haa = aux;
    180       1.10    simonb 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    181        1.1   thorpej 
    182       1.39   tsutsui 	sc->sc_dev = self;
    183        1.8   thorpej 	sc->sc_hpct = haa->ha_st;
    184       1.20    sekiya 	sc->hpc_regs = haa->hpc_regs;      /* HPC register definitions */
    185       1.20    sekiya 
    186        1.8   thorpej 	if ((err = bus_space_subregion(haa->ha_st, haa->ha_sh,
    187       1.40   tsutsui 	    haa->ha_dmaoff, sc->hpc_regs->enet_regs_size,
    188       1.40   tsutsui 	    &sc->sc_hpch)) != 0) {
    189        1.1   thorpej 		printf(": unable to map HPC DMA registers, error = %d\n", err);
    190        1.1   thorpej 		goto fail_0;
    191        1.1   thorpej 	}
    192        1.1   thorpej 
    193        1.8   thorpej 	sc->sc_regt = haa->ha_st;
    194        1.8   thorpej 	if ((err = bus_space_subregion(haa->ha_st, haa->ha_sh,
    195       1.40   tsutsui 	    haa->ha_devoff, sc->hpc_regs->enet_devregs_size,
    196       1.40   tsutsui 	    &sc->sc_regh)) != 0) {
    197        1.1   thorpej 		printf(": unable to map Seeq registers, error = %d\n", err);
    198        1.1   thorpej 		goto fail_0;
    199        1.1   thorpej 	}
    200        1.1   thorpej 
    201        1.8   thorpej 	sc->sc_dmat = haa->ha_dmat;
    202        1.1   thorpej 
    203       1.10    simonb 	if ((err = bus_dmamem_alloc(sc->sc_dmat, sizeof(struct sq_control),
    204       1.40   tsutsui 	    PAGE_SIZE, PAGE_SIZE, &sc->sc_cdseg, 1, &sc->sc_ncdseg,
    205       1.40   tsutsui 	    BUS_DMA_NOWAIT)) != 0) {
    206        1.1   thorpej 		printf(": unable to allocate control data, error = %d\n", err);
    207        1.1   thorpej 		goto fail_0;
    208        1.1   thorpej 	}
    209        1.1   thorpej 
    210        1.1   thorpej 	if ((err = bus_dmamem_map(sc->sc_dmat, &sc->sc_cdseg, sc->sc_ncdseg,
    211       1.40   tsutsui 	    sizeof(struct sq_control), (void **)&sc->sc_control,
    212       1.40   tsutsui 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) {
    213        1.1   thorpej 		printf(": unable to map control data, error = %d\n", err);
    214        1.1   thorpej 		goto fail_1;
    215        1.1   thorpej 	}
    216        1.1   thorpej 
    217       1.40   tsutsui 	if ((err = bus_dmamap_create(sc->sc_dmat,
    218       1.40   tsutsui 	    sizeof(struct sq_control), 1, sizeof(struct sq_control), PAGE_SIZE,
    219       1.40   tsutsui 	    BUS_DMA_NOWAIT, &sc->sc_cdmap)) != 0) {
    220        1.1   thorpej 		printf(": unable to create DMA map for control data, error "
    221       1.40   tsutsui 		    "= %d\n", err);
    222        1.1   thorpej 		goto fail_2;
    223        1.1   thorpej 	}
    224        1.1   thorpej 
    225       1.40   tsutsui 	if ((err = bus_dmamap_load(sc->sc_dmat, sc->sc_cdmap,
    226       1.40   tsutsui 	    sc->sc_control, sizeof(struct sq_control), NULL,
    227       1.40   tsutsui 	    BUS_DMA_NOWAIT)) != 0) {
    228        1.1   thorpej 		printf(": unable to load DMA map for control data, error "
    229       1.40   tsutsui 		    "= %d\n", err);
    230        1.1   thorpej 		goto fail_3;
    231        1.1   thorpej 	}
    232        1.1   thorpej 
    233        1.7   thorpej 	memset(sc->sc_control, 0, sizeof(struct sq_control));
    234        1.1   thorpej 
    235        1.1   thorpej 	/* Create transmit buffer DMA maps */
    236        1.1   thorpej 	for (i = 0; i < SQ_NTXDESC; i++) {
    237       1.40   tsutsui 		if ((err = bus_dmamap_create(sc->sc_dmat,
    238       1.40   tsutsui 		    MCLBYTES, 1, MCLBYTES, 0,
    239       1.40   tsutsui 		    BUS_DMA_NOWAIT, &sc->sc_txmap[i])) != 0) {
    240       1.40   tsutsui 			printf(": unable to create tx DMA map %d, error = %d\n",
    241       1.40   tsutsui 			    i, err);
    242       1.40   tsutsui 			goto fail_4;
    243       1.40   tsutsui 		}
    244        1.1   thorpej 	}
    245        1.1   thorpej 
    246       1.20    sekiya 	/* Create receive buffer DMA maps */
    247        1.1   thorpej 	for (i = 0; i < SQ_NRXDESC; i++) {
    248       1.40   tsutsui 		if ((err = bus_dmamap_create(sc->sc_dmat,
    249       1.40   tsutsui 		    MCLBYTES, 1, MCLBYTES, 0,
    250       1.40   tsutsui 		    BUS_DMA_NOWAIT, &sc->sc_rxmap[i])) != 0) {
    251       1.40   tsutsui 			printf(": unable to create rx DMA map %d, error = %d\n",
    252       1.40   tsutsui 			    i, err);
    253       1.40   tsutsui 			goto fail_5;
    254       1.40   tsutsui 		}
    255        1.1   thorpej 	}
    256        1.1   thorpej 
    257        1.1   thorpej 	/* Pre-allocate the receive buffers.  */
    258        1.1   thorpej 	for (i = 0; i < SQ_NRXDESC; i++) {
    259        1.1   thorpej 		if ((err = sq_add_rxbuf(sc, i)) != 0) {
    260        1.1   thorpej 			printf(": unable to allocate or map rx buffer %d\n,"
    261       1.40   tsutsui 			    " error = %d\n", i, err);
    262        1.1   thorpej 			goto fail_6;
    263        1.1   thorpej 		}
    264        1.1   thorpej 	}
    265        1.1   thorpej 
    266       1.30    rumble 	memcpy(sc->sc_enaddr, &haa->hpc_eeprom[SQ_HPC_EEPROM_ENADDR],
    267       1.30    rumble 	    ETHER_ADDR_LEN);
    268       1.30    rumble 
    269       1.30    rumble 	/*
    270       1.30    rumble 	 * If our mac address is bogus, obtain it from ARCBIOS. This will
    271       1.30    rumble 	 * be true of the onboard HPC3 on IP22, since there is no eeprom,
    272       1.30    rumble 	 * but rather the DS1386 RTC's battery-backed ram is used.
    273       1.30    rumble 	 */
    274       1.40   tsutsui 	if (sc->sc_enaddr[0] != SGI_OUI_0 ||
    275       1.40   tsutsui 	    sc->sc_enaddr[1] != SGI_OUI_1 ||
    276       1.30    rumble 	    sc->sc_enaddr[2] != SGI_OUI_2) {
    277       1.41      matt 		macaddr = arcbios_GetEnvironmentVariable("eaddr");
    278       1.30    rumble 		if (macaddr == NULL) {
    279       1.30    rumble 			printf(": unable to get MAC address!\n");
    280       1.30    rumble 			goto fail_6;
    281       1.30    rumble 		}
    282       1.37   tsutsui 		ether_aton_r(sc->sc_enaddr, sizeof(sc->sc_enaddr), macaddr);
    283        1.1   thorpej 	}
    284        1.1   thorpej 
    285       1.11     rafal 	evcnt_attach_dynamic(&sc->sq_intrcnt, EVCNT_TYPE_INTR, NULL,
    286       1.39   tsutsui 	    device_xname(self), "intr");
    287       1.11     rafal 
    288        1.8   thorpej 	if ((cpu_intr_establish(haa->ha_irq, IPL_NET, sq_intr, sc)) == NULL) {
    289        1.1   thorpej 		printf(": unable to establish interrupt!\n");
    290        1.1   thorpej 		goto fail_6;
    291        1.1   thorpej 	}
    292        1.1   thorpej 
    293        1.3   thorpej 	/* Reset the chip to a known state. */
    294        1.3   thorpej 	sq_reset(sc);
    295        1.3   thorpej 
    296        1.3   thorpej 	/*
    297        1.3   thorpej 	 * Determine if we're an 8003 or 80c03 by setting the first
    298        1.3   thorpej 	 * MAC address register to non-zero, and then reading it back.
    299        1.3   thorpej 	 * If it's zero, we have an 80c03, because we will have read
    300        1.3   thorpej 	 * the TxCollLSB register.
    301        1.3   thorpej 	 */
    302       1.24    rumble 	sq_seeq_write(sc, SEEQ_TXCOLLS0, 0xa5);
    303       1.24    rumble 	if (sq_seeq_read(sc, SEEQ_TXCOLLS0) == 0)
    304        1.3   thorpej 		sc->sc_type = SQ_TYPE_80C03;
    305        1.3   thorpej 	else
    306        1.3   thorpej 		sc->sc_type = SQ_TYPE_8003;
    307       1.24    rumble 	sq_seeq_write(sc, SEEQ_TXCOLLS0, 0x00);
    308        1.1   thorpej 
    309        1.3   thorpej 	printf(": SGI Seeq %s\n",
    310        1.3   thorpej 	    sc->sc_type == SQ_TYPE_80C03 ? "80c03" : "8003");
    311        1.1   thorpej 
    312       1.39   tsutsui 	printf("%s: Ethernet address %s\n",
    313       1.39   tsutsui 	    device_xname(self), ether_sprintf(sc->sc_enaddr));
    314        1.1   thorpej 
    315       1.39   tsutsui 	strcpy(ifp->if_xname, device_xname(self));
    316        1.1   thorpej 	ifp->if_softc = sc;
    317        1.1   thorpej 	ifp->if_mtu = ETHERMTU;
    318        1.1   thorpej 	ifp->if_init = sq_init;
    319        1.1   thorpej 	ifp->if_stop = sq_stop;
    320        1.1   thorpej 	ifp->if_start = sq_start;
    321        1.1   thorpej 	ifp->if_ioctl = sq_ioctl;
    322        1.1   thorpej 	ifp->if_watchdog = sq_watchdog;
    323        1.3   thorpej 	ifp->if_flags = IFF_BROADCAST | IFF_NOTRAILERS | IFF_MULTICAST;
    324        1.1   thorpej 	IFQ_SET_READY(&ifp->if_snd);
    325        1.1   thorpej 
    326        1.1   thorpej 	if_attach(ifp);
    327        1.1   thorpej 	ether_ifattach(ifp, sc->sc_enaddr);
    328        1.1   thorpej 
    329       1.22    rumble 	memset(&sc->sq_trace, 0, sizeof(sc->sq_trace));
    330        1.1   thorpej 	/* Done! */
    331        1.1   thorpej 	return;
    332        1.1   thorpej 
    333        1.1   thorpej 	/*
    334        1.1   thorpej 	 * Free any resources we've allocated during the failed attach
    335        1.1   thorpej 	 * attempt.  Do this in reverse order and fall through.
    336        1.1   thorpej 	 */
    337       1.40   tsutsui  fail_6:
    338        1.1   thorpej 	for (i = 0; i < SQ_NRXDESC; i++) {
    339        1.1   thorpej 		if (sc->sc_rxmbuf[i] != NULL) {
    340        1.1   thorpej 			bus_dmamap_unload(sc->sc_dmat, sc->sc_rxmap[i]);
    341        1.1   thorpej 			m_freem(sc->sc_rxmbuf[i]);
    342        1.1   thorpej 		}
    343        1.1   thorpej 	}
    344       1.40   tsutsui  fail_5:
    345        1.1   thorpej 	for (i = 0; i < SQ_NRXDESC; i++) {
    346       1.40   tsutsui 		if (sc->sc_rxmap[i] != NULL)
    347       1.40   tsutsui 			bus_dmamap_destroy(sc->sc_dmat, sc->sc_rxmap[i]);
    348        1.1   thorpej 	}
    349       1.40   tsutsui  fail_4:
    350        1.1   thorpej 	for (i = 0; i < SQ_NTXDESC; i++) {
    351       1.40   tsutsui 		if (sc->sc_txmap[i] !=  NULL)
    352       1.40   tsutsui 			bus_dmamap_destroy(sc->sc_dmat, sc->sc_txmap[i]);
    353        1.1   thorpej 	}
    354        1.1   thorpej 	bus_dmamap_unload(sc->sc_dmat, sc->sc_cdmap);
    355       1.40   tsutsui  fail_3:
    356        1.1   thorpej 	bus_dmamap_destroy(sc->sc_dmat, sc->sc_cdmap);
    357       1.40   tsutsui  fail_2:
    358       1.40   tsutsui 	bus_dmamem_unmap(sc->sc_dmat,
    359       1.40   tsutsui 	    (void *)sc->sc_control, sizeof(struct sq_control));
    360       1.40   tsutsui  fail_1:
    361        1.1   thorpej 	bus_dmamem_free(sc->sc_dmat, &sc->sc_cdseg, sc->sc_ncdseg);
    362       1.40   tsutsui  fail_0:
    363        1.1   thorpej 	return;
    364        1.1   thorpej }
    365        1.1   thorpej 
    366        1.1   thorpej /* Set up data to get the interface up and running. */
    367        1.1   thorpej int
    368        1.1   thorpej sq_init(struct ifnet *ifp)
    369        1.1   thorpej {
    370        1.1   thorpej 	int i;
    371        1.1   thorpej 	struct sq_softc *sc = ifp->if_softc;
    372        1.1   thorpej 
    373        1.1   thorpej 	/* Cancel any in-progress I/O */
    374        1.1   thorpej 	sq_stop(ifp, 0);
    375        1.1   thorpej 
    376        1.1   thorpej 	sc->sc_nextrx = 0;
    377        1.1   thorpej 
    378        1.1   thorpej 	sc->sc_nfreetx = SQ_NTXDESC;
    379        1.1   thorpej 	sc->sc_nexttx = sc->sc_prevtx = 0;
    380        1.1   thorpej 
    381       1.22    rumble 	SQ_TRACE(SQ_RESET, sc, 0, 0);
    382        1.1   thorpej 
    383        1.1   thorpej 	/* Set into 8003 mode, bank 0 to program ethernet address */
    384       1.24    rumble 	sq_seeq_write(sc, SEEQ_TXCMD, TXCMD_BANK0);
    385        1.1   thorpej 
    386        1.1   thorpej 	/* Now write the address */
    387        1.1   thorpej 	for (i = 0; i < ETHER_ADDR_LEN; i++)
    388       1.24    rumble 		sq_seeq_write(sc, i, sc->sc_enaddr[i]);
    389        1.3   thorpej 
    390       1.40   tsutsui 	sc->sc_rxcmd =
    391       1.40   tsutsui 	    RXCMD_IE_CRC |
    392       1.40   tsutsui 	    RXCMD_IE_DRIB |
    393       1.40   tsutsui 	    RXCMD_IE_SHORT |
    394       1.40   tsutsui 	    RXCMD_IE_END |
    395       1.40   tsutsui 	    RXCMD_IE_GOOD;
    396        1.3   thorpej 
    397        1.3   thorpej 	/*
    398        1.3   thorpej 	 * Set the receive filter -- this will add some bits to the
    399        1.3   thorpej 	 * prototype RXCMD register.  Do this before setting the
    400        1.3   thorpej 	 * transmit config register, since we might need to switch
    401        1.3   thorpej 	 * banks.
    402        1.3   thorpej 	 */
    403        1.3   thorpej 	sq_set_filter(sc);
    404        1.1   thorpej 
    405        1.1   thorpej 	/* Set up Seeq transmit command register */
    406       1.40   tsutsui 	sq_seeq_write(sc, SEEQ_TXCMD,
    407       1.40   tsutsui 	    TXCMD_IE_UFLOW |
    408       1.40   tsutsui 	    TXCMD_IE_COLL |
    409       1.40   tsutsui 	    TXCMD_IE_16COLL |
    410       1.40   tsutsui 	    TXCMD_IE_GOOD);
    411        1.1   thorpej 
    412        1.3   thorpej 	/* Now write the receive command register. */
    413       1.24    rumble 	sq_seeq_write(sc, SEEQ_RXCMD, sc->sc_rxcmd);
    414        1.1   thorpej 
    415       1.31    rumble 	/*
    416       1.31    rumble 	 * Set up HPC ethernet PIO and DMA configurations.
    417       1.31    rumble 	 *
    418       1.31    rumble 	 * The PROM appears to do most of this for the onboard HPC3, but
    419       1.40   tsutsui 	 * not for the Challenge S's IOPLUS chip. We copy how the onboard
    420       1.31    rumble 	 * chip is configured and assume that it's correct for both.
    421       1.31    rumble 	 */
    422       1.20    sekiya 	if (sc->hpc_regs->revision == 3) {
    423       1.38   tsutsui 		uint32_t dmareg, pioreg;
    424       1.31    rumble 
    425       1.40   tsutsui 		pioreg =
    426       1.40   tsutsui 		    HPC3_ENETR_PIOCFG_P1(1) |
    427       1.40   tsutsui 		    HPC3_ENETR_PIOCFG_P2(6) |
    428       1.40   tsutsui 		    HPC3_ENETR_PIOCFG_P3(1);
    429       1.40   tsutsui 
    430       1.40   tsutsui 		dmareg =
    431       1.40   tsutsui 		    HPC3_ENETR_DMACFG_D1(6) |
    432       1.40   tsutsui 		    HPC3_ENETR_DMACFG_D2(2) |
    433       1.40   tsutsui 		    HPC3_ENETR_DMACFG_D3(0) |
    434       1.40   tsutsui 		    HPC3_ENETR_DMACFG_FIX_RXDC |
    435       1.40   tsutsui 		    HPC3_ENETR_DMACFG_FIX_INTR |
    436       1.40   tsutsui 		    HPC3_ENETR_DMACFG_FIX_EOP |
    437       1.40   tsutsui 		    HPC3_ENETR_DMACFG_TIMEOUT;
    438       1.31    rumble 
    439       1.31    rumble 		sq_hpc_write(sc, HPC3_ENETR_PIOCFG, pioreg);
    440       1.31    rumble 		sq_hpc_write(sc, HPC3_ENETR_DMACFG, dmareg);
    441       1.20    sekiya 	}
    442        1.1   thorpej 
    443        1.1   thorpej 	/* Pass the start of the receive ring to the HPC */
    444       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetr_ndbp, SQ_CDRXADDR(sc, 0));
    445        1.1   thorpej 
    446        1.1   thorpej 	/* And turn on the HPC ethernet receive channel */
    447       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetr_ctl,
    448       1.24    rumble 	    sc->hpc_regs->enetr_ctl_active);
    449        1.1   thorpej 
    450       1.23    rumble 	/*
    451       1.23    rumble 	 * Turn off delayed receive interrupts on HPC1.
    452       1.23    rumble 	 * (see Hollywood HPC Specification 2.1.4.3)
    453       1.40   tsutsui 	 */
    454       1.23    rumble 	if (sc->hpc_regs->revision != 3)
    455       1.25    rumble 		sq_hpc_write(sc, HPC1_ENET_INTDELAY, HPC1_ENET_INTDELAY_OFF);
    456       1.23    rumble 
    457       1.10    simonb 	ifp->if_flags |= IFF_RUNNING;
    458        1.1   thorpej 	ifp->if_flags &= ~IFF_OACTIVE;
    459        1.1   thorpej 
    460        1.1   thorpej 	return 0;
    461        1.1   thorpej }
    462        1.1   thorpej 
    463        1.3   thorpej static void
    464        1.3   thorpej sq_set_filter(struct sq_softc *sc)
    465        1.3   thorpej {
    466        1.3   thorpej 	struct ethercom *ec = &sc->sc_ethercom;
    467        1.3   thorpej 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    468        1.3   thorpej 	struct ether_multi *enm;
    469        1.3   thorpej 	struct ether_multistep step;
    470        1.3   thorpej 
    471        1.3   thorpej 	/*
    472        1.3   thorpej 	 * Check for promiscuous mode.  Also implies
    473        1.3   thorpej 	 * all-multicast.
    474        1.3   thorpej 	 */
    475        1.3   thorpej 	if (ifp->if_flags & IFF_PROMISC) {
    476        1.3   thorpej 		sc->sc_rxcmd |= RXCMD_REC_ALL;
    477        1.3   thorpej 		ifp->if_flags |= IFF_ALLMULTI;
    478        1.3   thorpej 		return;
    479        1.3   thorpej 	}
    480        1.3   thorpej 
    481        1.3   thorpej 	/*
    482        1.3   thorpej 	 * The 8003 has no hash table.  If we have any multicast
    483        1.3   thorpej 	 * addresses on the list, enable reception of all multicast
    484        1.3   thorpej 	 * frames.
    485        1.3   thorpej 	 *
    486        1.3   thorpej 	 * XXX The 80c03 has a hash table.  We should use it.
    487        1.3   thorpej 	 */
    488        1.3   thorpej 
    489        1.3   thorpej 	ETHER_FIRST_MULTI(step, ec, enm);
    490        1.3   thorpej 
    491        1.3   thorpej 	if (enm == NULL) {
    492       1.11     rafal 		sc->sc_rxcmd &= ~RXCMD_REC_MASK;
    493        1.3   thorpej 		sc->sc_rxcmd |= RXCMD_REC_BROAD;
    494       1.11     rafal 
    495       1.11     rafal 		ifp->if_flags &= ~IFF_ALLMULTI;
    496        1.3   thorpej 		return;
    497        1.3   thorpej 	}
    498        1.3   thorpej 
    499        1.3   thorpej 	sc->sc_rxcmd |= RXCMD_REC_MULTI;
    500        1.3   thorpej 	ifp->if_flags |= IFF_ALLMULTI;
    501        1.3   thorpej }
    502        1.3   thorpej 
    503        1.1   thorpej int
    504       1.33  christos sq_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    505        1.1   thorpej {
    506        1.1   thorpej 	int s, error = 0;
    507        1.1   thorpej 
    508       1.22    rumble 	SQ_TRACE(SQ_IOCTL, (struct sq_softc *)ifp->if_softc, 0, 0);
    509       1.22    rumble 
    510        1.1   thorpej 	s = splnet();
    511        1.1   thorpej 
    512        1.1   thorpej 	error = ether_ioctl(ifp, cmd, data);
    513        1.1   thorpej 	if (error == ENETRESET) {
    514        1.1   thorpej 		/*
    515        1.1   thorpej 		 * Multicast list has changed; set the hardware filter
    516        1.1   thorpej 		 * accordingly.
    517        1.1   thorpej 		 */
    518       1.21   thorpej 		if (ifp->if_flags & IFF_RUNNING)
    519       1.21   thorpej 			error = sq_init(ifp);
    520       1.21   thorpej 		else
    521       1.21   thorpej 			error = 0;
    522        1.1   thorpej 	}
    523        1.1   thorpej 
    524        1.1   thorpej 	splx(s);
    525       1.40   tsutsui 	return error;
    526        1.1   thorpej }
    527        1.1   thorpej 
    528        1.1   thorpej void
    529        1.1   thorpej sq_start(struct ifnet *ifp)
    530        1.1   thorpej {
    531        1.1   thorpej 	struct sq_softc *sc = ifp->if_softc;
    532       1.38   tsutsui 	uint32_t status;
    533        1.1   thorpej 	struct mbuf *m0, *m;
    534        1.1   thorpej 	bus_dmamap_t dmamap;
    535       1.19      matt 	int err, totlen, nexttx, firsttx, lasttx = -1, ofree, seg;
    536        1.1   thorpej 
    537        1.1   thorpej 	if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
    538        1.1   thorpej 		return;
    539        1.1   thorpej 
    540        1.1   thorpej 	/*
    541        1.1   thorpej 	 * Remember the previous number of free descriptors and
    542        1.1   thorpej 	 * the first descriptor we'll use.
    543        1.1   thorpej 	 */
    544        1.1   thorpej 	ofree = sc->sc_nfreetx;
    545        1.1   thorpej 	firsttx = sc->sc_nexttx;
    546        1.1   thorpej 
    547        1.1   thorpej 	/*
    548        1.1   thorpej 	 * Loop through the send queue, setting up transmit descriptors
    549        1.1   thorpej 	 * until we drain the queue, or use up all available transmit
    550        1.1   thorpej 	 * descriptors.
    551        1.1   thorpej 	 */
    552        1.1   thorpej 	while (sc->sc_nfreetx != 0) {
    553        1.1   thorpej 		/*
    554        1.1   thorpej 		 * Grab a packet off the queue.
    555        1.1   thorpej 		 */
    556        1.1   thorpej 		IFQ_POLL(&ifp->if_snd, m0);
    557        1.1   thorpej 		if (m0 == NULL)
    558        1.1   thorpej 			break;
    559        1.1   thorpej 		m = NULL;
    560        1.1   thorpej 
    561        1.1   thorpej 		dmamap = sc->sc_txmap[sc->sc_nexttx];
    562        1.1   thorpej 
    563        1.1   thorpej 		/*
    564        1.1   thorpej 		 * Load the DMA map.  If this fails, the packet either
    565        1.1   thorpej 		 * didn't fit in the alloted number of segments, or we were
    566        1.1   thorpej 		 * short on resources.  In this case, we'll copy and try
    567        1.1   thorpej 		 * again.
    568       1.16    bouyer 		 * Also copy it if we need to pad, so that we are sure there
    569       1.16    bouyer 		 * is room for the pad buffer.
    570       1.16    bouyer 		 * XXX the right way of doing this is to use a static buffer
    571       1.16    bouyer 		 * for padding and adding it to the transmit descriptor (see
    572       1.16    bouyer 		 * sys/dev/pci/if_tl.c for example). We can't do this here yet
    573       1.16    bouyer 		 * because we can't send packets with more than one fragment.
    574        1.1   thorpej 		 */
    575       1.16    bouyer 		if (m0->m_pkthdr.len < ETHER_PAD_LEN ||
    576       1.16    bouyer 		    bus_dmamap_load_mbuf(sc->sc_dmat, dmamap, m0,
    577       1.40   tsutsui 		    BUS_DMA_NOWAIT) != 0) {
    578        1.1   thorpej 			MGETHDR(m, M_DONTWAIT, MT_DATA);
    579        1.1   thorpej 			if (m == NULL) {
    580        1.1   thorpej 				printf("%s: unable to allocate Tx mbuf\n",
    581       1.39   tsutsui 				    device_xname(sc->sc_dev));
    582        1.1   thorpej 				break;
    583        1.1   thorpej 			}
    584        1.1   thorpej 			if (m0->m_pkthdr.len > MHLEN) {
    585        1.1   thorpej 				MCLGET(m, M_DONTWAIT);
    586        1.1   thorpej 				if ((m->m_flags & M_EXT) == 0) {
    587        1.1   thorpej 					printf("%s: unable to allocate Tx "
    588       1.39   tsutsui 					    "cluster\n",
    589       1.39   tsutsui 					    device_xname(sc->sc_dev));
    590        1.1   thorpej 					m_freem(m);
    591        1.1   thorpej 					break;
    592        1.1   thorpej 				}
    593        1.1   thorpej 			}
    594        1.1   thorpej 
    595       1.33  christos 			m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, void *));
    596       1.16    bouyer 			if (m0->m_pkthdr.len < ETHER_PAD_LEN) {
    597       1.16    bouyer 				memset(mtod(m, char *) + m0->m_pkthdr.len, 0,
    598       1.16    bouyer 				    ETHER_PAD_LEN - m0->m_pkthdr.len);
    599       1.16    bouyer 				m->m_pkthdr.len = m->m_len = ETHER_PAD_LEN;
    600       1.18   tsutsui 			} else
    601       1.16    bouyer 				m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
    602        1.1   thorpej 
    603       1.10    simonb 			if ((err = bus_dmamap_load_mbuf(sc->sc_dmat, dmamap,
    604       1.40   tsutsui 			    m, BUS_DMA_NOWAIT)) != 0) {
    605        1.1   thorpej 				printf("%s: unable to load Tx buffer, "
    606       1.39   tsutsui 				    "error = %d\n",
    607       1.39   tsutsui 				    device_xname(sc->sc_dev), err);
    608        1.1   thorpej 				break;
    609        1.1   thorpej 			}
    610        1.1   thorpej 		}
    611        1.1   thorpej 
    612        1.1   thorpej 		/*
    613        1.1   thorpej 		 * Ensure we have enough descriptors free to describe
    614        1.1   thorpej 		 * the packet.
    615        1.1   thorpej 		 */
    616        1.1   thorpej 		if (dmamap->dm_nsegs > sc->sc_nfreetx) {
    617        1.1   thorpej 			/*
    618        1.1   thorpej 			 * Not enough free descriptors to transmit this
    619        1.1   thorpej 			 * packet.  We haven't committed to anything yet,
    620        1.1   thorpej 			 * so just unload the DMA map, put the packet
    621        1.1   thorpej 			 * back on the queue, and punt.  Notify the upper
    622        1.1   thorpej 			 * layer that there are no more slots left.
    623        1.1   thorpej 			 *
    624        1.1   thorpej 			 * XXX We could allocate an mbuf and copy, but
    625        1.1   thorpej 			 * XXX it is worth it?
    626        1.1   thorpej 			 */
    627        1.1   thorpej 			ifp->if_flags |= IFF_OACTIVE;
    628        1.1   thorpej 			bus_dmamap_unload(sc->sc_dmat, dmamap);
    629        1.1   thorpej 			if (m != NULL)
    630        1.1   thorpej 				m_freem(m);
    631        1.1   thorpej 			break;
    632        1.1   thorpej 		}
    633        1.1   thorpej 
    634        1.1   thorpej 		IFQ_DEQUEUE(&ifp->if_snd, m0);
    635       1.16    bouyer 		/*
    636       1.16    bouyer 		 * Pass the packet to any BPF listeners.
    637       1.16    bouyer 		 */
    638       1.36     joerg 		bpf_mtap(ifp, m0);
    639        1.1   thorpej 		if (m != NULL) {
    640        1.1   thorpej 			m_freem(m0);
    641        1.1   thorpej 			m0 = m;
    642        1.1   thorpej 		}
    643        1.1   thorpej 
    644        1.1   thorpej 		/*
    645        1.1   thorpej 		 * WE ARE NOW COMMITTED TO TRANSMITTING THE PACKET.
    646        1.1   thorpej 		 */
    647        1.1   thorpej 
    648       1.22    rumble 		SQ_TRACE(SQ_ENQUEUE, sc, sc->sc_nexttx, 0);
    649       1.22    rumble 
    650        1.1   thorpej 		/* Sync the DMA map. */
    651        1.1   thorpej 		bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
    652        1.1   thorpej 		    BUS_DMASYNC_PREWRITE);
    653        1.1   thorpej 
    654        1.1   thorpej 		/*
    655        1.1   thorpej 		 * Initialize the transmit descriptors.
    656        1.1   thorpej 		 */
    657        1.1   thorpej 		for (nexttx = sc->sc_nexttx, seg = 0, totlen = 0;
    658        1.1   thorpej 		     seg < dmamap->dm_nsegs;
    659        1.1   thorpej 		     seg++, nexttx = SQ_NEXTTX(nexttx)) {
    660       1.40   tsutsui 			if (sc->hpc_regs->revision == 3) {
    661       1.20    sekiya 				sc->sc_txdesc[nexttx].hpc3_hdd_bufptr =
    662       1.40   tsutsui 				    dmamap->dm_segs[seg].ds_addr;
    663       1.20    sekiya 				sc->sc_txdesc[nexttx].hpc3_hdd_ctl =
    664       1.40   tsutsui 				    dmamap->dm_segs[seg].ds_len;
    665       1.20    sekiya 			} else {
    666       1.20    sekiya 				sc->sc_txdesc[nexttx].hpc1_hdd_bufptr =
    667       1.40   tsutsui 				    dmamap->dm_segs[seg].ds_addr;
    668       1.20    sekiya 				sc->sc_txdesc[nexttx].hpc1_hdd_ctl =
    669       1.40   tsutsui 				    dmamap->dm_segs[seg].ds_len;
    670       1.20    sekiya 			}
    671       1.40   tsutsui 			sc->sc_txdesc[nexttx].hdd_descptr =
    672       1.40   tsutsui 			    SQ_CDTXADDR(sc, SQ_NEXTTX(nexttx));
    673       1.10    simonb 			lasttx = nexttx;
    674        1.1   thorpej 			totlen += dmamap->dm_segs[seg].ds_len;
    675        1.1   thorpej 		}
    676        1.1   thorpej 
    677        1.1   thorpej 		/* Last descriptor gets end-of-packet */
    678       1.19      matt 		KASSERT(lasttx != -1);
    679       1.20    sekiya 		if (sc->hpc_regs->revision == 3)
    680       1.26    rumble 			sc->sc_txdesc[lasttx].hpc3_hdd_ctl |=
    681       1.26    rumble 			    HPC3_HDD_CTL_EOPACKET;
    682       1.20    sekiya 		else
    683       1.20    sekiya 			sc->sc_txdesc[lasttx].hpc1_hdd_ctl |=
    684       1.26    rumble 			    HPC1_HDD_CTL_EOPACKET;
    685        1.1   thorpej 
    686       1.39   tsutsui 		SQ_DPRINTF(("%s: transmit %d-%d, len %d\n",
    687       1.40   tsutsui 		    device_xname(sc->sc_dev), sc->sc_nexttx, lasttx, totlen));
    688        1.1   thorpej 
    689        1.1   thorpej 		if (ifp->if_flags & IFF_DEBUG) {
    690        1.1   thorpej 			printf("     transmit chain:\n");
    691        1.1   thorpej 			for (seg = sc->sc_nexttx;; seg = SQ_NEXTTX(seg)) {
    692        1.1   thorpej 				printf("     descriptor %d:\n", seg);
    693        1.1   thorpej 				printf("       hdd_bufptr:      0x%08x\n",
    694       1.40   tsutsui 				    (sc->hpc_regs->revision == 3) ?
    695       1.40   tsutsui 				    sc->sc_txdesc[seg].hpc3_hdd_bufptr :
    696       1.40   tsutsui 				    sc->sc_txdesc[seg].hpc1_hdd_bufptr);
    697        1.1   thorpej 				printf("       hdd_ctl: 0x%08x\n",
    698       1.40   tsutsui 				    (sc->hpc_regs->revision == 3) ?
    699       1.40   tsutsui 				    sc->sc_txdesc[seg].hpc3_hdd_ctl:
    700       1.40   tsutsui 				    sc->sc_txdesc[seg].hpc1_hdd_ctl);
    701        1.1   thorpej 				printf("       hdd_descptr:      0x%08x\n",
    702       1.40   tsutsui 				    sc->sc_txdesc[seg].hdd_descptr);
    703        1.1   thorpej 
    704        1.1   thorpej 				if (seg == lasttx)
    705        1.1   thorpej 					break;
    706        1.1   thorpej 			}
    707        1.1   thorpej 		}
    708        1.1   thorpej 
    709        1.1   thorpej 		/* Sync the descriptors we're using. */
    710        1.1   thorpej 		SQ_CDTXSYNC(sc, sc->sc_nexttx, dmamap->dm_nsegs,
    711       1.40   tsutsui 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    712        1.1   thorpej 
    713        1.1   thorpej 		/* Store a pointer to the packet so we can free it later */
    714        1.1   thorpej 		sc->sc_txmbuf[sc->sc_nexttx] = m0;
    715        1.1   thorpej 
    716        1.1   thorpej 		/* Advance the tx pointer. */
    717        1.1   thorpej 		sc->sc_nfreetx -= dmamap->dm_nsegs;
    718        1.1   thorpej 		sc->sc_nexttx = nexttx;
    719        1.1   thorpej 	}
    720        1.1   thorpej 
    721        1.1   thorpej 	/* All transmit descriptors used up, let upper layers know */
    722        1.1   thorpej 	if (sc->sc_nfreetx == 0)
    723        1.1   thorpej 		ifp->if_flags |= IFF_OACTIVE;
    724        1.1   thorpej 
    725        1.1   thorpej 	if (sc->sc_nfreetx != ofree) {
    726       1.20    sekiya 		SQ_DPRINTF(("%s: %d packets enqueued, first %d, INTR on %d\n",
    727       1.40   tsutsui 		    device_xname(sc->sc_dev), lasttx - firsttx + 1,
    728       1.40   tsutsui 		    firsttx, lasttx));
    729        1.1   thorpej 
    730        1.1   thorpej 		/*
    731        1.1   thorpej 		 * Cause a transmit interrupt to happen on the
    732        1.1   thorpej 		 * last packet we enqueued, mark it as the last
    733        1.1   thorpej 		 * descriptor.
    734       1.20    sekiya 		 *
    735       1.26    rumble 		 * HPC1_HDD_CTL_INTR will generate an interrupt on
    736       1.26    rumble 		 * HPC1. HPC3 requires HPC3_HDD_CTL_EOPACKET in
    737       1.40   tsutsui 		 * addition to HPC3_HDD_CTL_INTR to interrupt.
    738        1.1   thorpej 		 */
    739       1.19      matt 		KASSERT(lasttx != -1);
    740       1.20    sekiya 		if (sc->hpc_regs->revision == 3) {
    741       1.26    rumble 			sc->sc_txdesc[lasttx].hpc3_hdd_ctl |=
    742       1.26    rumble 			    HPC3_HDD_CTL_INTR | HPC3_HDD_CTL_EOCHAIN;
    743       1.20    sekiya 		} else {
    744       1.20    sekiya 			sc->sc_txdesc[lasttx].hpc1_hdd_ctl |= HPC1_HDD_CTL_INTR;
    745       1.20    sekiya 			sc->sc_txdesc[lasttx].hpc1_hdd_bufptr |=
    746       1.26    rumble 			    HPC1_HDD_CTL_EOCHAIN;
    747       1.20    sekiya 		}
    748       1.20    sekiya 
    749       1.10    simonb 		SQ_CDTXSYNC(sc, lasttx, 1,
    750       1.40   tsutsui 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    751        1.1   thorpej 
    752       1.10    simonb 		/*
    753        1.1   thorpej 		 * There is a potential race condition here if the HPC
    754       1.10    simonb 		 * DMA channel is active and we try and either update
    755       1.10    simonb 		 * the 'next descriptor' pointer in the HPC PIO space
    756        1.1   thorpej 		 * or the 'next descriptor' pointer in a previous desc-
    757        1.1   thorpej 		 * riptor.
    758        1.1   thorpej 		 *
    759       1.10    simonb 		 * To avoid this, if the channel is active, we rely on
    760        1.1   thorpej 		 * the transmit interrupt routine noticing that there
    761       1.10    simonb 		 * are more packets to send and restarting the HPC DMA
    762        1.1   thorpej 		 * engine, rather than mucking with the DMA state here.
    763        1.1   thorpej 		 */
    764       1.24    rumble 		status = sq_hpc_read(sc, sc->hpc_regs->enetx_ctl);
    765        1.1   thorpej 
    766       1.20    sekiya 		if ((status & sc->hpc_regs->enetx_ctl_active) != 0) {
    767       1.22    rumble 			SQ_TRACE(SQ_ADD_TO_DMA, sc, firsttx, status);
    768       1.20    sekiya 
    769       1.26    rumble 			/*
    770       1.26    rumble 			 * NB: hpc3_hdd_ctl == hpc1_hdd_bufptr, and
    771       1.26    rumble 			 * HPC1_HDD_CTL_EOCHAIN == HPC3_HDD_CTL_EOCHAIN
    772       1.26    rumble 			 */
    773       1.20    sekiya 			sc->sc_txdesc[SQ_PREVTX(firsttx)].hpc3_hdd_ctl &=
    774       1.26    rumble 			    ~HPC3_HDD_CTL_EOCHAIN;
    775       1.20    sekiya 
    776       1.23    rumble 			if (sc->hpc_regs->revision != 3)
    777       1.23    rumble 				sc->sc_txdesc[SQ_PREVTX(firsttx)].hpc1_hdd_ctl
    778       1.23    rumble 				    &= ~HPC1_HDD_CTL_INTR;
    779       1.23    rumble 
    780        1.6   thorpej 			SQ_CDTXSYNC(sc, SQ_PREVTX(firsttx),  1,
    781        1.6   thorpej 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    782       1.40   tsutsui 		} else if (sc->hpc_regs->revision == 3) {
    783       1.22    rumble 			SQ_TRACE(SQ_START_DMA, sc, firsttx, status);
    784        1.1   thorpej 
    785       1.26    rumble 			sq_hpc_write(sc, HPC3_ENETX_NDBP, SQ_CDTXADDR(sc,
    786       1.24    rumble 			    firsttx));
    787       1.23    rumble 
    788       1.23    rumble 			/* Kick DMA channel into life */
    789       1.26    rumble 			sq_hpc_write(sc, HPC3_ENETX_CTL, HPC3_ENETX_CTL_ACTIVE);
    790       1.23    rumble 		} else {
    791       1.23    rumble 			/*
    792       1.23    rumble 			 * In the HPC1 case where transmit DMA is
    793       1.23    rumble 			 * inactive, we can either kick off if
    794       1.23    rumble 			 * the ring was previously empty, or call
    795       1.23    rumble 			 * our transmit interrupt handler to
    796       1.23    rumble 			 * figure out if the ring stopped short
    797       1.23    rumble 			 * and restart at the right place.
    798       1.23    rumble 			 */
    799       1.23    rumble 			if (ofree == SQ_NTXDESC) {
    800       1.23    rumble 				SQ_TRACE(SQ_START_DMA, sc, firsttx, status);
    801       1.20    sekiya 
    802       1.24    rumble 				sq_hpc_write(sc, HPC1_ENETX_NDBP,
    803       1.24    rumble 				    SQ_CDTXADDR(sc, firsttx));
    804       1.24    rumble 				sq_hpc_write(sc, HPC1_ENETX_CFXBP,
    805       1.24    rumble 				    SQ_CDTXADDR(sc, firsttx));
    806       1.24    rumble 				sq_hpc_write(sc, HPC1_ENETX_CBP,
    807       1.23    rumble 				    SQ_CDTXADDR(sc, firsttx));
    808        1.1   thorpej 
    809       1.23    rumble 				/* Kick DMA channel into life */
    810       1.24    rumble 				sq_hpc_write(sc, HPC1_ENETX_CTL,
    811       1.40   tsutsui 				    HPC1_ENETX_CTL_ACTIVE);
    812       1.23    rumble 			} else
    813       1.23    rumble 				sq_txring_hpc1(sc);
    814        1.2     rafal 		}
    815        1.1   thorpej 
    816        1.6   thorpej 		/* Set a watchdog timer in case the chip flakes out. */
    817        1.6   thorpej 		ifp->if_timer = 5;
    818        1.6   thorpej 	}
    819        1.1   thorpej }
    820        1.1   thorpej 
    821        1.1   thorpej void
    822        1.1   thorpej sq_stop(struct ifnet *ifp, int disable)
    823        1.1   thorpej {
    824        1.1   thorpej 	int i;
    825        1.1   thorpej 	struct sq_softc *sc = ifp->if_softc;
    826        1.1   thorpej 
    827       1.40   tsutsui 	for (i = 0; i < SQ_NTXDESC; i++) {
    828        1.1   thorpej 		if (sc->sc_txmbuf[i] != NULL) {
    829        1.1   thorpej 			bus_dmamap_unload(sc->sc_dmat, sc->sc_txmap[i]);
    830        1.1   thorpej 			m_freem(sc->sc_txmbuf[i]);
    831        1.1   thorpej 			sc->sc_txmbuf[i] = NULL;
    832        1.1   thorpej 		}
    833        1.1   thorpej 	}
    834        1.1   thorpej 
    835        1.1   thorpej 	/* Clear Seeq transmit/receive command registers */
    836       1.24    rumble 	sq_seeq_write(sc, SEEQ_TXCMD, 0);
    837       1.24    rumble 	sq_seeq_write(sc, SEEQ_RXCMD, 0);
    838        1.1   thorpej 
    839        1.1   thorpej 	sq_reset(sc);
    840        1.1   thorpej 
    841       1.10    simonb 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
    842        1.1   thorpej 	ifp->if_timer = 0;
    843        1.1   thorpej }
    844        1.1   thorpej 
    845        1.1   thorpej /* Device timeout/watchdog routine. */
    846        1.1   thorpej void
    847        1.1   thorpej sq_watchdog(struct ifnet *ifp)
    848        1.1   thorpej {
    849       1.38   tsutsui 	uint32_t status;
    850        1.1   thorpej 	struct sq_softc *sc = ifp->if_softc;
    851        1.1   thorpej 
    852       1.24    rumble 	status = sq_hpc_read(sc, sc->hpc_regs->enetx_ctl);
    853        1.1   thorpej 	log(LOG_ERR, "%s: device timeout (prev %d, next %d, free %d, "
    854       1.40   tsutsui 	    "status %08x)\n", device_xname(sc->sc_dev), sc->sc_prevtx,
    855       1.40   tsutsui 	    sc->sc_nexttx, sc->sc_nfreetx, status);
    856        1.1   thorpej 
    857        1.1   thorpej 	sq_trace_dump(sc);
    858        1.1   thorpej 
    859       1.22    rumble 	memset(&sc->sq_trace, 0, sizeof(sc->sq_trace));
    860       1.22    rumble 	sc->sq_trace_idx = 0;
    861        1.1   thorpej 
    862        1.1   thorpej 	++ifp->if_oerrors;
    863        1.1   thorpej 
    864        1.1   thorpej 	sq_init(ifp);
    865        1.1   thorpej }
    866        1.1   thorpej 
    867       1.22    rumble static void
    868       1.22    rumble sq_trace_dump(struct sq_softc *sc)
    869        1.1   thorpej {
    870        1.1   thorpej 	int i;
    871       1.28    martin 	const char *act;
    872       1.22    rumble 
    873       1.22    rumble 	for (i = 0; i < sc->sq_trace_idx; i++) {
    874       1.22    rumble 		switch (sc->sq_trace[i].action) {
    875       1.22    rumble 		case SQ_RESET:		act = "SQ_RESET";		break;
    876       1.22    rumble 		case SQ_ADD_TO_DMA:	act = "SQ_ADD_TO_DMA";		break;
    877       1.22    rumble 		case SQ_START_DMA:	act = "SQ_START_DMA";		break;
    878       1.40   tsutsui 		case SQ_DONE_DMA:	act = "SQ_DONE_DMA";		break;
    879       1.22    rumble 		case SQ_RESTART_DMA:	act = "SQ_RESTART_DMA";		break;
    880       1.22    rumble 		case SQ_TXINTR_ENTER:	act = "SQ_TXINTR_ENTER";	break;
    881       1.22    rumble 		case SQ_TXINTR_EXIT:	act = "SQ_TXINTR_EXIT";		break;
    882       1.22    rumble 		case SQ_TXINTR_BUSY:	act = "SQ_TXINTR_BUSY";		break;
    883       1.22    rumble 		case SQ_IOCTL:		act = "SQ_IOCTL";		break;
    884       1.22    rumble 		case SQ_ENQUEUE:	act = "SQ_ENQUEUE";		break;
    885       1.22    rumble 		default:		act = "UNKNOWN";
    886       1.22    rumble 		}
    887        1.1   thorpej 
    888       1.22    rumble 		printf("%s: [%03d] action %-16s buf %03d free %03d "
    889       1.39   tsutsui 		    "status %08x line %d\n", device_xname(sc->sc_dev), i, act,
    890       1.22    rumble 		    sc->sq_trace[i].bufno, sc->sq_trace[i].freebuf,
    891       1.22    rumble 		    sc->sq_trace[i].status, sc->sq_trace[i].line);
    892        1.1   thorpej 	}
    893        1.1   thorpej }
    894        1.1   thorpej 
    895        1.1   thorpej static int
    896       1.33  christos sq_intr(void *arg)
    897        1.1   thorpej {
    898        1.1   thorpej 	struct sq_softc *sc = arg;
    899        1.1   thorpej 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    900        1.1   thorpej 	int handled = 0;
    901       1.38   tsutsui 	uint32_t stat;
    902        1.1   thorpej 
    903       1.24    rumble 	stat = sq_hpc_read(sc, sc->hpc_regs->enetr_reset);
    904        1.1   thorpej 
    905       1.27    rumble 	if ((stat & 2) == 0)
    906       1.27    rumble 		SQ_DPRINTF(("%s: Unexpected interrupt!\n",
    907       1.39   tsutsui 		    device_xname(sc->sc_dev)));
    908       1.27    rumble 	else
    909       1.27    rumble 		sq_hpc_write(sc, sc->hpc_regs->enetr_reset, (stat | 2));
    910        1.1   thorpej 
    911        1.1   thorpej 	/*
    912        1.1   thorpej 	 * If the interface isn't running, the interrupt couldn't
    913        1.1   thorpej 	 * possibly have come from us.
    914        1.1   thorpej 	 */
    915        1.1   thorpej 	if ((ifp->if_flags & IFF_RUNNING) == 0)
    916        1.1   thorpej 		return 0;
    917       1.11     rafal 
    918       1.11     rafal 	sc->sq_intrcnt.ev_count++;
    919        1.1   thorpej 
    920        1.1   thorpej 	/* Always check for received packets */
    921        1.1   thorpej 	if (sq_rxintr(sc) != 0)
    922        1.1   thorpej 		handled++;
    923        1.1   thorpej 
    924        1.1   thorpej 	/* Only handle transmit interrupts if we actually sent something */
    925        1.1   thorpej 	if (sc->sc_nfreetx < SQ_NTXDESC) {
    926        1.1   thorpej 		sq_txintr(sc);
    927        1.1   thorpej 		handled++;
    928        1.1   thorpej 	}
    929        1.1   thorpej 
    930        1.1   thorpej 	if (handled)
    931        1.3   thorpej 		rnd_add_uint32(&sc->rnd_source, stat);
    932       1.40   tsutsui 	return handled;
    933        1.1   thorpej }
    934        1.1   thorpej 
    935        1.1   thorpej static int
    936        1.1   thorpej sq_rxintr(struct sq_softc *sc)
    937        1.1   thorpej {
    938        1.1   thorpej 	int count = 0;
    939        1.1   thorpej 	struct mbuf* m;
    940        1.1   thorpej 	int i, framelen;
    941       1.38   tsutsui 	uint8_t pktstat;
    942       1.38   tsutsui 	uint32_t status;
    943       1.38   tsutsui 	uint32_t ctl_reg;
    944        1.1   thorpej 	int new_end, orig_end;
    945        1.1   thorpej 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    946        1.1   thorpej 
    947       1.24    rumble 	for (i = sc->sc_nextrx;; i = SQ_NEXTRX(i)) {
    948       1.40   tsutsui 		SQ_CDRXSYNC(sc, i,
    949       1.40   tsutsui 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
    950        1.1   thorpej 
    951       1.24    rumble 		/*
    952       1.24    rumble 		 * If this is a CPU-owned buffer, we're at the end of the list.
    953       1.24    rumble 		 */
    954       1.20    sekiya 		if (sc->hpc_regs->revision == 3)
    955       1.40   tsutsui 			ctl_reg =
    956       1.40   tsutsui 			    sc->sc_rxdesc[i].hpc3_hdd_ctl & HPC3_HDD_CTL_OWN;
    957       1.20    sekiya 		else
    958       1.40   tsutsui 			ctl_reg =
    959       1.40   tsutsui 			    sc->sc_rxdesc[i].hpc1_hdd_ctl & HPC1_HDD_CTL_OWN;
    960       1.20    sekiya 
    961       1.20    sekiya 		if (ctl_reg) {
    962       1.20    sekiya #if defined(SQ_DEBUG)
    963       1.38   tsutsui 			uint32_t reg;
    964        1.1   thorpej 
    965       1.24    rumble 			reg = sq_hpc_read(sc, sc->hpc_regs->enetr_ctl);
    966       1.20    sekiya 			SQ_DPRINTF(("%s: rxintr: done at %d (ctl %08x)\n",
    967       1.39   tsutsui 			    device_xname(sc->sc_dev), i, reg));
    968        1.1   thorpej #endif
    969       1.10    simonb 			break;
    970       1.10    simonb 		}
    971        1.1   thorpej 
    972       1.10    simonb 		count++;
    973        1.1   thorpej 
    974       1.10    simonb 		m = sc->sc_rxmbuf[i];
    975       1.20    sekiya 		framelen = m->m_ext.ext_size - 3;
    976       1.20    sekiya 		if (sc->hpc_regs->revision == 3)
    977       1.20    sekiya 		    framelen -=
    978       1.26    rumble 			HPC3_HDD_CTL_BYTECNT(sc->sc_rxdesc[i].hpc3_hdd_ctl);
    979       1.20    sekiya 		else
    980       1.20    sekiya 		    framelen -=
    981       1.20    sekiya 			HPC1_HDD_CTL_BYTECNT(sc->sc_rxdesc[i].hpc1_hdd_ctl);
    982        1.1   thorpej 
    983       1.10    simonb 		/* Now sync the actual packet data */
    984       1.10    simonb 		bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[i], 0,
    985       1.10    simonb 		    sc->sc_rxmap[i]->dm_mapsize, BUS_DMASYNC_POSTREAD);
    986        1.1   thorpej 
    987       1.40   tsutsui 		pktstat = *((uint8_t *)m->m_data + framelen + 2);
    988        1.1   thorpej 
    989       1.10    simonb 		if ((pktstat & RXSTAT_GOOD) == 0) {
    990       1.10    simonb 			ifp->if_ierrors++;
    991        1.2     rafal 
    992       1.10    simonb 			if (pktstat & RXSTAT_OFLOW)
    993       1.10    simonb 				printf("%s: receive FIFO overflow\n",
    994       1.39   tsutsui 				    device_xname(sc->sc_dev));
    995        1.1   thorpej 
    996       1.10    simonb 			bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[i], 0,
    997       1.40   tsutsui 			    sc->sc_rxmap[i]->dm_mapsize, BUS_DMASYNC_PREREAD);
    998       1.10    simonb 			SQ_INIT_RXDESC(sc, i);
    999       1.23    rumble 			SQ_DPRINTF(("%s: sq_rxintr: buf %d no RXSTAT_GOOD\n",
   1000       1.39   tsutsui 			    device_xname(sc->sc_dev), i));
   1001       1.10    simonb 			continue;
   1002       1.10    simonb 		}
   1003        1.1   thorpej 
   1004       1.10    simonb 		if (sq_add_rxbuf(sc, i) != 0) {
   1005       1.10    simonb 			ifp->if_ierrors++;
   1006       1.10    simonb 			bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[i], 0,
   1007       1.40   tsutsui 			    sc->sc_rxmap[i]->dm_mapsize, BUS_DMASYNC_PREREAD);
   1008       1.10    simonb 			SQ_INIT_RXDESC(sc, i);
   1009       1.23    rumble 			SQ_DPRINTF(("%s: sq_rxintr: buf %d sq_add_rxbuf() "
   1010       1.39   tsutsui 			    "failed\n", device_xname(sc->sc_dev), i));
   1011       1.10    simonb 			continue;
   1012       1.10    simonb 		}
   1013        1.1   thorpej 
   1014        1.1   thorpej 
   1015       1.10    simonb 		m->m_data += 2;
   1016       1.10    simonb 		m->m_pkthdr.rcvif = ifp;
   1017       1.10    simonb 		m->m_pkthdr.len = m->m_len = framelen;
   1018        1.1   thorpej 
   1019       1.10    simonb 		ifp->if_ipackets++;
   1020        1.1   thorpej 
   1021       1.20    sekiya 		SQ_DPRINTF(("%s: sq_rxintr: buf %d len %d\n",
   1022       1.40   tsutsui 		    device_xname(sc->sc_dev), i, framelen));
   1023        1.1   thorpej 
   1024       1.36     joerg 		bpf_mtap(ifp, m);
   1025  1.43.24.2     skrll 		if_percpuq_enqueue(ifp->if_percpuq, m);
   1026        1.1   thorpej 	}
   1027        1.1   thorpej 
   1028        1.1   thorpej 
   1029        1.1   thorpej 	/* If anything happened, move ring start/end pointers to new spot */
   1030        1.1   thorpej 	if (i != sc->sc_nextrx) {
   1031       1.26    rumble 		/*
   1032       1.26    rumble 		 * NB: hpc3_hdd_ctl == hpc1_hdd_bufptr, and
   1033       1.26    rumble 		 * HPC1_HDD_CTL_EOCHAIN == HPC3_HDD_CTL_EOCHAIN
   1034       1.26    rumble 		 */
   1035       1.20    sekiya 
   1036       1.10    simonb 		new_end = SQ_PREVRX(i);
   1037       1.26    rumble 		sc->sc_rxdesc[new_end].hpc3_hdd_ctl |= HPC3_HDD_CTL_EOCHAIN;
   1038       1.40   tsutsui 		SQ_CDRXSYNC(sc, new_end,
   1039       1.40   tsutsui 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1040        1.1   thorpej 
   1041       1.10    simonb 		orig_end = SQ_PREVRX(sc->sc_nextrx);
   1042       1.26    rumble 		sc->sc_rxdesc[orig_end].hpc3_hdd_ctl &= ~HPC3_HDD_CTL_EOCHAIN;
   1043       1.40   tsutsui 		SQ_CDRXSYNC(sc, orig_end,
   1044       1.40   tsutsui 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1045        1.1   thorpej 
   1046       1.10    simonb 		sc->sc_nextrx = i;
   1047        1.1   thorpej 	}
   1048        1.1   thorpej 
   1049       1.24    rumble 	status = sq_hpc_read(sc, sc->hpc_regs->enetr_ctl);
   1050        1.1   thorpej 
   1051        1.1   thorpej 	/* If receive channel is stopped, restart it... */
   1052       1.20    sekiya 	if ((status & sc->hpc_regs->enetr_ctl_active) == 0) {
   1053       1.10    simonb 		/* Pass the start of the receive ring to the HPC */
   1054       1.40   tsutsui 		sq_hpc_write(sc, sc->hpc_regs->enetr_ndbp,
   1055       1.40   tsutsui 		    SQ_CDRXADDR(sc, sc->sc_nextrx));
   1056       1.10    simonb 
   1057       1.10    simonb 		/* And turn on the HPC ethernet receive channel */
   1058       1.24    rumble 		sq_hpc_write(sc, sc->hpc_regs->enetr_ctl,
   1059       1.24    rumble 		    sc->hpc_regs->enetr_ctl_active);
   1060        1.1   thorpej 	}
   1061        1.1   thorpej 
   1062        1.1   thorpej 	return count;
   1063        1.1   thorpej }
   1064        1.1   thorpej 
   1065        1.1   thorpej static int
   1066        1.1   thorpej sq_txintr(struct sq_softc *sc)
   1067        1.1   thorpej {
   1068       1.20    sekiya 	int shift = 0;
   1069       1.38   tsutsui 	uint32_t status, tmp;
   1070        1.1   thorpej 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
   1071        1.1   thorpej 
   1072       1.20    sekiya 	if (sc->hpc_regs->revision != 3)
   1073       1.20    sekiya 		shift = 16;
   1074       1.40   tsutsui 
   1075       1.24    rumble 	status = sq_hpc_read(sc, sc->hpc_regs->enetx_ctl) >> shift;
   1076        1.1   thorpej 
   1077       1.22    rumble 	SQ_TRACE(SQ_TXINTR_ENTER, sc, sc->sc_prevtx, status);
   1078       1.40   tsutsui 
   1079       1.24    rumble 	tmp = (sc->hpc_regs->enetx_ctl_active >> shift) | TXSTAT_GOOD;
   1080       1.24    rumble 	if ((status & tmp) == 0) {
   1081       1.10    simonb 		if (status & TXSTAT_COLL)
   1082       1.10    simonb 			ifp->if_collisions++;
   1083        1.1   thorpej 
   1084        1.1   thorpej 		if (status & TXSTAT_UFLOW) {
   1085       1.39   tsutsui 			printf("%s: transmit underflow\n",
   1086       1.39   tsutsui 			    device_xname(sc->sc_dev));
   1087       1.10    simonb 			ifp->if_oerrors++;
   1088        1.1   thorpej 		}
   1089        1.1   thorpej 
   1090        1.1   thorpej 		if (status & TXSTAT_16COLL) {
   1091       1.23    rumble 			printf("%s: max collisions reached\n",
   1092       1.39   tsutsui 			    device_xname(sc->sc_dev));
   1093       1.10    simonb 			ifp->if_oerrors++;
   1094       1.10    simonb 			ifp->if_collisions += 16;
   1095        1.1   thorpej 		}
   1096        1.1   thorpej 	}
   1097        1.1   thorpej 
   1098       1.23    rumble 	/* prevtx now points to next xmit packet not yet finished */
   1099       1.23    rumble 	if (sc->hpc_regs->revision == 3)
   1100       1.23    rumble 		sq_txring_hpc3(sc);
   1101       1.23    rumble 	else
   1102       1.23    rumble 		sq_txring_hpc1(sc);
   1103       1.23    rumble 
   1104       1.23    rumble 	/* If we have buffers free, let upper layers know */
   1105       1.23    rumble 	if (sc->sc_nfreetx > 0)
   1106       1.23    rumble 		ifp->if_flags &= ~IFF_OACTIVE;
   1107       1.23    rumble 
   1108       1.23    rumble 	/* If all packets have left the coop, cancel watchdog */
   1109       1.23    rumble 	if (sc->sc_nfreetx == SQ_NTXDESC)
   1110       1.23    rumble 		ifp->if_timer = 0;
   1111       1.23    rumble 
   1112       1.23    rumble 	SQ_TRACE(SQ_TXINTR_EXIT, sc, sc->sc_prevtx, status);
   1113       1.23    rumble 	sq_start(ifp);
   1114       1.23    rumble 
   1115       1.23    rumble 	return 1;
   1116       1.23    rumble }
   1117       1.23    rumble 
   1118       1.23    rumble /*
   1119       1.23    rumble  * Reclaim used transmit descriptors and restart the transmit DMA
   1120       1.23    rumble  * engine if necessary.
   1121       1.23    rumble  */
   1122       1.40   tsutsui static void
   1123       1.23    rumble sq_txring_hpc1(struct sq_softc *sc)
   1124       1.23    rumble {
   1125       1.23    rumble 	/*
   1126       1.23    rumble 	 * HPC1 doesn't tag transmitted descriptors, however,
   1127       1.23    rumble 	 * the NDBP register points to the next descriptor that
   1128       1.23    rumble 	 * has not yet been processed. If DMA is not in progress,
   1129       1.23    rumble 	 * we can safely reclaim all descriptors up to NDBP, and,
   1130       1.23    rumble 	 * if necessary, restart DMA at NDBP. Otherwise, if DMA
   1131       1.23    rumble 	 * is active, we can only safely reclaim up to CBP.
   1132       1.23    rumble 	 *
   1133       1.23    rumble 	 * For now, we'll only reclaim on inactive DMA and assume
   1134       1.23    rumble 	 * that a sufficiently large ring keeps us out of trouble.
   1135       1.23    rumble 	 */
   1136       1.38   tsutsui 	uint32_t reclaimto, status;
   1137       1.23    rumble 	int reclaimall, i = sc->sc_prevtx;
   1138       1.23    rumble 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
   1139       1.23    rumble 
   1140       1.24    rumble 	status = sq_hpc_read(sc, HPC1_ENETX_CTL);
   1141       1.23    rumble 	if (status & HPC1_ENETX_CTL_ACTIVE) {
   1142       1.23    rumble 		SQ_TRACE(SQ_TXINTR_BUSY, sc, i, status);
   1143       1.23    rumble 		return;
   1144       1.24    rumble 	} else
   1145       1.24    rumble 		reclaimto = sq_hpc_read(sc, HPC1_ENETX_NDBP);
   1146       1.23    rumble 
   1147       1.23    rumble 	if (sc->sc_nfreetx == 0 && SQ_CDTXADDR(sc, i) == reclaimto)
   1148       1.23    rumble 		reclaimall = 1;
   1149       1.23    rumble 	else
   1150       1.23    rumble 		reclaimall = 0;
   1151       1.23    rumble 
   1152       1.23    rumble 	while (sc->sc_nfreetx < SQ_NTXDESC) {
   1153       1.23    rumble 		if (SQ_CDTXADDR(sc, i) == reclaimto && !reclaimall)
   1154       1.23    rumble 			break;
   1155       1.23    rumble 
   1156       1.23    rumble 		SQ_CDTXSYNC(sc, i, sc->sc_txmap[i]->dm_nsegs,
   1157       1.40   tsutsui 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   1158       1.23    rumble 
   1159       1.23    rumble 		/* Sync the packet data, unload DMA map, free mbuf */
   1160       1.40   tsutsui 		bus_dmamap_sync(sc->sc_dmat, sc->sc_txmap[i],
   1161       1.40   tsutsui 		    0, sc->sc_txmap[i]->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1162       1.23    rumble 		bus_dmamap_unload(sc->sc_dmat, sc->sc_txmap[i]);
   1163       1.23    rumble 		m_freem(sc->sc_txmbuf[i]);
   1164       1.23    rumble 		sc->sc_txmbuf[i] = NULL;
   1165       1.23    rumble 
   1166       1.23    rumble 		ifp->if_opackets++;
   1167       1.23    rumble 		sc->sc_nfreetx++;
   1168       1.23    rumble 
   1169       1.23    rumble 		SQ_TRACE(SQ_DONE_DMA, sc, i, status);
   1170       1.23    rumble 
   1171       1.23    rumble 		i = SQ_NEXTTX(i);
   1172       1.23    rumble 	}
   1173       1.23    rumble 
   1174       1.23    rumble 	if (sc->sc_nfreetx < SQ_NTXDESC) {
   1175       1.23    rumble 		SQ_TRACE(SQ_RESTART_DMA, sc, i, status);
   1176       1.23    rumble 
   1177       1.23    rumble 		KASSERT(reclaimto == SQ_CDTXADDR(sc, i));
   1178       1.23    rumble 
   1179       1.24    rumble 		sq_hpc_write(sc, HPC1_ENETX_CFXBP, reclaimto);
   1180       1.24    rumble 		sq_hpc_write(sc, HPC1_ENETX_CBP, reclaimto);
   1181       1.23    rumble 
   1182       1.23    rumble 		/* Kick DMA channel into life */
   1183       1.40   tsutsui 		sq_hpc_write(sc, HPC1_ENETX_CTL, HPC1_ENETX_CTL_ACTIVE);
   1184       1.23    rumble 
   1185       1.23    rumble 		/*
   1186       1.23    rumble 		 * Set a watchdog timer in case the chip
   1187       1.23    rumble 		 * flakes out.
   1188       1.23    rumble 		 */
   1189       1.23    rumble 		ifp->if_timer = 5;
   1190       1.23    rumble 	}
   1191       1.23    rumble 
   1192       1.40   tsutsui 	sc->sc_prevtx = i;
   1193       1.23    rumble }
   1194       1.23    rumble 
   1195       1.23    rumble /*
   1196       1.23    rumble  * Reclaim used transmit descriptors and restart the transmit DMA
   1197       1.23    rumble  * engine if necessary.
   1198       1.23    rumble  */
   1199       1.40   tsutsui static void
   1200       1.23    rumble sq_txring_hpc3(struct sq_softc *sc)
   1201       1.23    rumble {
   1202       1.23    rumble 	/*
   1203       1.23    rumble 	 * HPC3 tags descriptors with a bit once they've been
   1204       1.23    rumble 	 * transmitted. We need only free each XMITDONE'd
   1205       1.23    rumble 	 * descriptor, and restart the DMA engine if any
   1206       1.40   tsutsui 	 * descriptors are left over.
   1207       1.23    rumble 	 */
   1208       1.23    rumble 	int i;
   1209       1.38   tsutsui 	uint32_t status = 0;
   1210       1.23    rumble 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
   1211       1.23    rumble 
   1212        1.1   thorpej 	i = sc->sc_prevtx;
   1213        1.1   thorpej 	while (sc->sc_nfreetx < SQ_NTXDESC) {
   1214       1.10    simonb 		/*
   1215       1.10    simonb 		 * Check status first so we don't end up with a case of
   1216        1.2     rafal 		 * the buffer not being finished while the DMA channel
   1217        1.2     rafal 		 * has gone idle.
   1218        1.2     rafal 		 */
   1219       1.26    rumble 		status = sq_hpc_read(sc, HPC3_ENETX_CTL);
   1220        1.2     rafal 
   1221        1.1   thorpej 		SQ_CDTXSYNC(sc, i, sc->sc_txmap[i]->dm_nsegs,
   1222       1.40   tsutsui 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   1223        1.1   thorpej 
   1224       1.23    rumble 		/* Check for used descriptor and restart DMA chain if needed */
   1225       1.40   tsutsui 		if ((sc->sc_txdesc[i].hpc3_hdd_ctl &
   1226       1.40   tsutsui 		    HPC3_HDD_CTL_XMITDONE) == 0) {
   1227       1.26    rumble 			if ((status & HPC3_ENETX_CTL_ACTIVE) == 0) {
   1228       1.22    rumble 				SQ_TRACE(SQ_RESTART_DMA, sc, i, status);
   1229        1.1   thorpej 
   1230       1.26    rumble 				sq_hpc_write(sc, HPC3_ENETX_NDBP,
   1231       1.24    rumble 				    SQ_CDTXADDR(sc, i));
   1232        1.1   thorpej 
   1233       1.10    simonb 				/* Kick DMA channel into life */
   1234       1.26    rumble 				sq_hpc_write(sc, HPC3_ENETX_CTL,
   1235       1.40   tsutsui 				    HPC3_ENETX_CTL_ACTIVE);
   1236        1.1   thorpej 
   1237       1.10    simonb 				/*
   1238       1.10    simonb 				 * Set a watchdog timer in case the chip
   1239       1.10    simonb 				 * flakes out.
   1240       1.10    simonb 				 */
   1241       1.10    simonb 				ifp->if_timer = 5;
   1242       1.23    rumble 			} else
   1243       1.22    rumble 				SQ_TRACE(SQ_TXINTR_BUSY, sc, i, status);
   1244       1.10    simonb 			break;
   1245        1.1   thorpej 		}
   1246        1.1   thorpej 
   1247        1.1   thorpej 		/* Sync the packet data, unload DMA map, free mbuf */
   1248       1.40   tsutsui 		bus_dmamap_sync(sc->sc_dmat, sc->sc_txmap[i],
   1249       1.40   tsutsui 		    0, sc->sc_txmap[i]->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1250        1.1   thorpej 		bus_dmamap_unload(sc->sc_dmat, sc->sc_txmap[i]);
   1251        1.1   thorpej 		m_freem(sc->sc_txmbuf[i]);
   1252        1.1   thorpej 		sc->sc_txmbuf[i] = NULL;
   1253        1.1   thorpej 
   1254        1.1   thorpej 		ifp->if_opackets++;
   1255        1.1   thorpej 		sc->sc_nfreetx++;
   1256        1.1   thorpej 
   1257       1.22    rumble 		SQ_TRACE(SQ_DONE_DMA, sc, i, status);
   1258        1.1   thorpej 		i = SQ_NEXTTX(i);
   1259        1.1   thorpej 	}
   1260        1.1   thorpej 
   1261       1.40   tsutsui 	sc->sc_prevtx = i;
   1262        1.1   thorpej }
   1263        1.1   thorpej 
   1264       1.10    simonb void
   1265        1.1   thorpej sq_reset(struct sq_softc *sc)
   1266        1.1   thorpej {
   1267       1.40   tsutsui 
   1268        1.1   thorpej 	/* Stop HPC dma channels */
   1269       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetr_ctl, 0);
   1270       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetx_ctl, 0);
   1271        1.1   thorpej 
   1272       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetr_reset, 3);
   1273       1.10    simonb 	delay(20);
   1274       1.24    rumble 	sq_hpc_write(sc, sc->hpc_regs->enetr_reset, 0);
   1275        1.1   thorpej }
   1276        1.1   thorpej 
   1277       1.10    simonb /* sq_add_rxbuf: Add a receive buffer to the indicated descriptor. */
   1278        1.1   thorpej int
   1279        1.1   thorpej sq_add_rxbuf(struct sq_softc *sc, int idx)
   1280        1.1   thorpej {
   1281        1.1   thorpej 	int err;
   1282        1.1   thorpej 	struct mbuf *m;
   1283        1.1   thorpej 
   1284        1.1   thorpej 	MGETHDR(m, M_DONTWAIT, MT_DATA);
   1285        1.1   thorpej 	if (m == NULL)
   1286       1.40   tsutsui 		return ENOBUFS;
   1287        1.1   thorpej 
   1288        1.1   thorpej 	MCLGET(m, M_DONTWAIT);
   1289        1.1   thorpej 	if ((m->m_flags & M_EXT) == 0) {
   1290        1.1   thorpej 		m_freem(m);
   1291       1.40   tsutsui 		return ENOBUFS;
   1292        1.1   thorpej 	}
   1293        1.1   thorpej 
   1294        1.1   thorpej 	if (sc->sc_rxmbuf[idx] != NULL)
   1295        1.1   thorpej 		bus_dmamap_unload(sc->sc_dmat, sc->sc_rxmap[idx]);
   1296        1.1   thorpej 
   1297        1.1   thorpej 	sc->sc_rxmbuf[idx] = m;
   1298        1.1   thorpej 
   1299       1.10    simonb 	if ((err = bus_dmamap_load(sc->sc_dmat, sc->sc_rxmap[idx],
   1300       1.40   tsutsui 	    m->m_ext.ext_buf, m->m_ext.ext_size, NULL, BUS_DMA_NOWAIT)) != 0) {
   1301        1.1   thorpej 		printf("%s: can't load rx DMA map %d, error = %d\n",
   1302       1.39   tsutsui 		    device_xname(sc->sc_dev), idx, err);
   1303        1.1   thorpej 		panic("sq_add_rxbuf");	/* XXX */
   1304        1.1   thorpej 	}
   1305        1.1   thorpej 
   1306       1.40   tsutsui 	bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[idx],
   1307       1.40   tsutsui 	    0, sc->sc_rxmap[idx]->dm_mapsize, BUS_DMASYNC_PREREAD);
   1308        1.1   thorpej 
   1309        1.1   thorpej 	SQ_INIT_RXDESC(sc, idx);
   1310        1.1   thorpej 
   1311        1.1   thorpej 	return 0;
   1312        1.1   thorpej }
   1313        1.1   thorpej 
   1314       1.10    simonb void
   1315       1.34      matt sq_dump_buffer(paddr_t addr, psize_t len)
   1316        1.1   thorpej {
   1317       1.15   thorpej 	u_int i;
   1318       1.40   tsutsui 	uint8_t *physaddr = (uint8_t *)MIPS_PHYS_TO_KSEG1(addr);
   1319        1.1   thorpej 
   1320       1.10    simonb 	if (len == 0)
   1321        1.1   thorpej 		return;
   1322        1.1   thorpej 
   1323        1.1   thorpej 	printf("%p: ", physaddr);
   1324        1.1   thorpej 
   1325       1.24    rumble 	for (i = 0; i < len; i++) {
   1326        1.1   thorpej 		printf("%02x ", *(physaddr + i) & 0xff);
   1327        1.1   thorpej 		if ((i % 16) ==  15 && i != len - 1)
   1328        1.1   thorpej 		    printf("\n%p: ", physaddr + i);
   1329        1.1   thorpej 	}
   1330        1.1   thorpej 
   1331        1.1   thorpej 	printf("\n");
   1332        1.1   thorpej }
   1333