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