Home | History | Annotate | Line # | Download | only in dev
if_xe.c revision 1.15.4.1
      1  1.15.4.1      kent /*	$NetBSD: if_xe.c,v 1.15.4.1 2005/04/29 11:28:18 kent Exp $	*/
      2       1.1       dbj /*
      3       1.1       dbj  * Copyright (c) 1998 Darrin B. Jewell
      4       1.1       dbj  * All rights reserved.
      5       1.1       dbj  *
      6       1.1       dbj  * Redistribution and use in source and binary forms, with or without
      7       1.1       dbj  * modification, are permitted provided that the following conditions
      8       1.1       dbj  * are met:
      9       1.1       dbj  * 1. Redistributions of source code must retain the above copyright
     10       1.1       dbj  *    notice, this list of conditions and the following disclaimer.
     11       1.1       dbj  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1       dbj  *    notice, this list of conditions and the following disclaimer in the
     13       1.1       dbj  *    documentation and/or other materials provided with the distribution.
     14       1.1       dbj  * 3. All advertising materials mentioning features or use of this software
     15       1.1       dbj  *    must display the following acknowledgement:
     16       1.1       dbj  *      This product includes software developed by Darrin B. Jewell
     17       1.1       dbj  * 4. The name of the author may not be used to endorse or promote products
     18       1.1       dbj  *    derived from this software without specific prior written permission
     19       1.1       dbj  *
     20       1.1       dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21       1.1       dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22       1.1       dbj  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23       1.1       dbj  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24       1.1       dbj  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25       1.1       dbj  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26       1.1       dbj  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27       1.1       dbj  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28       1.1       dbj  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29       1.1       dbj  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30       1.1       dbj  */
     31      1.14     lukem 
     32      1.14     lukem #include <sys/cdefs.h>
     33  1.15.4.1      kent __KERNEL_RCSID(0, "$NetBSD: if_xe.c,v 1.15.4.1 2005/04/29 11:28:18 kent Exp $");
     34       1.1       dbj 
     35       1.2  jonathan #include "opt_inet.h"
     36       1.1       dbj #include "bpfilter.h"
     37       1.1       dbj 
     38       1.1       dbj #include <sys/param.h>
     39       1.1       dbj #include <sys/systm.h>
     40       1.1       dbj #include <sys/mbuf.h>
     41       1.1       dbj #include <sys/syslog.h>
     42       1.1       dbj #include <sys/socket.h>
     43       1.1       dbj #include <sys/device.h>
     44       1.1       dbj 
     45       1.1       dbj #include <net/if.h>
     46       1.1       dbj #include <net/if_ether.h>
     47       1.1       dbj #include <net/if_media.h>
     48       1.1       dbj 
     49       1.1       dbj #ifdef INET
     50       1.1       dbj #include <netinet/in.h>
     51       1.1       dbj #include <netinet/if_inarp.h>
     52       1.1       dbj #endif
     53       1.1       dbj 
     54       1.1       dbj #include <machine/autoconf.h>
     55       1.1       dbj #include <machine/cpu.h>
     56       1.1       dbj #include <machine/intr.h>
     57       1.1       dbj #include <machine/bus.h>
     58       1.1       dbj 
     59       1.1       dbj #include <next68k/next68k/isr.h>
     60       1.1       dbj 
     61       1.1       dbj #include <next68k/dev/mb8795reg.h>
     62       1.1       dbj #include <next68k/dev/mb8795var.h>
     63       1.1       dbj 
     64       1.7   mycroft #include <next68k/dev/bmapreg.h>
     65       1.7   mycroft #include <next68k/dev/intiovar.h>
     66       1.1       dbj #include <next68k/dev/nextdmareg.h>
     67       1.1       dbj #include <next68k/dev/nextdmavar.h>
     68       1.1       dbj 
     69       1.1       dbj #include <next68k/dev/if_xevar.h>
     70       1.7   mycroft #include <next68k/dev/if_xereg.h>
     71       1.7   mycroft 
     72       1.7   mycroft #ifdef DEBUG
     73       1.7   mycroft #define XE_DEBUG
     74       1.7   mycroft #endif
     75       1.1       dbj 
     76       1.7   mycroft #ifdef XE_DEBUG
     77       1.7   mycroft int xe_debug = 0;
     78       1.7   mycroft #define DPRINTF(x) if (xe_debug) printf x;
     79       1.7   mycroft extern char *ndtracep;
     80       1.7   mycroft extern char ndtrace[];
     81       1.7   mycroft extern int ndtraceshow;
     82       1.7   mycroft #define NDTRACEIF(x) if (10 && ndtracep < (ndtrace + 8192)) do {x;} while (0)
     83       1.7   mycroft #else
     84       1.7   mycroft #define DPRINTF(x)
     85       1.7   mycroft #define NDTRACEIF(x)
     86       1.7   mycroft #endif
     87       1.7   mycroft #define PRINTF(x) printf x;
     88       1.7   mycroft 
     89       1.7   mycroft extern int turbo;
     90       1.1       dbj 
     91  1.15.4.1      kent int	xe_match(struct device *, struct cfdata *, void *);
     92  1.15.4.1      kent void	xe_attach(struct device *, struct device *, void *);
     93  1.15.4.1      kent int	xe_tint(void *);
     94  1.15.4.1      kent int	xe_rint(void *);
     95  1.15.4.1      kent 
     96  1.15.4.1      kent struct mbuf * xe_dma_rxmap_load(struct mb8795_softc *, bus_dmamap_t);
     97  1.15.4.1      kent 
     98  1.15.4.1      kent bus_dmamap_t xe_dma_rx_continue(void *);
     99  1.15.4.1      kent void xe_dma_rx_completed(bus_dmamap_t, void *);
    100  1.15.4.1      kent bus_dmamap_t xe_dma_tx_continue(void *);
    101  1.15.4.1      kent void xe_dma_tx_completed(bus_dmamap_t, void *);
    102  1.15.4.1      kent void xe_dma_rx_shutdown(void *);
    103  1.15.4.1      kent void xe_dma_tx_shutdown(void *);
    104       1.7   mycroft 
    105  1.15.4.1      kent static void	findchannel_defer(struct device *);
    106       1.7   mycroft 
    107      1.11   thorpej CFATTACH_DECL(xe, sizeof(struct xe_softc),
    108      1.11   thorpej     xe_match, xe_attach, NULL, NULL);
    109       1.1       dbj 
    110       1.7   mycroft static int xe_dma_medias[] = {
    111       1.6  christos 	IFM_ETHER|IFM_AUTO,
    112       1.6  christos 	IFM_ETHER|IFM_10_T,
    113       1.6  christos 	IFM_ETHER|IFM_10_2,
    114       1.6  christos };
    115       1.7   mycroft static int nxe_dma_medias = (sizeof(xe_dma_medias)/sizeof(xe_dma_medias[0]));
    116       1.7   mycroft 
    117       1.7   mycroft static int attached = 0;
    118       1.7   mycroft 
    119       1.7   mycroft /*
    120       1.7   mycroft  * Functions and the switch for the MI code.
    121       1.7   mycroft  */
    122  1.15.4.1      kent u_char		xe_read_reg(struct mb8795_softc *, int);
    123  1.15.4.1      kent void		xe_write_reg(struct mb8795_softc *, int, u_char);
    124  1.15.4.1      kent void		xe_dma_reset(struct mb8795_softc *);
    125  1.15.4.1      kent void		xe_dma_rx_setup(struct mb8795_softc *);
    126  1.15.4.1      kent void		xe_dma_rx_go(struct mb8795_softc *);
    127  1.15.4.1      kent struct mbuf *	xe_dma_rx_mbuf(struct mb8795_softc *);
    128  1.15.4.1      kent void		xe_dma_tx_setup(struct mb8795_softc *);
    129  1.15.4.1      kent void		xe_dma_tx_go(struct mb8795_softc *);
    130  1.15.4.1      kent int		xe_dma_tx_mbuf(struct mb8795_softc *, struct mbuf *);
    131  1.15.4.1      kent int		xe_dma_tx_isactive(struct mb8795_softc *);
    132       1.7   mycroft 
    133       1.7   mycroft struct mb8795_glue xe_glue = {
    134       1.7   mycroft 	xe_read_reg,
    135       1.7   mycroft 	xe_write_reg,
    136       1.7   mycroft 	xe_dma_reset,
    137       1.7   mycroft 	xe_dma_rx_setup,
    138       1.7   mycroft 	xe_dma_rx_go,
    139       1.7   mycroft 	xe_dma_rx_mbuf,
    140       1.7   mycroft 	xe_dma_tx_setup,
    141       1.7   mycroft 	xe_dma_tx_go,
    142       1.7   mycroft 	xe_dma_tx_mbuf,
    143       1.7   mycroft 	xe_dma_tx_isactive,
    144       1.7   mycroft };
    145       1.6  christos 
    146       1.1       dbj int
    147  1.15.4.1      kent xe_match(struct device *parent, struct cfdata *match, void *aux)
    148       1.1       dbj {
    149       1.7   mycroft 	struct intio_attach_args *ia = (struct intio_attach_args *)aux;
    150       1.7   mycroft 
    151       1.7   mycroft 	if (attached)
    152       1.7   mycroft 		return (0);
    153       1.7   mycroft 
    154       1.7   mycroft 	ia->ia_addr = (void *)NEXT_P_ENET;
    155       1.7   mycroft 
    156       1.7   mycroft 	return (1);
    157       1.7   mycroft }
    158       1.7   mycroft 
    159       1.7   mycroft static void
    160  1.15.4.1      kent findchannel_defer(struct device *self)
    161       1.7   mycroft {
    162       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)self;
    163       1.7   mycroft 	struct mb8795_softc *sc = &xsc->sc_mb8795;
    164       1.7   mycroft 	int i, error;
    165       1.7   mycroft 
    166       1.7   mycroft 	if (!xsc->sc_txdma) {
    167       1.7   mycroft 		xsc->sc_txdma = nextdma_findchannel ("enetx");
    168       1.7   mycroft 		if (xsc->sc_txdma == NULL)
    169      1.13       wiz 			panic ("%s: can't find enetx DMA channel",
    170       1.7   mycroft 			       sc->sc_dev.dv_xname);
    171       1.7   mycroft 	}
    172       1.7   mycroft 	if (!xsc->sc_rxdma) {
    173       1.7   mycroft 		xsc->sc_rxdma = nextdma_findchannel ("enetr");
    174       1.7   mycroft 		if (xsc->sc_rxdma == NULL)
    175      1.13       wiz 			panic ("%s: can't find enetr DMA channel",
    176       1.7   mycroft 			       sc->sc_dev.dv_xname);
    177       1.7   mycroft 	}
    178      1.13       wiz 	printf ("%s: using DMA channels %s %s\n", sc->sc_dev.dv_xname,
    179       1.7   mycroft 		xsc->sc_txdma->sc_dev.dv_xname, xsc->sc_rxdma->sc_dev.dv_xname);
    180       1.7   mycroft 
    181       1.7   mycroft 	nextdma_setconf (xsc->sc_rxdma, continue_cb, xe_dma_rx_continue);
    182       1.7   mycroft 	nextdma_setconf (xsc->sc_rxdma, completed_cb, xe_dma_rx_completed);
    183       1.7   mycroft 	nextdma_setconf (xsc->sc_rxdma, shutdown_cb, xe_dma_rx_shutdown);
    184       1.7   mycroft 	nextdma_setconf (xsc->sc_rxdma, cb_arg, sc);
    185       1.7   mycroft 
    186       1.7   mycroft 	nextdma_setconf (xsc->sc_txdma, continue_cb, xe_dma_tx_continue);
    187       1.7   mycroft 	nextdma_setconf (xsc->sc_txdma, completed_cb, xe_dma_tx_completed);
    188       1.7   mycroft 	nextdma_setconf (xsc->sc_txdma, shutdown_cb, xe_dma_tx_shutdown);
    189       1.7   mycroft 	nextdma_setconf (xsc->sc_txdma, cb_arg, sc);
    190       1.7   mycroft 
    191      1.13       wiz 	/* Initialize the DMA maps */
    192       1.7   mycroft 	error = bus_dmamap_create(xsc->sc_txdma->sc_dmat, MCLBYTES,
    193       1.7   mycroft 				  (MCLBYTES/MSIZE), MCLBYTES, 0, BUS_DMA_ALLOCNOW,
    194       1.7   mycroft 				  &xsc->sc_tx_dmamap);
    195       1.7   mycroft 	if (error) {
    196       1.8    provos 		panic("%s: can't create tx DMA map, error = %d",
    197       1.7   mycroft 		      sc->sc_dev.dv_xname, error);
    198       1.7   mycroft 	}
    199       1.7   mycroft 
    200       1.7   mycroft 	for(i = 0; i < MB8795_NRXBUFS; i++) {
    201       1.7   mycroft 		error = bus_dmamap_create(xsc->sc_rxdma->sc_dmat, MCLBYTES,
    202       1.7   mycroft 					  (MCLBYTES/MSIZE), MCLBYTES, 0, BUS_DMA_ALLOCNOW,
    203       1.7   mycroft 					  &xsc->sc_rx_dmamap[i]);
    204       1.7   mycroft 		if (error) {
    205       1.8    provos 			panic("%s: can't create rx DMA map, error = %d",
    206       1.7   mycroft 			      sc->sc_dev.dv_xname, error);
    207       1.7   mycroft 		}
    208       1.7   mycroft 		xsc->sc_rx_mb_head[i] = NULL;
    209       1.7   mycroft 	}
    210       1.7   mycroft 	xsc->sc_rx_loaded_idx = 0;
    211       1.7   mycroft 	xsc->sc_rx_completed_idx = 0;
    212       1.7   mycroft 	xsc->sc_rx_handled_idx = 0;
    213       1.7   mycroft 
    214       1.7   mycroft 	/* @@@ more next hacks
    215       1.7   mycroft 	 * the  2000 covers at least a 1500 mtu + headers
    216       1.7   mycroft 	 * + DMA_BEGINALIGNMENT+ DMA_ENDALIGNMENT
    217       1.7   mycroft 	 */
    218       1.7   mycroft 	xsc->sc_txbuf = malloc(2000, M_DEVBUF, M_NOWAIT);
    219       1.7   mycroft 	if (!xsc->sc_txbuf)
    220       1.7   mycroft 		panic("%s: can't malloc tx DMA buffer", sc->sc_dev.dv_xname);
    221       1.7   mycroft 
    222       1.7   mycroft 	xsc->sc_tx_mb_head = NULL;
    223       1.7   mycroft 	xsc->sc_tx_loaded = 0;
    224       1.7   mycroft 
    225       1.7   mycroft 	mb8795_config(sc, xe_dma_medias, nxe_dma_medias, xe_dma_medias[0]);
    226       1.7   mycroft 
    227       1.7   mycroft 	isrlink_autovec(xe_tint, sc, NEXT_I_IPL(NEXT_I_ENETX), 1, NULL);
    228       1.7   mycroft 	INTR_ENABLE(NEXT_I_ENETX);
    229       1.7   mycroft 	isrlink_autovec(xe_rint, sc, NEXT_I_IPL(NEXT_I_ENETR), 1, NULL);
    230       1.7   mycroft 	INTR_ENABLE(NEXT_I_ENETR);
    231       1.1       dbj }
    232       1.1       dbj 
    233       1.1       dbj void
    234  1.15.4.1      kent xe_attach(struct device *parent, struct device *self, void *aux)
    235       1.1       dbj {
    236       1.7   mycroft 	struct intio_attach_args *ia = (struct intio_attach_args *)aux;
    237       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)self;
    238       1.7   mycroft 	struct mb8795_softc *sc = &xsc->sc_mb8795;
    239       1.7   mycroft 
    240       1.7   mycroft 	DPRINTF(("%s: xe_attach()\n",sc->sc_dev.dv_xname));
    241       1.7   mycroft 
    242       1.7   mycroft 	{
    243       1.7   mycroft 		extern u_char rom_enetaddr[6];     /* kludge from machdep.c:next68k_bootargs() */
    244       1.7   mycroft 		int i;
    245       1.7   mycroft 		for(i=0;i<6;i++) {
    246       1.7   mycroft 			sc->sc_enaddr[i] = rom_enetaddr[i];
    247       1.7   mycroft 		}
    248       1.7   mycroft 	}
    249       1.7   mycroft 
    250       1.7   mycroft 	printf("\n%s: MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
    251       1.7   mycroft 	       sc->sc_dev.dv_xname,
    252       1.7   mycroft 	       sc->sc_enaddr[0],sc->sc_enaddr[1],sc->sc_enaddr[2],
    253       1.7   mycroft 	       sc->sc_enaddr[3],sc->sc_enaddr[4],sc->sc_enaddr[5]);
    254       1.7   mycroft 
    255       1.7   mycroft 	xsc->sc_bst = ia->ia_bst;
    256       1.7   mycroft 	if (bus_space_map(xsc->sc_bst, NEXT_P_ENET,
    257       1.7   mycroft 			  XE_DEVICE_SIZE, 0, &xsc->sc_bsh)) {
    258       1.8    provos 		panic("\n%s: can't map mb8795 registers",
    259       1.7   mycroft 		      sc->sc_dev.dv_xname);
    260       1.7   mycroft 	}
    261       1.1       dbj 
    262       1.7   mycroft 	sc->sc_bmap_bst = ia->ia_bst;
    263       1.7   mycroft 	if (bus_space_map(sc->sc_bmap_bst, NEXT_P_BMAP,
    264       1.7   mycroft 			  BMAP_SIZE, 0, &sc->sc_bmap_bsh)) {
    265       1.8    provos 		panic("\n%s: can't map bmap registers",
    266       1.7   mycroft 		      sc->sc_dev.dv_xname);
    267       1.7   mycroft 	}
    268       1.1       dbj 
    269       1.7   mycroft 	/*
    270       1.7   mycroft 	 * Set up glue for MI code.
    271       1.1       dbj 	 */
    272       1.7   mycroft 	sc->sc_glue = &xe_glue;
    273       1.1       dbj 
    274       1.7   mycroft 	xsc->sc_txdma = nextdma_findchannel ("enetx");
    275       1.7   mycroft 	xsc->sc_rxdma = nextdma_findchannel ("enetr");
    276       1.7   mycroft 	if (xsc->sc_rxdma && xsc->sc_txdma) {
    277       1.7   mycroft 		findchannel_defer (self);
    278       1.7   mycroft 	} else {
    279       1.7   mycroft 		config_defer (self, findchannel_defer);
    280       1.7   mycroft 	}
    281       1.1       dbj 
    282       1.7   mycroft 	attached = 1;
    283       1.1       dbj }
    284       1.1       dbj 
    285       1.1       dbj int
    286  1.15.4.1      kent xe_tint(void *arg)
    287       1.1       dbj {
    288       1.7   mycroft 	if (!INTR_OCCURRED(NEXT_I_ENETX))
    289       1.7   mycroft 		return 0;
    290       1.7   mycroft 	mb8795_tint((struct mb8795_softc *)arg);
    291       1.7   mycroft 	return(1);
    292       1.1       dbj }
    293       1.1       dbj 
    294       1.1       dbj int
    295  1.15.4.1      kent xe_rint(void *arg)
    296       1.7   mycroft {
    297       1.7   mycroft 	if (!INTR_OCCURRED(NEXT_I_ENETR))
    298       1.7   mycroft 		return(0);
    299       1.7   mycroft 	mb8795_rint((struct mb8795_softc *)arg);
    300       1.7   mycroft 	return(1);
    301       1.7   mycroft }
    302       1.7   mycroft 
    303       1.7   mycroft /*
    304       1.7   mycroft  * Glue functions.
    305       1.7   mycroft  */
    306       1.7   mycroft 
    307       1.7   mycroft u_char
    308  1.15.4.1      kent xe_read_reg(struct mb8795_softc *sc, int reg)
    309       1.7   mycroft {
    310       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    311       1.7   mycroft 
    312       1.7   mycroft 	return(bus_space_read_1(xsc->sc_bst, xsc->sc_bsh, reg));
    313       1.7   mycroft }
    314       1.7   mycroft 
    315       1.7   mycroft void
    316  1.15.4.1      kent xe_write_reg(struct mb8795_softc *sc, int reg, u_char val)
    317       1.7   mycroft {
    318       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    319       1.7   mycroft 
    320       1.7   mycroft 	bus_space_write_1(xsc->sc_bst, xsc->sc_bsh, reg, val);
    321       1.7   mycroft }
    322       1.7   mycroft 
    323       1.7   mycroft void
    324  1.15.4.1      kent xe_dma_reset(struct mb8795_softc *sc)
    325       1.7   mycroft {
    326       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    327       1.7   mycroft 	int i;
    328       1.7   mycroft 
    329      1.13       wiz 	DPRINTF(("xe DMA reset\n"));
    330       1.7   mycroft 
    331       1.7   mycroft 	nextdma_reset(xsc->sc_rxdma);
    332       1.7   mycroft 	nextdma_reset(xsc->sc_txdma);
    333       1.7   mycroft 
    334       1.7   mycroft 	if (xsc->sc_tx_loaded) {
    335       1.7   mycroft 		bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap,
    336       1.7   mycroft 				0, xsc->sc_tx_dmamap->dm_mapsize,
    337       1.7   mycroft 				BUS_DMASYNC_POSTWRITE);
    338       1.7   mycroft 		bus_dmamap_unload(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap);
    339       1.7   mycroft 		xsc->sc_tx_loaded = 0;
    340       1.7   mycroft 	}
    341       1.7   mycroft 	if (xsc->sc_tx_mb_head) {
    342       1.7   mycroft 		m_freem(xsc->sc_tx_mb_head);
    343       1.7   mycroft 		xsc->sc_tx_mb_head = NULL;
    344       1.7   mycroft 	}
    345       1.7   mycroft 
    346       1.7   mycroft 	for(i = 0; i < MB8795_NRXBUFS; i++) {
    347       1.7   mycroft 		if (xsc->sc_rx_mb_head[i]) {
    348       1.7   mycroft 			bus_dmamap_unload(xsc->sc_rxdma->sc_dmat, xsc->sc_rx_dmamap[i]);
    349       1.7   mycroft 			m_freem(xsc->sc_rx_mb_head[i]);
    350       1.7   mycroft 			xsc->sc_rx_mb_head[i] = NULL;
    351       1.7   mycroft 		}
    352       1.7   mycroft 	}
    353       1.7   mycroft }
    354       1.7   mycroft 
    355       1.7   mycroft void
    356  1.15.4.1      kent xe_dma_rx_setup(struct mb8795_softc *sc)
    357       1.7   mycroft {
    358       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    359       1.7   mycroft 	int i;
    360       1.7   mycroft 
    361      1.13       wiz 	DPRINTF(("xe DMA rx setup\n"));
    362       1.7   mycroft 
    363       1.7   mycroft 	for(i = 0; i < MB8795_NRXBUFS; i++) {
    364       1.7   mycroft 		xsc->sc_rx_mb_head[i] =
    365       1.7   mycroft 			xe_dma_rxmap_load(sc, xsc->sc_rx_dmamap[i]);
    366       1.7   mycroft 	}
    367       1.7   mycroft 	xsc->sc_rx_loaded_idx = 0;
    368       1.7   mycroft 	xsc->sc_rx_completed_idx = 0;
    369       1.7   mycroft 	xsc->sc_rx_handled_idx = 0;
    370       1.7   mycroft 
    371       1.7   mycroft 	nextdma_init(xsc->sc_rxdma);
    372       1.7   mycroft }
    373       1.7   mycroft 
    374       1.7   mycroft void
    375  1.15.4.1      kent xe_dma_rx_go(struct mb8795_softc *sc)
    376       1.7   mycroft {
    377       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    378       1.7   mycroft 
    379      1.13       wiz 	DPRINTF(("xe DMA rx go\n"));
    380       1.7   mycroft 
    381       1.7   mycroft 	nextdma_start(xsc->sc_rxdma, DMACSR_SETREAD);
    382       1.7   mycroft }
    383       1.7   mycroft 
    384       1.7   mycroft struct mbuf *
    385  1.15.4.1      kent xe_dma_rx_mbuf(struct mb8795_softc *sc)
    386       1.7   mycroft {
    387       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    388       1.7   mycroft 	bus_dmamap_t map;
    389       1.7   mycroft 	struct mbuf *m;
    390       1.7   mycroft 
    391       1.7   mycroft 	m = NULL;
    392       1.7   mycroft 	if (xsc->sc_rx_handled_idx != xsc->sc_rx_completed_idx) {
    393       1.7   mycroft 		xsc->sc_rx_handled_idx++;
    394       1.7   mycroft 		xsc->sc_rx_handled_idx %= MB8795_NRXBUFS;
    395       1.7   mycroft 
    396       1.7   mycroft 		map = xsc->sc_rx_dmamap[xsc->sc_rx_handled_idx];
    397       1.7   mycroft 		m = xsc->sc_rx_mb_head[xsc->sc_rx_handled_idx];
    398       1.7   mycroft 
    399       1.7   mycroft 		m->m_len = map->dm_xfer_len;
    400       1.7   mycroft 
    401       1.7   mycroft 		bus_dmamap_sync(xsc->sc_rxdma->sc_dmat, map,
    402       1.7   mycroft 				0, map->dm_mapsize, BUS_DMASYNC_POSTREAD);
    403       1.7   mycroft 
    404       1.7   mycroft 		bus_dmamap_unload(xsc->sc_rxdma->sc_dmat, map);
    405       1.7   mycroft 
    406       1.7   mycroft 		/* Install a fresh mbuf for next packet */
    407       1.7   mycroft 
    408       1.7   mycroft 		xsc->sc_rx_mb_head[xsc->sc_rx_handled_idx] =
    409       1.7   mycroft 			xe_dma_rxmap_load(sc,map);
    410       1.7   mycroft 
    411       1.7   mycroft 		/* Punt runt packets
    412      1.13       wiz 		 * DMA restarts create 0 length packets for example
    413       1.7   mycroft 		 */
    414       1.7   mycroft 		if (m->m_len < ETHER_MIN_LEN) {
    415       1.7   mycroft 			m_freem(m);
    416       1.7   mycroft 			m = NULL;
    417       1.7   mycroft 		}
    418       1.7   mycroft 	}
    419       1.7   mycroft 	return (m);
    420       1.7   mycroft }
    421       1.7   mycroft 
    422       1.7   mycroft void
    423  1.15.4.1      kent xe_dma_tx_setup(struct mb8795_softc *sc)
    424       1.7   mycroft {
    425       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    426       1.7   mycroft 
    427      1.13       wiz 	DPRINTF(("xe DMA tx setup\n"));
    428       1.7   mycroft 
    429       1.7   mycroft 	nextdma_init(xsc->sc_txdma);
    430       1.7   mycroft }
    431       1.7   mycroft 
    432       1.7   mycroft void
    433  1.15.4.1      kent xe_dma_tx_go(struct mb8795_softc *sc)
    434       1.7   mycroft {
    435       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    436       1.7   mycroft 
    437      1.13       wiz 	DPRINTF(("xe DMA tx go\n"));
    438       1.7   mycroft 
    439       1.7   mycroft 	nextdma_start(xsc->sc_txdma, DMACSR_SETWRITE);
    440       1.7   mycroft }
    441       1.7   mycroft 
    442       1.7   mycroft int
    443  1.15.4.1      kent xe_dma_tx_mbuf(struct mb8795_softc *sc, struct mbuf *m)
    444       1.7   mycroft {
    445       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    446       1.7   mycroft 	int error;
    447       1.7   mycroft 
    448       1.7   mycroft 	xsc->sc_tx_mb_head = m;
    449       1.7   mycroft 
    450       1.7   mycroft /* The following is a next specific hack that should
    451       1.7   mycroft  * probably be moved out of MI code.
    452       1.7   mycroft  * This macro assumes it can move forward as needed
    453       1.7   mycroft  * in the buffer.  Perhaps it should zero the extra buffer.
    454       1.7   mycroft  */
    455       1.7   mycroft #define REALIGN_DMABUF(s,l) \
    456       1.7   mycroft 	{ (s) = ((u_char *)(((unsigned)(s)+DMA_BEGINALIGNMENT-1) \
    457       1.7   mycroft 			&~(DMA_BEGINALIGNMENT-1))); \
    458       1.7   mycroft     (l) = ((u_char *)(((unsigned)((s)+(l))+DMA_ENDALIGNMENT-1) \
    459       1.7   mycroft 				&~(DMA_ENDALIGNMENT-1)))-(s);}
    460       1.7   mycroft 
    461       1.7   mycroft #if 0
    462       1.7   mycroft 	error = bus_dmamap_load_mbuf(xsc->sc_txdma->sc_dmat,
    463       1.7   mycroft 				     xsc->sc_tx_dmamap, xsc->sc_tx_mb_head, BUS_DMA_NOWAIT);
    464       1.7   mycroft #else
    465       1.7   mycroft 	{
    466       1.7   mycroft 		u_char *buf = xsc->sc_txbuf;
    467       1.7   mycroft 		int buflen = 0;
    468       1.7   mycroft 
    469       1.7   mycroft 		buflen = m->m_pkthdr.len;
    470       1.7   mycroft 
    471       1.7   mycroft 		{
    472       1.7   mycroft 			u_char *p = buf;
    473       1.7   mycroft 			for (m=xsc->sc_tx_mb_head; m; m = m->m_next) {
    474       1.7   mycroft 				if (m->m_len == 0) continue;
    475       1.7   mycroft 				bcopy(mtod(m, u_char *), p, m->m_len);
    476       1.7   mycroft 				p += m->m_len;
    477      1.12    bouyer 			}
    478      1.12    bouyer 			/* Fix runt packets */
    479      1.12    bouyer 			if (buflen < ETHER_MIN_LEN - ETHER_CRC_LEN) {
    480      1.12    bouyer 				memset(p, 0,
    481      1.12    bouyer 				    ETHER_MIN_LEN - ETHER_CRC_LEN - buflen);
    482      1.12    bouyer 				buflen = ETHER_MIN_LEN - ETHER_CRC_LEN;
    483       1.7   mycroft 			}
    484       1.7   mycroft 		}
    485       1.7   mycroft 
    486       1.7   mycroft 		error = bus_dmamap_load(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap,
    487       1.7   mycroft 					buf,buflen,NULL,BUS_DMA_NOWAIT);
    488       1.7   mycroft 	}
    489       1.7   mycroft #endif
    490       1.7   mycroft 	if (error) {
    491       1.7   mycroft 		printf("%s: can't load mbuf chain, error = %d\n",
    492       1.7   mycroft 		       sc->sc_dev.dv_xname, error);
    493       1.7   mycroft 		m_freem(xsc->sc_tx_mb_head);
    494       1.7   mycroft 		xsc->sc_tx_mb_head = NULL;
    495       1.7   mycroft 		return (error);
    496       1.7   mycroft 	}
    497       1.7   mycroft 
    498       1.7   mycroft #ifdef DIAGNOSTIC
    499       1.7   mycroft 	if (xsc->sc_tx_loaded != 0) {
    500       1.7   mycroft 		panic("%s: xsc->sc_tx_loaded is %d",sc->sc_dev.dv_xname,
    501       1.7   mycroft 		      xsc->sc_tx_loaded);
    502       1.7   mycroft 	}
    503       1.7   mycroft #endif
    504       1.7   mycroft 
    505       1.7   mycroft 	bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap, 0,
    506       1.7   mycroft 			xsc->sc_tx_dmamap->dm_mapsize, BUS_DMASYNC_PREWRITE);
    507       1.7   mycroft 
    508       1.7   mycroft 	return (0);
    509       1.7   mycroft }
    510       1.7   mycroft 
    511       1.7   mycroft int
    512  1.15.4.1      kent xe_dma_tx_isactive(struct mb8795_softc *sc)
    513       1.7   mycroft {
    514       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    515       1.7   mycroft 
    516       1.7   mycroft 	return (xsc->sc_tx_loaded != 0);
    517       1.7   mycroft }
    518       1.7   mycroft 
    519       1.7   mycroft /****************************************************************/
    520       1.7   mycroft 
    521       1.7   mycroft void
    522  1.15.4.1      kent xe_dma_tx_completed(bus_dmamap_t map, void *arg)
    523       1.7   mycroft {
    524      1.15  perseant #if defined (XE_DEBUG) || defined (DIAGNOSTIC)
    525       1.7   mycroft 	struct mb8795_softc *sc = arg;
    526      1.15  perseant #endif
    527      1.15  perseant #ifdef DIAGNOSTIC
    528       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    529      1.15  perseant #endif
    530       1.7   mycroft 
    531       1.7   mycroft 	DPRINTF(("%s: xe_dma_tx_completed()\n",sc->sc_dev.dv_xname));
    532       1.7   mycroft 
    533       1.7   mycroft #ifdef DIAGNOSTIC
    534       1.7   mycroft 	if (!xsc->sc_tx_loaded) {
    535      1.10    provos 		panic("%s: tx completed never loaded",sc->sc_dev.dv_xname);
    536       1.7   mycroft 	}
    537       1.7   mycroft 	if (map != xsc->sc_tx_dmamap) {
    538       1.7   mycroft 		panic("%s: unexpected tx completed map",sc->sc_dev.dv_xname);
    539       1.7   mycroft 	}
    540       1.7   mycroft 
    541       1.7   mycroft #endif
    542       1.7   mycroft }
    543       1.7   mycroft 
    544       1.7   mycroft void
    545  1.15.4.1      kent xe_dma_tx_shutdown(void *arg)
    546       1.1       dbj {
    547       1.7   mycroft 	struct mb8795_softc *sc = arg;
    548       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    549       1.7   mycroft 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    550       1.7   mycroft 
    551       1.7   mycroft 	DPRINTF(("%s: xe_dma_tx_shutdown()\n",sc->sc_dev.dv_xname));
    552       1.7   mycroft 
    553       1.7   mycroft #ifdef DIAGNOSTIC
    554       1.7   mycroft 	if (!xsc->sc_tx_loaded) {
    555      1.10    provos 		panic("%s: tx shutdown never loaded",sc->sc_dev.dv_xname);
    556       1.7   mycroft 	}
    557       1.7   mycroft #endif
    558       1.7   mycroft 
    559       1.7   mycroft 	if (turbo)
    560       1.7   mycroft 		MB_WRITE_REG(sc, MB8795_TXMODE, MB8795_TXMODE_TURBO1);
    561       1.7   mycroft 	if (xsc->sc_tx_loaded) {
    562       1.7   mycroft 		bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap,
    563       1.7   mycroft 				0, xsc->sc_tx_dmamap->dm_mapsize,
    564       1.7   mycroft 				BUS_DMASYNC_POSTWRITE);
    565       1.7   mycroft 		bus_dmamap_unload(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap);
    566       1.7   mycroft 		m_freem(xsc->sc_tx_mb_head);
    567       1.7   mycroft 		xsc->sc_tx_mb_head = NULL;
    568       1.7   mycroft 
    569       1.7   mycroft 		xsc->sc_tx_loaded--;
    570       1.7   mycroft 	}
    571       1.7   mycroft 
    572       1.7   mycroft #ifdef DIAGNOSTIC
    573       1.7   mycroft 	if (xsc->sc_tx_loaded != 0) {
    574       1.7   mycroft 		panic("%s: sc->sc_tx_loaded is %d",sc->sc_dev.dv_xname,
    575       1.7   mycroft 		      xsc->sc_tx_loaded);
    576       1.7   mycroft 	}
    577       1.7   mycroft #endif
    578       1.7   mycroft 
    579       1.7   mycroft 	ifp->if_timer = 0;
    580       1.7   mycroft 
    581       1.7   mycroft #if 1
    582       1.7   mycroft 	if ((ifp->if_flags & IFF_RUNNING) && !IF_IS_EMPTY(&sc->sc_tx_snd)) {
    583  1.15.4.1      kent 		void mb8795_start_dma(struct mb8795_softc *); /* XXXX */
    584       1.7   mycroft 		mb8795_start_dma(sc);
    585       1.7   mycroft 	}
    586       1.7   mycroft #endif
    587       1.7   mycroft 
    588       1.7   mycroft #if 0
    589       1.7   mycroft 	/* Enable ready interrupt */
    590       1.7   mycroft 	MB_WRITE_REG(sc, MB8795_TXMASK,
    591       1.7   mycroft 		     MB_READ_REG(sc, MB8795_TXMASK)
    592       1.7   mycroft 		     | MB8795_TXMASK_TXRXIE/* READYIE */);
    593       1.7   mycroft #endif
    594       1.7   mycroft }
    595       1.7   mycroft 
    596       1.7   mycroft 
    597       1.7   mycroft void
    598  1.15.4.1      kent xe_dma_rx_completed(bus_dmamap_t map, void *arg)
    599       1.7   mycroft {
    600       1.7   mycroft 	struct mb8795_softc *sc = arg;
    601       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    602       1.7   mycroft 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    603       1.7   mycroft 
    604       1.7   mycroft 	if (ifp->if_flags & IFF_RUNNING) {
    605       1.7   mycroft 		xsc->sc_rx_completed_idx++;
    606       1.7   mycroft 		xsc->sc_rx_completed_idx %= MB8795_NRXBUFS;
    607       1.7   mycroft 
    608       1.7   mycroft 		DPRINTF(("%s: xe_dma_rx_completed(), sc->sc_rx_completed_idx = %d\n",
    609       1.7   mycroft 			 sc->sc_dev.dv_xname, xsc->sc_rx_completed_idx));
    610       1.7   mycroft 
    611       1.7   mycroft #if (defined(DIAGNOSTIC))
    612       1.7   mycroft 		if (map != xsc->sc_rx_dmamap[xsc->sc_rx_completed_idx]) {
    613       1.8    provos 			panic("%s: Unexpected rx dmamap completed",
    614       1.7   mycroft 			      sc->sc_dev.dv_xname);
    615       1.7   mycroft 		}
    616       1.7   mycroft #endif
    617       1.7   mycroft 	}
    618       1.7   mycroft #ifdef DIAGNOSTIC
    619       1.7   mycroft 	else
    620       1.7   mycroft 		DPRINTF(("%s: Unexpected rx dmamap completed while if not running\n",
    621       1.7   mycroft 			 sc->sc_dev.dv_xname));
    622       1.7   mycroft #endif
    623       1.7   mycroft }
    624       1.7   mycroft 
    625       1.7   mycroft void
    626  1.15.4.1      kent xe_dma_rx_shutdown(void *arg)
    627       1.7   mycroft {
    628       1.7   mycroft 	struct mb8795_softc *sc = arg;
    629       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    630       1.7   mycroft 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    631       1.7   mycroft 
    632       1.7   mycroft 	if (ifp->if_flags & IFF_RUNNING) {
    633       1.7   mycroft 		DPRINTF(("%s: xe_dma_rx_shutdown(), restarting.\n",
    634       1.7   mycroft 			 sc->sc_dev.dv_xname));
    635       1.7   mycroft 
    636       1.7   mycroft 		nextdma_start(xsc->sc_rxdma, DMACSR_SETREAD);
    637       1.7   mycroft 		if (turbo)
    638       1.7   mycroft 			MB_WRITE_REG(sc, MB8795_RXMODE, MB8795_RXMODE_TEST | MB8795_RXMODE_MULTICAST);
    639       1.7   mycroft 	}
    640       1.7   mycroft #ifdef DIAGNOSTIC
    641       1.7   mycroft 	else
    642      1.13       wiz 		DPRINTF(("%s: Unexpected rx DMA shutdown while if not running\n",
    643       1.7   mycroft 			 sc->sc_dev.dv_xname));
    644       1.7   mycroft #endif
    645       1.7   mycroft }
    646       1.7   mycroft 
    647       1.7   mycroft /*
    648       1.7   mycroft  * load a dmamap with a freshly allocated mbuf
    649       1.7   mycroft  */
    650       1.7   mycroft struct mbuf *
    651  1.15.4.1      kent xe_dma_rxmap_load(struct mb8795_softc *sc, bus_dmamap_t map)
    652       1.7   mycroft {
    653       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    654       1.7   mycroft 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    655       1.7   mycroft 	struct mbuf *m;
    656       1.7   mycroft 	int error;
    657       1.7   mycroft 
    658       1.7   mycroft 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    659       1.7   mycroft 	if (m) {
    660       1.7   mycroft 		MCLGET(m, M_DONTWAIT);
    661       1.7   mycroft 		if ((m->m_flags & M_EXT) == 0) {
    662       1.7   mycroft 			m_freem(m);
    663       1.7   mycroft 			m = NULL;
    664       1.7   mycroft 		} else {
    665       1.7   mycroft 			m->m_len = MCLBYTES;
    666       1.7   mycroft 		}
    667       1.7   mycroft 	}
    668       1.7   mycroft 	if (!m) {
    669       1.7   mycroft 		/* @@@ Handle this gracefully by reusing a scratch buffer
    670       1.7   mycroft 		 * or something.
    671       1.7   mycroft 		 */
    672       1.8    provos 		panic("Unable to get memory for incoming ethernet");
    673       1.7   mycroft 	}
    674       1.7   mycroft 
    675       1.7   mycroft 	/* Align buffer, @@@ next specific.
    676       1.7   mycroft 	 * perhaps should be using M_ALIGN here instead?
    677       1.7   mycroft 	 * First we give us a little room to align with.
    678       1.7   mycroft 	 */
    679       1.7   mycroft 	{
    680       1.7   mycroft 		u_char *buf = m->m_data;
    681       1.7   mycroft 		int buflen = m->m_len;
    682       1.7   mycroft 		buflen -= DMA_ENDALIGNMENT+DMA_BEGINALIGNMENT;
    683       1.7   mycroft 		REALIGN_DMABUF(buf, buflen);
    684       1.7   mycroft 		m->m_data = buf;
    685       1.7   mycroft 		m->m_len = buflen;
    686       1.7   mycroft 	}
    687       1.7   mycroft 
    688       1.7   mycroft 	m->m_pkthdr.rcvif = ifp;
    689       1.7   mycroft 	m->m_pkthdr.len = m->m_len;
    690       1.7   mycroft 
    691       1.7   mycroft 	error = bus_dmamap_load_mbuf(xsc->sc_rxdma->sc_dmat,
    692       1.7   mycroft 			map, m, BUS_DMA_NOWAIT);
    693       1.7   mycroft 
    694       1.7   mycroft 	bus_dmamap_sync(xsc->sc_rxdma->sc_dmat, map, 0,
    695       1.7   mycroft 			map->dm_mapsize, BUS_DMASYNC_PREREAD);
    696       1.7   mycroft 
    697       1.7   mycroft 	if (error) {
    698       1.7   mycroft 		DPRINTF(("DEBUG: m->m_data = %p, m->m_len = %d\n",
    699       1.7   mycroft 				m->m_data, m->m_len));
    700       1.7   mycroft 		DPRINTF(("DEBUG: MCLBYTES = %d, map->_dm_size = %ld\n",
    701       1.7   mycroft 				MCLBYTES, map->_dm_size));
    702       1.7   mycroft 
    703       1.8    provos 		panic("%s: can't load rx mbuf chain, error = %d",
    704       1.7   mycroft 				sc->sc_dev.dv_xname, error);
    705       1.7   mycroft 		m_freem(m);
    706       1.7   mycroft 		m = NULL;
    707       1.7   mycroft 	}
    708       1.7   mycroft 
    709       1.7   mycroft 	return(m);
    710       1.7   mycroft }
    711       1.7   mycroft 
    712       1.7   mycroft bus_dmamap_t
    713  1.15.4.1      kent xe_dma_rx_continue(void *arg)
    714       1.7   mycroft {
    715       1.7   mycroft 	struct mb8795_softc *sc = arg;
    716       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    717       1.7   mycroft 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    718       1.7   mycroft 	bus_dmamap_t map = NULL;
    719       1.7   mycroft 
    720       1.7   mycroft 	if (ifp->if_flags & IFF_RUNNING) {
    721       1.7   mycroft 		if (((xsc->sc_rx_loaded_idx+1)%MB8795_NRXBUFS) == xsc->sc_rx_handled_idx) {
    722       1.7   mycroft 			/* make space for one packet by dropping one */
    723       1.7   mycroft 			struct mbuf *m;
    724       1.7   mycroft 			m = xe_dma_rx_mbuf (sc);
    725       1.7   mycroft 			if (m)
    726       1.7   mycroft 				m_freem(m);
    727       1.7   mycroft #if (defined(DIAGNOSTIC))
    728       1.7   mycroft 			DPRINTF(("%s: out of receive DMA buffers\n",sc->sc_dev.dv_xname));
    729       1.7   mycroft #endif
    730       1.7   mycroft 		}
    731       1.7   mycroft 		xsc->sc_rx_loaded_idx++;
    732       1.7   mycroft 		xsc->sc_rx_loaded_idx %= MB8795_NRXBUFS;
    733       1.7   mycroft 		map = xsc->sc_rx_dmamap[xsc->sc_rx_loaded_idx];
    734       1.7   mycroft 
    735       1.7   mycroft 		DPRINTF(("%s: xe_dma_rx_continue() xsc->sc_rx_loaded_idx = %d\nn",
    736       1.7   mycroft 			 sc->sc_dev.dv_xname,xsc->sc_rx_loaded_idx));
    737       1.7   mycroft 	}
    738       1.7   mycroft #ifdef DIAGNOSTIC
    739       1.7   mycroft 	else
    740      1.13       wiz 		panic("%s: Unexpected rx DMA continue while if not running",
    741       1.7   mycroft 		      sc->sc_dev.dv_xname);
    742       1.7   mycroft #endif
    743       1.7   mycroft 
    744       1.7   mycroft 	return(map);
    745       1.7   mycroft }
    746       1.7   mycroft 
    747       1.7   mycroft bus_dmamap_t
    748  1.15.4.1      kent xe_dma_tx_continue(void *arg)
    749       1.7   mycroft {
    750       1.7   mycroft 	struct mb8795_softc *sc = arg;
    751       1.7   mycroft 	struct xe_softc *xsc = (struct xe_softc *)sc;
    752       1.7   mycroft 	bus_dmamap_t map;
    753       1.7   mycroft 
    754       1.7   mycroft 	DPRINTF(("%s: xe_dma_tx_continue()\n",sc->sc_dev.dv_xname));
    755       1.7   mycroft 
    756       1.7   mycroft 	if (xsc->sc_tx_loaded) {
    757       1.7   mycroft 		map = NULL;
    758       1.7   mycroft 	} else {
    759       1.7   mycroft 		map = xsc->sc_tx_dmamap;
    760       1.7   mycroft 		xsc->sc_tx_loaded++;
    761       1.7   mycroft 	}
    762       1.7   mycroft 
    763       1.7   mycroft #ifdef DIAGNOSTIC
    764       1.7   mycroft 	if (xsc->sc_tx_loaded != 1) {
    765       1.7   mycroft 		panic("%s: sc->sc_tx_loaded is %d",sc->sc_dev.dv_xname,
    766       1.7   mycroft 				xsc->sc_tx_loaded);
    767       1.7   mycroft 	}
    768       1.7   mycroft #endif
    769       1.7   mycroft 
    770       1.7   mycroft 	return(map);
    771       1.1       dbj }
    772