Home | History | Annotate | Line # | Download | only in dev
nextdma.c revision 1.47
      1  1.47       mrg /*	$NetBSD: nextdma.c,v 1.47 2010/06/06 02:51:46 mrg 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  *
     15   1.1       dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16   1.1       dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17   1.1       dbj  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18   1.1       dbj  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19   1.1       dbj  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20   1.1       dbj  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21   1.1       dbj  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22   1.1       dbj  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23   1.1       dbj  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24   1.1       dbj  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25   1.1       dbj  */
     26  1.35     lukem 
     27  1.35     lukem #include <sys/cdefs.h>
     28  1.47       mrg __KERNEL_RCSID(0, "$NetBSD: nextdma.c,v 1.47 2010/06/06 02:51:46 mrg Exp $");
     29   1.1       dbj 
     30   1.1       dbj #include <sys/param.h>
     31   1.1       dbj #include <sys/systm.h>
     32   1.1       dbj #include <sys/mbuf.h>
     33   1.1       dbj #include <sys/syslog.h>
     34   1.1       dbj #include <sys/socket.h>
     35   1.1       dbj #include <sys/device.h>
     36   1.1       dbj #include <sys/malloc.h>
     37   1.1       dbj #include <sys/ioctl.h>
     38   1.1       dbj #include <sys/errno.h>
     39   1.1       dbj 
     40  1.31   mycroft #define _M68K_BUS_DMA_PRIVATE
     41   1.1       dbj #include <machine/autoconf.h>
     42   1.1       dbj #include <machine/cpu.h>
     43   1.1       dbj #include <machine/intr.h>
     44   1.5       dbj 
     45   1.5       dbj #include <m68k/cacheops.h>
     46   1.1       dbj 
     47   1.1       dbj #include <next68k/next68k/isr.h>
     48  1.31   mycroft #include <next68k/next68k/nextrom.h>
     49   1.1       dbj 
     50  1.31   mycroft #include <next68k/dev/intiovar.h>
     51   1.1       dbj 
     52   1.1       dbj #include "nextdmareg.h"
     53   1.1       dbj #include "nextdmavar.h"
     54   1.1       dbj 
     55  1.31   mycroft #include "esp.h"
     56  1.31   mycroft #include "xe.h"
     57  1.31   mycroft 
     58  1.31   mycroft #if DEBUG
     59   1.1       dbj #define ND_DEBUG
     60   1.1       dbj #endif
     61   1.1       dbj 
     62  1.31   mycroft extern int turbo;
     63  1.31   mycroft 
     64  1.40     perry #define panic		__asm volatile("trap  #15"); printf
     65  1.30  christos 
     66  1.31   mycroft #define NEXTDMA_DEBUG nextdma_debug
     67  1.31   mycroft /* (nsc->sc_chan->nd_intr == NEXT_I_SCSI_DMA) && nextdma_debug */
     68   1.1       dbj #if defined(ND_DEBUG)
     69   1.8       dbj int nextdma_debug = 0;
     70  1.30  christos #define DPRINTF(x) if (NEXTDMA_DEBUG) printf x;
     71  1.31   mycroft int ndtraceshow = 0;
     72  1.31   mycroft char ndtrace[8192+100];
     73  1.31   mycroft char *ndtracep = ndtrace;
     74  1.31   mycroft #define NDTRACEIF(x) if (10 && /* (nsc->sc_chan->nd_intr == NEXT_I_SCSI_DMA) && */ ndtracep < (ndtrace + 8192)) do {x;} while (0)
     75   1.1       dbj #else
     76   1.1       dbj #define DPRINTF(x)
     77  1.31   mycroft #define NDTRACEIF(x)
     78   1.1       dbj #endif
     79  1.31   mycroft #define PRINTF(x) printf x
     80   1.1       dbj 
     81  1.26       dbj #if defined(ND_DEBUG)
     82  1.26       dbj int nextdma_debug_enetr_idx = 0;
     83  1.26       dbj unsigned int nextdma_debug_enetr_state[100] = { 0 };
     84  1.26       dbj int nextdma_debug_scsi_idx = 0;
     85  1.26       dbj unsigned int nextdma_debug_scsi_state[100] = { 0 };
     86  1.26       dbj 
     87  1.31   mycroft void nextdma_debug_initstate(struct nextdma_softc *);
     88  1.31   mycroft void nextdma_debug_savestate(struct nextdma_softc *, unsigned int);
     89  1.26       dbj void nextdma_debug_scsi_dumpstate(void);
     90  1.26       dbj void nextdma_debug_enetr_dumpstate(void);
     91  1.31   mycroft #endif
     92  1.31   mycroft 
     93  1.31   mycroft 
     94  1.37       chs int	nextdma_match(struct device *, struct cfdata *, void *);
     95  1.37       chs void	nextdma_attach(struct device *, struct device *, void *);
     96  1.31   mycroft 
     97  1.37       chs void nextdmamap_sync(bus_dma_tag_t, bus_dmamap_t, bus_addr_t, bus_size_t, int);
     98  1.37       chs int nextdma_continue(struct nextdma_softc *);
     99  1.37       chs void nextdma_rotate(struct nextdma_softc *);
    100  1.31   mycroft 
    101  1.37       chs void nextdma_setup_cont_regs(struct nextdma_softc *);
    102  1.37       chs void nextdma_setup_curr_regs(struct nextdma_softc *);
    103  1.31   mycroft 
    104  1.31   mycroft #if NESP > 0
    105  1.37       chs static int nextdma_esp_intr(void *);
    106  1.31   mycroft #endif
    107  1.31   mycroft #if NXE > 0
    108  1.37       chs static int nextdma_enet_intr(void *);
    109  1.31   mycroft #endif
    110  1.31   mycroft 
    111  1.37       chs #define nd_bsr4(reg) \
    112  1.37       chs 	bus_space_read_4(nsc->sc_bst, nsc->sc_bsh, (reg))
    113  1.37       chs #define nd_bsw4(reg,val) \
    114  1.37       chs 	bus_space_write_4(nsc->sc_bst, nsc->sc_bsh, (reg), (val))
    115  1.26       dbj 
    116  1.34   thorpej CFATTACH_DECL(nextdma, sizeof(struct nextdma_softc),
    117  1.34   thorpej     nextdma_match, nextdma_attach, NULL, NULL);
    118  1.31   mycroft 
    119  1.31   mycroft static struct nextdma_channel nextdma_channel[] = {
    120  1.31   mycroft #if NESP > 0
    121  1.31   mycroft 	{ "scsi", NEXT_P_SCSI_CSR, DD_SIZE, NEXT_I_SCSI_DMA, &nextdma_esp_intr },
    122  1.31   mycroft #endif
    123  1.31   mycroft #if NXE > 0
    124  1.31   mycroft 	{ "enetx", NEXT_P_ENETX_CSR, DD_SIZE, NEXT_I_ENETX_DMA, &nextdma_enet_intr },
    125  1.31   mycroft 	{ "enetr", NEXT_P_ENETR_CSR, DD_SIZE, NEXT_I_ENETR_DMA, &nextdma_enet_intr },
    126  1.31   mycroft #endif
    127  1.31   mycroft };
    128  1.31   mycroft static int nnextdma_channels = (sizeof(nextdma_channel)/sizeof(nextdma_channel[0]));
    129  1.31   mycroft 
    130  1.31   mycroft static int attached = 0;
    131  1.26       dbj 
    132  1.31   mycroft struct nextdma_softc *
    133  1.38        he nextdma_findchannel(const char *name)
    134  1.26       dbj {
    135  1.45    dyoung 	device_t dev;
    136  1.45    dyoung 	deviter_t di;
    137  1.26       dbj 
    138  1.45    dyoung 	for (dev = deviter_first(&di, DEVITER_F_ROOT_FIRST);
    139  1.45    dyoung 	     dev != NULL;
    140  1.45    dyoung 	     dev = deviter_next(&di)) {
    141  1.45    dyoung 		if (strncmp(dev->dv_xname, "nextdma", 7) == 0) {
    142  1.45    dyoung 			struct nextdma_softc *nsc = device_private(dev);
    143  1.45    dyoung 			if (strcmp(nsc->sc_chan->nd_name, name) == 0)
    144  1.45    dyoung 				break;
    145  1.45    dyoung 		}
    146  1.45    dyoung 	}
    147  1.45    dyoung 	deviter_release(&di);
    148  1.45    dyoung 	if (dev == NULL)
    149  1.45    dyoung 		return NULL;
    150  1.45    dyoung 	return device_private(dev);
    151  1.26       dbj }
    152  1.26       dbj 
    153  1.31   mycroft int
    154  1.37       chs nextdma_match(struct device *parent, struct cfdata *match, void *aux)
    155  1.26       dbj {
    156  1.31   mycroft 	struct intio_attach_args *ia = (struct intio_attach_args *)aux;
    157  1.26       dbj 
    158  1.31   mycroft 	if (attached >= nnextdma_channels)
    159  1.31   mycroft 		return (0);
    160  1.26       dbj 
    161  1.31   mycroft 	ia->ia_addr = (void *)nextdma_channel[attached].nd_base;
    162   1.1       dbj 
    163  1.31   mycroft 	return (1);
    164  1.31   mycroft }
    165   1.1       dbj 
    166   1.1       dbj void
    167  1.37       chs nextdma_attach(struct device *parent, struct device *self, void *aux)
    168   1.1       dbj {
    169  1.31   mycroft 	struct nextdma_softc *nsc = (struct nextdma_softc *)self;
    170  1.31   mycroft 	struct intio_attach_args *ia = (struct intio_attach_args *)aux;
    171  1.31   mycroft 
    172  1.31   mycroft 	if (attached >= nnextdma_channels)
    173  1.31   mycroft 		return;
    174  1.31   mycroft 
    175  1.31   mycroft 	nsc->sc_chan = &nextdma_channel[attached];
    176   1.1       dbj 
    177  1.31   mycroft 	nsc->sc_dmat = ia->ia_dmat;
    178  1.31   mycroft 	nsc->sc_bst = ia->ia_bst;
    179   1.1       dbj 
    180  1.31   mycroft 	if (bus_space_map(nsc->sc_bst, nsc->sc_chan->nd_base,
    181  1.31   mycroft 			  nsc->sc_chan->nd_size, 0, &nsc->sc_bsh)) {
    182  1.32    provos 		panic("%s: can't map DMA registers for channel %s",
    183  1.31   mycroft 		      nsc->sc_dev.dv_xname, nsc->sc_chan->nd_name);
    184   1.1       dbj 	}
    185   1.1       dbj 
    186  1.31   mycroft 	nextdma_init (nsc);
    187  1.30  christos 
    188  1.31   mycroft 	isrlink_autovec(nsc->sc_chan->nd_intrfunc, nsc,
    189  1.31   mycroft 			NEXT_I_IPL(nsc->sc_chan->nd_intr), 10, NULL);
    190  1.31   mycroft 	INTR_ENABLE(nsc->sc_chan->nd_intr);
    191   1.1       dbj 
    192  1.31   mycroft 	printf (": channel %d (%s)\n", attached,
    193  1.31   mycroft 		nsc->sc_chan->nd_name);
    194  1.31   mycroft 	attached++;
    195  1.31   mycroft 
    196  1.31   mycroft 	return;
    197   1.1       dbj }
    198   1.1       dbj 
    199   1.1       dbj void
    200  1.37       chs nextdma_init(struct nextdma_softc *nsc)
    201   1.1       dbj {
    202  1.22        tv #ifdef ND_DEBUG
    203  1.30  christos 	if (NEXTDMA_DEBUG) {
    204  1.22        tv 		char sbuf[256];
    205  1.22        tv 
    206  1.43  christos 		snprintb(sbuf, sizeof(sbuf), NEXT_INTR_BITS,
    207  1.47       mrg 		    NEXT_I_BIT(nsc->sc_chan->nd_intr));
    208  1.22        tv 		printf("DMA init ipl (%ld) intr(0x%s)\n",
    209  1.31   mycroft 			NEXT_I_IPL(nsc->sc_chan->nd_intr), sbuf);
    210  1.22        tv 	}
    211  1.22        tv #endif
    212   1.1       dbj 
    213  1.31   mycroft 	nsc->sc_stat.nd_map = NULL;
    214  1.31   mycroft 	nsc->sc_stat.nd_idx = 0;
    215  1.31   mycroft 	nsc->sc_stat.nd_map_cont = NULL;
    216  1.31   mycroft 	nsc->sc_stat.nd_idx_cont = 0;
    217  1.31   mycroft 	nsc->sc_stat.nd_exception = 0;
    218   1.1       dbj 
    219  1.31   mycroft 	nd_bsw4 (DD_CSR, DMACSR_RESET | DMACSR_CLRCOMPLETE);
    220  1.31   mycroft 	nd_bsw4 (DD_CSR, 0);
    221   1.1       dbj 
    222  1.31   mycroft #if 01
    223  1.31   mycroft 	nextdma_setup_curr_regs(nsc);
    224  1.31   mycroft 	nextdma_setup_cont_regs(nsc);
    225  1.31   mycroft #endif
    226   1.1       dbj 
    227  1.20       dbj #if defined(DIAGNOSTIC)
    228   1.1       dbj 	{
    229   1.1       dbj 		u_long state;
    230  1.31   mycroft 		state = nd_bsr4 (DD_CSR);
    231  1.20       dbj 
    232  1.20       dbj #if 1
    233  1.41     lukem 		/* mourning (a 25 MHz 68040 mono slab) appears to set BUSEXC
    234  1.41     lukem 		 * milo (a 25 MHz 68040 mono cube) didn't have this problem
    235  1.31   mycroft 		 * Darrin B. Jewell <jewell (at) mit.edu>  Mon May 25 07:53:05 1998
    236  1.31   mycroft 		 */
    237  1.31   mycroft 		state &= (DMACSR_COMPLETE | DMACSR_SUPDATE | DMACSR_ENABLE);
    238  1.20       dbj #else
    239  1.31   mycroft 		state &= (DMACSR_BUSEXC | DMACSR_COMPLETE |
    240  1.31   mycroft 			  DMACSR_SUPDATE | DMACSR_ENABLE);
    241  1.20       dbj #endif
    242   1.1       dbj 		if (state) {
    243  1.31   mycroft 			nextdma_print(nsc);
    244  1.20       dbj 			panic("DMA did not reset");
    245   1.1       dbj 		}
    246   1.1       dbj 	}
    247   1.1       dbj #endif
    248   1.1       dbj }
    249   1.1       dbj 
    250   1.1       dbj void
    251  1.37       chs nextdma_reset(struct nextdma_softc *nsc)
    252   1.1       dbj {
    253   1.1       dbj 	int s;
    254  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    255  1.31   mycroft 
    256  1.18       dbj 	s = spldma();
    257   1.8       dbj 
    258   1.8       dbj 	DPRINTF(("DMA reset\n"));
    259   1.8       dbj 
    260   1.8       dbj #if (defined(ND_DEBUG))
    261  1.31   mycroft 	if (NEXTDMA_DEBUG > 1) nextdma_print(nsc);
    262   1.8       dbj #endif
    263   1.8       dbj 
    264  1.31   mycroft 	nd_bsw4 (DD_CSR, DMACSR_CLRCOMPLETE | DMACSR_RESET);
    265  1.31   mycroft 	if ((stat->nd_map) || (stat->nd_map_cont)) {
    266  1.31   mycroft 		if (stat->nd_map_cont) {
    267  1.30  christos 			DPRINTF(("DMA: resetting with non null continue map\n"));
    268  1.31   mycroft 			if (nsc->sc_conf.nd_completed_cb)
    269  1.31   mycroft 				(*nsc->sc_conf.nd_completed_cb)
    270  1.31   mycroft 					(stat->nd_map_cont, nsc->sc_conf.nd_cb_arg);
    271  1.30  christos 
    272  1.31   mycroft 			stat->nd_map_cont = 0;
    273  1.31   mycroft 			stat->nd_idx_cont = 0;
    274  1.30  christos 		}
    275  1.31   mycroft 		if (nsc->sc_conf.nd_shutdown_cb)
    276  1.31   mycroft 			(*nsc->sc_conf.nd_shutdown_cb)(nsc->sc_conf.nd_cb_arg);
    277  1.31   mycroft 		stat->nd_map = 0;
    278  1.31   mycroft 		stat->nd_idx = 0;
    279  1.26       dbj 	}
    280  1.20       dbj 
    281   1.1       dbj 	splx(s);
    282   1.1       dbj }
    283   1.1       dbj 
    284   1.1       dbj /****************************************************************/
    285   1.1       dbj 
    286   1.1       dbj 
    287   1.1       dbj /* Call the completed and continue callbacks to try to fill
    288   1.1       dbj  * in the dma continue buffers.
    289   1.1       dbj  */
    290   1.1       dbj void
    291  1.37       chs nextdma_rotate(struct nextdma_softc *nsc)
    292   1.1       dbj {
    293  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    294   1.1       dbj 
    295  1.31   mycroft 	NDTRACEIF (*ndtracep++ = 'r');
    296  1.31   mycroft 	DPRINTF(("DMA nextdma_rotate()\n"));
    297   1.1       dbj 
    298   1.1       dbj 	/* Rotate the continue map into the current map */
    299  1.31   mycroft 	stat->nd_map = stat->nd_map_cont;
    300  1.31   mycroft 	stat->nd_idx = stat->nd_idx_cont;
    301   1.1       dbj 
    302  1.31   mycroft 	if ((!stat->nd_map_cont) ||
    303  1.31   mycroft 	    ((++stat->nd_idx_cont >= stat->nd_map_cont->dm_nsegs))) {
    304  1.31   mycroft 		if (nsc->sc_conf.nd_continue_cb) {
    305  1.31   mycroft 			stat->nd_map_cont = (*nsc->sc_conf.nd_continue_cb)
    306  1.31   mycroft 				(nsc->sc_conf.nd_cb_arg);
    307  1.31   mycroft 			if (stat->nd_map_cont) {
    308  1.31   mycroft 				stat->nd_map_cont->dm_xfer_len = 0;
    309  1.26       dbj 			}
    310   1.1       dbj 		} else {
    311  1.31   mycroft 			stat->nd_map_cont = 0;
    312   1.1       dbj 		}
    313  1.31   mycroft 		stat->nd_idx_cont = 0;
    314   1.1       dbj 	}
    315   1.7       dbj 
    316  1.29       dbj #if defined(DIAGNOSTIC) && 0
    317  1.31   mycroft 	if (stat->nd_map_cont) {
    318  1.31   mycroft 		if (!DMA_BEGINALIGNED(stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_addr)) {
    319  1.31   mycroft 			nextdma_print(nsc);
    320  1.32    provos 			panic("DMA request unaligned at start");
    321   1.7       dbj 		}
    322  1.31   mycroft 		if (!DMA_ENDALIGNED(stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_addr +
    323  1.31   mycroft 				stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_len)) {
    324  1.31   mycroft 			nextdma_print(nsc);
    325  1.32    provos 			panic("DMA request unaligned at end");
    326   1.7       dbj 		}
    327   1.7       dbj 	}
    328   1.7       dbj #endif
    329   1.7       dbj 
    330   1.1       dbj }
    331   1.1       dbj 
    332   1.1       dbj void
    333  1.37       chs nextdma_setup_curr_regs(struct nextdma_softc *nsc)
    334   1.1       dbj {
    335  1.20       dbj 	bus_addr_t dd_next;
    336  1.20       dbj 	bus_addr_t dd_limit;
    337  1.20       dbj 	bus_addr_t dd_saved_next;
    338  1.20       dbj 	bus_addr_t dd_saved_limit;
    339  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    340  1.20       dbj 
    341  1.31   mycroft 	NDTRACEIF (*ndtracep++ = 'C');
    342  1.31   mycroft 	DPRINTF(("DMA nextdma_setup_curr_regs()\n"));
    343   1.1       dbj 
    344  1.31   mycroft 	if (stat->nd_map) {
    345  1.31   mycroft 		dd_next = stat->nd_map->dm_segs[stat->nd_idx].ds_addr;
    346  1.31   mycroft 		dd_limit = (stat->nd_map->dm_segs[stat->nd_idx].ds_addr +
    347  1.31   mycroft 			    stat->nd_map->dm_segs[stat->nd_idx].ds_len);
    348  1.15       dbj 
    349  1.31   mycroft 		if (!turbo && nsc->sc_chan->nd_intr == NEXT_I_ENETX_DMA) {
    350  1.20       dbj 			dd_limit |= 0x80000000; /* Ethernet transmit needs secret magic */
    351  1.29       dbj 			dd_limit += 15;
    352  1.20       dbj 		}
    353  1.20       dbj 	} else {
    354  1.31   mycroft 		dd_next = turbo ? 0 : 0xdeadbeef;
    355  1.31   mycroft 		dd_limit = turbo ? 0 : 0xdeadbeef;
    356  1.20       dbj 	}
    357   1.1       dbj 
    358  1.20       dbj 	dd_saved_next = dd_next;
    359  1.20       dbj 	dd_saved_limit = dd_limit;
    360   1.1       dbj 
    361  1.31   mycroft 	NDTRACEIF (if (stat->nd_map) {
    362  1.31   mycroft 		sprintf (ndtracep, "%ld", stat->nd_map->dm_segs[stat->nd_idx].ds_len);
    363  1.31   mycroft 		ndtracep += strlen (ndtracep);
    364  1.31   mycroft 	});
    365  1.30  christos 
    366  1.31   mycroft 	if (!turbo && (nsc->sc_chan->nd_intr == NEXT_I_ENETX_DMA)) {
    367  1.31   mycroft 		nd_bsw4 (DD_NEXT_INITBUF, dd_next);
    368  1.15       dbj 	} else {
    369  1.31   mycroft 		nd_bsw4 (DD_NEXT, dd_next);
    370  1.15       dbj 	}
    371  1.31   mycroft 	nd_bsw4 (DD_LIMIT, dd_limit);
    372  1.31   mycroft 	if (!turbo) nd_bsw4 (DD_SAVED_NEXT, dd_saved_next);
    373  1.31   mycroft 	if (!turbo) nd_bsw4 (DD_SAVED_LIMIT, dd_saved_limit);
    374   1.1       dbj 
    375  1.20       dbj #ifdef DIAGNOSTIC
    376  1.31   mycroft 	if ((nd_bsr4 (DD_NEXT_INITBUF) != dd_next)
    377  1.31   mycroft 	    || (nd_bsr4 (DD_NEXT) != dd_next)
    378  1.31   mycroft 	    || (nd_bsr4 (DD_LIMIT) != dd_limit)
    379  1.31   mycroft 	    || (!turbo && (nd_bsr4 (DD_SAVED_NEXT) != dd_saved_next))
    380  1.31   mycroft 	    || (!turbo && (nd_bsr4 (DD_SAVED_LIMIT) != dd_saved_limit))
    381  1.31   mycroft 		) {
    382  1.31   mycroft 		nextdma_print(nsc);
    383  1.20       dbj 		panic("DMA failure writing to current regs");
    384  1.20       dbj 	}
    385   1.7       dbj #endif
    386   1.1       dbj }
    387   1.1       dbj 
    388   1.1       dbj void
    389  1.37       chs nextdma_setup_cont_regs(struct nextdma_softc *nsc)
    390   1.1       dbj {
    391  1.31   mycroft 	bus_addr_t dd_start;
    392  1.31   mycroft 	bus_addr_t dd_stop;
    393  1.31   mycroft 	bus_addr_t dd_saved_start;
    394  1.31   mycroft 	bus_addr_t dd_saved_stop;
    395  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    396   1.1       dbj 
    397  1.31   mycroft 	NDTRACEIF (*ndtracep++ = 'c');
    398  1.31   mycroft 	DPRINTF(("DMA nextdma_setup_regs()\n"));
    399   1.1       dbj 
    400  1.31   mycroft 	if (stat->nd_map_cont) {
    401  1.31   mycroft 		dd_start = stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_addr;
    402  1.31   mycroft 		dd_stop  = (stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_addr +
    403  1.31   mycroft 			    stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_len);
    404  1.22        tv 
    405  1.31   mycroft 		if (!turbo && nsc->sc_chan->nd_intr == NEXT_I_ENETX_DMA) {
    406  1.31   mycroft 			dd_stop |= 0x80000000; /* Ethernet transmit needs secret magic */
    407  1.31   mycroft 			dd_stop += 15;
    408  1.24       dbj 		}
    409   1.1       dbj 	} else {
    410  1.31   mycroft 		dd_start = turbo ? nd_bsr4 (DD_NEXT) : 0xdeadbee0;
    411  1.31   mycroft 		dd_stop = turbo ? 0 : 0xdeadbee0;
    412   1.1       dbj 	}
    413   1.1       dbj 
    414  1.31   mycroft 	dd_saved_start = dd_start;
    415  1.31   mycroft 	dd_saved_stop  = dd_stop;
    416  1.22        tv 
    417  1.31   mycroft 	NDTRACEIF (if (stat->nd_map_cont) {
    418  1.31   mycroft 		sprintf (ndtracep, "%ld", stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_len);
    419  1.31   mycroft 		ndtracep += strlen (ndtracep);
    420  1.31   mycroft 	});
    421  1.31   mycroft 
    422  1.31   mycroft 	nd_bsw4 (DD_START, dd_start);
    423  1.31   mycroft 	nd_bsw4 (DD_STOP, dd_stop);
    424  1.31   mycroft 	if (!turbo) nd_bsw4 (DD_SAVED_START, dd_saved_start);
    425  1.31   mycroft 	if (!turbo) nd_bsw4 (DD_SAVED_STOP, dd_saved_stop);
    426  1.31   mycroft 	if (turbo && nsc->sc_chan->nd_intr == NEXT_I_ENETR_DMA)
    427  1.31   mycroft 		nd_bsw4 (DD_STOP - 0x40, dd_start);
    428  1.31   mycroft 
    429  1.31   mycroft #ifdef DIAGNOSTIC
    430  1.31   mycroft 	if ((nd_bsr4 (DD_START) != dd_start)
    431  1.31   mycroft 	    || (dd_stop && (nd_bsr4 (DD_STOP) != dd_stop))
    432  1.31   mycroft 	    || (!turbo && (nd_bsr4 (DD_SAVED_START) != dd_saved_start))
    433  1.31   mycroft 	    || (!turbo && (nd_bsr4 (DD_SAVED_STOP) != dd_saved_stop))
    434  1.31   mycroft 		) {
    435  1.31   mycroft 		nextdma_print(nsc);
    436  1.31   mycroft 		panic("DMA failure writing to continue regs");
    437  1.31   mycroft 	}
    438  1.31   mycroft #endif
    439   1.1       dbj }
    440   1.1       dbj 
    441   1.1       dbj /****************************************************************/
    442   1.1       dbj 
    443  1.31   mycroft #if NESP > 0
    444  1.31   mycroft static int
    445  1.37       chs nextdma_esp_intr(void *arg)
    446   1.1       dbj {
    447  1.31   mycroft 	/* @@@ This is bogus, we can't be certain of arg's type
    448  1.18       dbj 	 * unless the interrupt is for us.  For now we successfully
    449  1.18       dbj 	 * cheat because DMA interrupts are the only things invoked
    450  1.18       dbj 	 * at this interrupt level.
    451   1.1       dbj 	 */
    452  1.31   mycroft 	struct nextdma_softc *nsc = arg;
    453  1.37       chs 	int esp_dma_int(void *); /* XXX */
    454  1.31   mycroft 
    455  1.31   mycroft 	if (!INTR_OCCURRED(nsc->sc_chan->nd_intr))
    456  1.31   mycroft 		return 0;
    457  1.31   mycroft 	/* Handle dma interrupts */
    458   1.1       dbj 
    459  1.31   mycroft 	return esp_dma_int (nsc->sc_conf.nd_cb_arg);
    460   1.1       dbj 
    461  1.31   mycroft }
    462  1.30  christos #endif
    463  1.30  christos 
    464  1.31   mycroft #if NXE > 0
    465  1.31   mycroft static int
    466  1.37       chs nextdma_enet_intr(void *arg)
    467  1.31   mycroft {
    468  1.31   mycroft 	/* @@@ This is bogus, we can't be certain of arg's type
    469  1.31   mycroft 	 * unless the interrupt is for us.  For now we successfully
    470  1.31   mycroft 	 * cheat because DMA interrupts are the only things invoked
    471  1.31   mycroft 	 * at this interrupt level.
    472  1.31   mycroft 	 */
    473  1.31   mycroft 	struct nextdma_softc *nsc = arg;
    474  1.31   mycroft 	unsigned int state;
    475  1.31   mycroft 	bus_addr_t onext;
    476  1.31   mycroft 	bus_addr_t olimit;
    477  1.31   mycroft 	bus_addr_t slimit;
    478  1.31   mycroft 	int result;
    479  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    480  1.31   mycroft 
    481  1.31   mycroft 	if (!INTR_OCCURRED(nsc->sc_chan->nd_intr))
    482  1.31   mycroft 		return 0;
    483  1.31   mycroft 	/* Handle dma interrupts */
    484  1.31   mycroft 
    485  1.31   mycroft 	NDTRACEIF (*ndtracep++ = 'D');
    486  1.22        tv #ifdef ND_DEBUG
    487  1.30  christos 	if (NEXTDMA_DEBUG) {
    488  1.22        tv 		char sbuf[256];
    489  1.22        tv 
    490  1.43  christos 		snprintb(sbuf, sizeof(sbuf), NEXT_INTR_BITS,
    491  1.47       mrg 		    NEXT_I_BIT(nsc->sc_chan->nd_intr));
    492  1.22        tv 		printf("DMA interrupt ipl (%ld) intr(0x%s)\n",
    493  1.31   mycroft 		       NEXT_I_IPL(nsc->sc_chan->nd_intr), sbuf);
    494  1.22        tv 	}
    495  1.22        tv #endif
    496   1.1       dbj 
    497   1.7       dbj #ifdef DIAGNOSTIC
    498  1.31   mycroft 	if (!stat->nd_map) {
    499  1.31   mycroft 		nextdma_print(nsc);
    500  1.32    provos 		panic("DMA missing current map in interrupt!");
    501   1.7       dbj 	}
    502   1.7       dbj #endif
    503   1.7       dbj 
    504  1.31   mycroft 	state = nd_bsr4 (DD_CSR);
    505  1.26       dbj 
    506  1.26       dbj #if defined(ND_DEBUG)
    507  1.31   mycroft 	nextdma_debug_savestate(nsc, state);
    508  1.26       dbj #endif
    509  1.26       dbj 
    510  1.26       dbj #ifdef DIAGNOSTIC
    511  1.31   mycroft 	if (/* (state & DMACSR_READ) || */ !(state & DMACSR_COMPLETE)) {
    512  1.31   mycroft 		char sbuf[256];
    513  1.31   mycroft 		nextdma_print(nsc);
    514  1.43  christos 		snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, state);
    515  1.31   mycroft 		printf("DMA: state 0x%s\n",sbuf);
    516  1.32    provos 		panic("DMA complete not set in interrupt");
    517  1.31   mycroft 	}
    518  1.26       dbj #endif
    519  1.26       dbj 
    520  1.31   mycroft 	DPRINTF(("DMA: finishing xfer\n"));
    521  1.23       dbj 
    522  1.31   mycroft 	onext = stat->nd_map->dm_segs[stat->nd_idx].ds_addr;
    523  1.31   mycroft 	olimit = onext + stat->nd_map->dm_segs[stat->nd_idx].ds_len;
    524  1.23       dbj 
    525  1.31   mycroft 	result = 0;
    526  1.31   mycroft 	if (state & DMACSR_ENABLE) {
    527  1.31   mycroft 		/* enable bit was set */
    528  1.31   mycroft 		result |= 0x01;
    529  1.31   mycroft 	}
    530  1.31   mycroft 	if (state & DMACSR_SUPDATE) {
    531  1.31   mycroft 		/* supdate bit was set */
    532  1.31   mycroft 		result |= 0x02;
    533  1.31   mycroft 	}
    534  1.31   mycroft 	if (stat->nd_map_cont == NULL) {
    535  1.31   mycroft 		KASSERT(stat->nd_idx+1 == stat->nd_map->dm_nsegs);
    536  1.31   mycroft 		/* Expecting a shutdown, didn't SETSUPDATE last turn */
    537  1.31   mycroft 		result |= 0x04;
    538  1.31   mycroft 	}
    539  1.31   mycroft 	if (state & DMACSR_BUSEXC) {
    540  1.31   mycroft 		/* bus exception bit was set */
    541  1.31   mycroft 		result |= 0x08;
    542  1.31   mycroft 	}
    543  1.31   mycroft 	switch (result) {
    544  1.31   mycroft 	case 0x00: /* !BUSEXC && !expecting && !SUPDATE && !ENABLE */
    545  1.31   mycroft 	case 0x08: /* BUSEXC && !expecting && !SUPDATE && !ENABLE */
    546  1.31   mycroft 		if (turbo) {
    547  1.31   mycroft 			volatile u_int *limit = (volatile u_int *)IIOV(0x2000050+0x4000);
    548  1.31   mycroft 			slimit = *limit;
    549  1.31   mycroft 		} else {
    550  1.31   mycroft 			slimit = nd_bsr4 (DD_SAVED_LIMIT);
    551  1.31   mycroft 		}
    552  1.31   mycroft 		break;
    553  1.31   mycroft 	case 0x01: /* !BUSEXC && !expecting && !SUPDATE && ENABLE */
    554  1.31   mycroft 	case 0x09: /* BUSEXC && !expecting && !SUPDATE && ENABLE */
    555  1.31   mycroft 		if (turbo) {
    556  1.31   mycroft 			volatile u_int *limit = (volatile u_int *)IIOV(0x2000050+0x4000);
    557  1.31   mycroft 			slimit = *limit;
    558  1.31   mycroft 		} else {
    559  1.31   mycroft 			slimit = nd_bsr4 (DD_SAVED_LIMIT);
    560  1.31   mycroft 		}
    561  1.31   mycroft 		break;
    562  1.31   mycroft 	case 0x02: /* !BUSEXC && !expecting && SUPDATE && !ENABLE */
    563  1.31   mycroft 	case 0x0a: /* BUSEXC && !expecting && SUPDATE && !ENABLE */
    564  1.31   mycroft 		slimit = nd_bsr4 (DD_NEXT);
    565  1.31   mycroft 		break;
    566  1.31   mycroft 	case 0x04:  /* !BUSEXC && expecting && !SUPDATE && !ENABLE */
    567  1.31   mycroft 	case 0x0c: /* BUSEXC && expecting && !SUPDATE && !ENABLE */
    568  1.31   mycroft 		slimit = nd_bsr4 (DD_LIMIT);
    569  1.31   mycroft 		break;
    570  1.31   mycroft 	default:
    571  1.31   mycroft #ifdef DIAGNOSTIC
    572  1.31   mycroft 	{
    573  1.31   mycroft 		char sbuf[256];
    574  1.36    keihan 		printf("DMA: please send this output to port-next68k-maintainer (at) NetBSD.org:\n");
    575  1.43  christos 		snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, state);
    576  1.31   mycroft 		printf("DMA: state 0x%s\n",sbuf);
    577  1.31   mycroft 		nextdma_print(nsc);
    578  1.32    provos 		panic("DMA: condition 0x%02x not yet documented to occur",result);
    579  1.31   mycroft 	}
    580  1.31   mycroft #endif
    581  1.31   mycroft 	slimit = olimit;
    582  1.31   mycroft 	break;
    583  1.31   mycroft 	}
    584  1.22        tv 
    585  1.31   mycroft 	if (!turbo && nsc->sc_chan->nd_intr == NEXT_I_ENETX_DMA) {
    586  1.31   mycroft 		slimit &= ~0x80000000;
    587  1.31   mycroft 		slimit -= 15;
    588  1.31   mycroft 	}
    589  1.22        tv 
    590  1.23       dbj #ifdef DIAGNOSTIC
    591  1.31   mycroft 	if ((state & DMACSR_READ))
    592  1.31   mycroft 		DPRINTF (("limits: 0x%08lx <= 0x%08lx <= 0x%08lx %s\n", onext, slimit, olimit,
    593  1.31   mycroft 			  (state & DMACSR_READ) ? "read" : "write"));
    594  1.31   mycroft 	if ((slimit < onext) || (slimit > olimit)) {
    595  1.31   mycroft 		char sbuf[256];
    596  1.43  christos 		snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, state);
    597  1.31   mycroft 		printf("DMA: state 0x%s\n",sbuf);
    598  1.31   mycroft 		nextdma_print(nsc);
    599  1.32    provos 		panic("DMA: Unexpected limit register (0x%08lx) in finish_xfer",slimit);
    600  1.31   mycroft 	}
    601   1.1       dbj #endif
    602   1.1       dbj 
    603  1.26       dbj #ifdef DIAGNOSTIC
    604  1.31   mycroft 	if ((state & DMACSR_ENABLE) && ((stat->nd_idx+1) != stat->nd_map->dm_nsegs)) {
    605  1.31   mycroft 		if (slimit != olimit) {
    606  1.31   mycroft 			char sbuf[256];
    607  1.43  christos 			snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, state);
    608  1.31   mycroft 			printf("DMA: state 0x%s\n",sbuf);
    609  1.31   mycroft 			nextdma_print(nsc);
    610  1.32    provos 			panic("DMA: short limit register (0x%08lx) w/o finishing map.",slimit);
    611  1.31   mycroft 		}
    612  1.31   mycroft 	}
    613  1.26       dbj #endif
    614  1.26       dbj 
    615  1.23       dbj #if (defined(ND_DEBUG))
    616  1.31   mycroft 	if (NEXTDMA_DEBUG > 2) nextdma_print(nsc);
    617  1.23       dbj #endif
    618   1.7       dbj 
    619  1.31   mycroft 	stat->nd_map->dm_xfer_len += slimit-onext;
    620  1.31   mycroft 
    621  1.31   mycroft 	/* If we've reached the end of the current map, then inform
    622  1.31   mycroft 	 * that we've completed that map.
    623  1.31   mycroft 	 */
    624  1.31   mycroft 	if ((stat->nd_idx+1) == stat->nd_map->dm_nsegs) {
    625  1.31   mycroft 		if (nsc->sc_conf.nd_completed_cb)
    626  1.31   mycroft 			(*nsc->sc_conf.nd_completed_cb)
    627  1.31   mycroft 				(stat->nd_map, nsc->sc_conf.nd_cb_arg);
    628  1.31   mycroft 	} else {
    629  1.31   mycroft 		KASSERT(stat->nd_map == stat->nd_map_cont);
    630  1.31   mycroft 		KASSERT(stat->nd_idx+1 == stat->nd_idx_cont);
    631  1.31   mycroft 	}
    632  1.31   mycroft 	stat->nd_map = 0;
    633  1.31   mycroft 	stat->nd_idx = 0;
    634  1.12       dbj 
    635  1.31   mycroft #if (defined(ND_DEBUG))
    636  1.31   mycroft 	if (NEXTDMA_DEBUG) {
    637  1.31   mycroft 		char sbuf[256];
    638  1.43  christos 		snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, state);
    639  1.31   mycroft 		printf("CLNDMAP: dd->dd_csr          = 0x%s\n",   sbuf);
    640  1.31   mycroft 	}
    641  1.31   mycroft #endif
    642  1.31   mycroft 	if (state & DMACSR_ENABLE) {
    643  1.31   mycroft 		u_long dmadir;		/* DMACSR_SETREAD or DMACSR_SETWRITE */
    644  1.23       dbj 
    645  1.31   mycroft 		nextdma_rotate(nsc);
    646  1.31   mycroft 		nextdma_setup_cont_regs(nsc);
    647  1.31   mycroft 
    648  1.31   mycroft 		if (state & DMACSR_READ) {
    649  1.31   mycroft 			dmadir = DMACSR_SETREAD;
    650  1.31   mycroft 		} else {
    651  1.31   mycroft 			dmadir = DMACSR_SETWRITE;
    652  1.30  christos 		}
    653  1.22        tv 
    654  1.31   mycroft 		if (stat->nd_map_cont == NULL) {
    655  1.31   mycroft 			KASSERT(stat->nd_idx+1 == stat->nd_map->dm_nsegs);
    656  1.31   mycroft 			nd_bsw4 (DD_CSR, DMACSR_CLRCOMPLETE | dmadir);
    657  1.31   mycroft 			NDTRACEIF (*ndtracep++ = 'g');
    658  1.23       dbj 		} else {
    659  1.31   mycroft 			nd_bsw4 (DD_CSR, DMACSR_CLRCOMPLETE | dmadir | DMACSR_SETSUPDATE);
    660  1.31   mycroft 			NDTRACEIF (*ndtracep++ = 'G');
    661  1.31   mycroft 		}
    662  1.31   mycroft 	} else {
    663  1.31   mycroft 		DPRINTF(("DMA: a shutdown occurred\n"));
    664  1.31   mycroft 		nd_bsw4 (DD_CSR, DMACSR_CLRCOMPLETE | DMACSR_RESET);
    665  1.31   mycroft 
    666  1.31   mycroft 		/* Cleanup more incomplete transfers */
    667  1.31   mycroft 		/* cleanup continue map */
    668  1.31   mycroft 		if (stat->nd_map_cont) {
    669  1.31   mycroft 			DPRINTF(("DMA: shutting down with non null continue map\n"));
    670  1.31   mycroft 			if (nsc->sc_conf.nd_completed_cb)
    671  1.31   mycroft 				(*nsc->sc_conf.nd_completed_cb)
    672  1.31   mycroft 					(stat->nd_map_cont, nsc->sc_conf.nd_cb_arg);
    673  1.23       dbj 
    674  1.31   mycroft 			stat->nd_map_cont = 0;
    675  1.31   mycroft 			stat->nd_idx_cont = 0;
    676   1.1       dbj 		}
    677  1.31   mycroft 		if (nsc->sc_conf.nd_shutdown_cb)
    678  1.31   mycroft 			(*nsc->sc_conf.nd_shutdown_cb)(nsc->sc_conf.nd_cb_arg);
    679   1.1       dbj 	}
    680  1.30  christos 
    681  1.22        tv #ifdef ND_DEBUG
    682  1.30  christos 	if (NEXTDMA_DEBUG) {
    683  1.22        tv 		char sbuf[256];
    684  1.22        tv 
    685  1.43  christos 		snprintb(sbuf, sizeof(sbuf),
    686  1.43  christos 		    NEXT_INTR_BITS, NEXT_I_BIT(nsc->sc_chan->nd_intr));
    687  1.22        tv 		printf("DMA exiting interrupt ipl (%ld) intr(0x%s)\n",
    688  1.31   mycroft 		       NEXT_I_IPL(nsc->sc_chan->nd_intr), sbuf);
    689  1.22        tv 	}
    690  1.22        tv #endif
    691  1.31   mycroft 
    692  1.31   mycroft 	return(1);
    693   1.1       dbj }
    694  1.31   mycroft #endif
    695   1.1       dbj 
    696   1.1       dbj /*
    697   1.1       dbj  * Check to see if dma has finished for a channel */
    698   1.1       dbj int
    699  1.37       chs nextdma_finished(struct nextdma_softc *nsc)
    700   1.1       dbj {
    701   1.1       dbj 	int r;
    702   1.1       dbj 	int s;
    703  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    704  1.31   mycroft 
    705  1.31   mycroft 	s = spldma();
    706  1.31   mycroft 	r = (stat->nd_map == NULL) && (stat->nd_map_cont == NULL);
    707   1.1       dbj 	splx(s);
    708  1.31   mycroft 
    709   1.1       dbj 	return(r);
    710   1.1       dbj }
    711   1.1       dbj 
    712   1.1       dbj void
    713  1.37       chs nextdma_start(struct nextdma_softc *nsc, u_long dmadir)
    714   1.1       dbj {
    715  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    716   1.1       dbj 
    717  1.31   mycroft 	NDTRACEIF (*ndtracep++ = 'n');
    718   1.1       dbj #ifdef DIAGNOSTIC
    719  1.31   mycroft 	if (!nextdma_finished(nsc)) {
    720  1.22        tv 		char sbuf[256];
    721  1.22        tv 
    722  1.43  christos 		snprintb(sbuf, sizeof(sbuf),
    723  1.43  christos 		    NEXT_INTR_BITS, NEXT_I_BIT(nsc->sc_chan->nd_intr));
    724  1.32    provos 		panic("DMA trying to start before previous finished on intr(0x%s)", sbuf);
    725   1.1       dbj 	}
    726   1.1       dbj #endif
    727   1.1       dbj 
    728  1.22        tv #ifdef ND_DEBUG
    729  1.30  christos 	if (NEXTDMA_DEBUG) {
    730  1.22        tv 		char sbuf[256];
    731  1.22        tv 
    732  1.43  christos 		snprintb(sbuf, sizeof(sbuf),
    733  1.43  christos 		    NEXT_INTR_BITS, NEXT_I_BIT(nsc->sc_chan->nd_intr));
    734  1.22        tv 		printf("DMA start (%ld) intr(0x%s)\n",
    735  1.31   mycroft 		       NEXT_I_IPL(nsc->sc_chan->nd_intr), sbuf);
    736  1.22        tv 	}
    737  1.22        tv #endif
    738   1.1       dbj 
    739   1.1       dbj #ifdef DIAGNOSTIC
    740  1.31   mycroft 	if (stat->nd_map) {
    741  1.31   mycroft 		nextdma_print(nsc);
    742  1.32    provos 		panic("DMA: nextdma_start() with non null map");
    743   1.1       dbj 	}
    744  1.31   mycroft 	if (stat->nd_map_cont) {
    745  1.31   mycroft 		nextdma_print(nsc);
    746  1.32    provos 		panic("DMA: nextdma_start() with non null continue map");
    747   1.1       dbj 	}
    748   1.1       dbj #endif
    749   1.1       dbj 
    750   1.9       dbj #ifdef DIAGNOSTIC
    751  1.19       dbj 	if ((dmadir != DMACSR_SETREAD) && (dmadir != DMACSR_SETWRITE)) {
    752  1.32    provos 		panic("DMA: nextdma_start(), dmadir arg must be DMACSR_SETREAD or DMACSR_SETWRITE");
    753   1.9       dbj 	}
    754   1.9       dbj #endif
    755   1.9       dbj 
    756  1.26       dbj #if defined(ND_DEBUG)
    757  1.31   mycroft 	nextdma_debug_initstate(nsc);
    758  1.26       dbj #endif
    759  1.26       dbj 
    760   1.7       dbj 	/* preload both the current and the continue maps */
    761  1.31   mycroft 	nextdma_rotate(nsc);
    762   1.1       dbj 
    763   1.1       dbj #ifdef DIAGNOSTIC
    764  1.31   mycroft 	if (!stat->nd_map_cont) {
    765   1.1       dbj 		panic("No map available in nextdma_start()");
    766   1.1       dbj 	}
    767   1.1       dbj #endif
    768   1.1       dbj 
    769  1.31   mycroft 	nextdma_rotate(nsc);
    770   1.7       dbj 
    771  1.22        tv #ifdef ND_DEBUG
    772  1.30  christos 	if (NEXTDMA_DEBUG) {
    773  1.22        tv 		char sbuf[256];
    774  1.22        tv 
    775  1.43  christos 		snprintb(sbuf, sizeof(sbuf),
    776  1.43  christos 		    NEXT_INTR_BITS, NEXT_I_BIT(nsc->sc_chan->nd_intr));
    777  1.22        tv 		printf("DMA initiating DMA %s of %d segments on intr(0x%s)\n",
    778  1.31   mycroft 		       (dmadir == DMACSR_SETREAD ? "read" : "write"), stat->nd_map->dm_nsegs, sbuf);
    779  1.22        tv 	}
    780  1.22        tv #endif
    781   1.1       dbj 
    782  1.31   mycroft 	nd_bsw4 (DD_CSR, (turbo ? DMACSR_INITBUFTURBO : DMACSR_INITBUF) |
    783  1.31   mycroft 		 DMACSR_RESET | dmadir);
    784  1.31   mycroft 	nd_bsw4 (DD_CSR, 0);
    785   1.1       dbj 
    786  1.31   mycroft 	nextdma_setup_curr_regs(nsc);
    787  1.31   mycroft 	nextdma_setup_cont_regs(nsc);
    788   1.1       dbj 
    789   1.4       dbj #if (defined(ND_DEBUG))
    790  1.31   mycroft 	if (NEXTDMA_DEBUG > 2) nextdma_print(nsc);
    791   1.4       dbj #endif
    792   1.1       dbj 
    793  1.31   mycroft 	if (stat->nd_map_cont == NULL) {
    794  1.31   mycroft 		nd_bsw4 (DD_CSR, DMACSR_SETENABLE | dmadir);
    795  1.20       dbj 	} else {
    796  1.31   mycroft 		nd_bsw4 (DD_CSR, DMACSR_SETSUPDATE | DMACSR_SETENABLE | dmadir);
    797   1.1       dbj 	}
    798   1.1       dbj }
    799  1.31   mycroft 
    800  1.31   mycroft /* This routine is used for debugging */
    801  1.31   mycroft void
    802  1.37       chs nextdma_print(struct nextdma_softc *nsc)
    803  1.31   mycroft {
    804  1.31   mycroft 	u_long dd_csr;
    805  1.31   mycroft 	u_long dd_next;
    806  1.31   mycroft 	u_long dd_next_initbuf;
    807  1.31   mycroft 	u_long dd_limit;
    808  1.31   mycroft 	u_long dd_start;
    809  1.31   mycroft 	u_long dd_stop;
    810  1.31   mycroft 	u_long dd_saved_next;
    811  1.31   mycroft 	u_long dd_saved_limit;
    812  1.31   mycroft 	u_long dd_saved_start;
    813  1.31   mycroft 	u_long dd_saved_stop;
    814  1.31   mycroft 	char sbuf[256];
    815  1.31   mycroft 	struct nextdma_status *stat = &nsc->sc_stat;
    816  1.31   mycroft 
    817  1.31   mycroft 	/* Read all of the registers before we print anything out,
    818  1.31   mycroft 	 * in case something changes
    819  1.31   mycroft 	 */
    820  1.31   mycroft 	dd_csr          = nd_bsr4 (DD_CSR);
    821  1.31   mycroft 	dd_next         = nd_bsr4 (DD_NEXT);
    822  1.31   mycroft 	dd_next_initbuf = nd_bsr4 (DD_NEXT_INITBUF);
    823  1.31   mycroft 	dd_limit        = nd_bsr4 (DD_LIMIT);
    824  1.31   mycroft 	dd_start        = nd_bsr4 (DD_START);
    825  1.31   mycroft 	dd_stop         = nd_bsr4 (DD_STOP);
    826  1.31   mycroft 	dd_saved_next   = nd_bsr4 (DD_SAVED_NEXT);
    827  1.31   mycroft 	dd_saved_limit  = nd_bsr4 (DD_SAVED_LIMIT);
    828  1.31   mycroft 	dd_saved_start  = nd_bsr4 (DD_SAVED_START);
    829  1.31   mycroft 	dd_saved_stop   = nd_bsr4 (DD_SAVED_STOP);
    830  1.31   mycroft 
    831  1.43  christos 	snprintb(sbuf, sizeof(sbuf), NEXT_INTR_BITS,
    832  1.43  christos 	    *(volatile u_long *)IIOV(NEXT_P_INTRSTAT));
    833  1.31   mycroft 	printf("NDMAP: *intrstat = 0x%s\n", sbuf);
    834  1.31   mycroft 
    835  1.43  christos 	snprintb(sbuf, sizeof(sbuf), NEXT_INTR_BITS,
    836  1.43  christos 	    *(volatile u_long *)IIOV(NEXT_P_INTRMASK));
    837  1.31   mycroft 	printf("NDMAP: *intrmask = 0x%s\n", sbuf);
    838  1.31   mycroft 
    839  1.31   mycroft 	/* NDMAP is Next DMA Print (really!) */
    840  1.31   mycroft 
    841  1.31   mycroft 	if (stat->nd_map) {
    842  1.31   mycroft 		int i;
    843  1.31   mycroft 
    844  1.31   mycroft 		printf("NDMAP: nd_map->dm_mapsize = %ld\n",
    845  1.31   mycroft 		       stat->nd_map->dm_mapsize);
    846  1.31   mycroft 		printf("NDMAP: nd_map->dm_nsegs = %d\n",
    847  1.31   mycroft 		       stat->nd_map->dm_nsegs);
    848  1.31   mycroft 		printf("NDMAP: nd_map->dm_xfer_len = %ld\n",
    849  1.31   mycroft 		       stat->nd_map->dm_xfer_len);
    850  1.31   mycroft 		printf("NDMAP: nd_map->dm_segs[%d].ds_addr = 0x%08lx\n",
    851  1.31   mycroft 		       stat->nd_idx, stat->nd_map->dm_segs[stat->nd_idx].ds_addr);
    852  1.31   mycroft 		printf("NDMAP: nd_map->dm_segs[%d].ds_len = %ld\n",
    853  1.31   mycroft 		       stat->nd_idx, stat->nd_map->dm_segs[stat->nd_idx].ds_len);
    854  1.31   mycroft 
    855  1.31   mycroft 		printf("NDMAP: Entire map;\n");
    856  1.31   mycroft 		for(i=0;i<stat->nd_map->dm_nsegs;i++) {
    857  1.31   mycroft 			printf("NDMAP:   nd_map->dm_segs[%d].ds_addr = 0x%08lx\n",
    858  1.31   mycroft 			       i,stat->nd_map->dm_segs[i].ds_addr);
    859  1.31   mycroft 			printf("NDMAP:   nd_map->dm_segs[%d].ds_len = %ld\n",
    860  1.31   mycroft 			       i,stat->nd_map->dm_segs[i].ds_len);
    861  1.31   mycroft 		}
    862  1.31   mycroft 	} else {
    863  1.31   mycroft 		printf("NDMAP: nd_map = NULL\n");
    864  1.31   mycroft 	}
    865  1.31   mycroft 	if (stat->nd_map_cont) {
    866  1.31   mycroft 		printf("NDMAP: nd_map_cont->dm_mapsize = %ld\n",
    867  1.31   mycroft 		       stat->nd_map_cont->dm_mapsize);
    868  1.31   mycroft 		printf("NDMAP: nd_map_cont->dm_nsegs = %d\n",
    869  1.31   mycroft 		       stat->nd_map_cont->dm_nsegs);
    870  1.31   mycroft 		printf("NDMAP: nd_map_cont->dm_xfer_len = %ld\n",
    871  1.31   mycroft 		       stat->nd_map_cont->dm_xfer_len);
    872  1.31   mycroft 		printf("NDMAP: nd_map_cont->dm_segs[%d].ds_addr = 0x%08lx\n",
    873  1.31   mycroft 		       stat->nd_idx_cont,stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_addr);
    874  1.31   mycroft 		printf("NDMAP: nd_map_cont->dm_segs[%d].ds_len = %ld\n",
    875  1.31   mycroft 		       stat->nd_idx_cont,stat->nd_map_cont->dm_segs[stat->nd_idx_cont].ds_len);
    876  1.31   mycroft 		if (stat->nd_map_cont != stat->nd_map) {
    877  1.31   mycroft 			int i;
    878  1.31   mycroft 			printf("NDMAP: Entire map;\n");
    879  1.31   mycroft 			for(i=0;i<stat->nd_map_cont->dm_nsegs;i++) {
    880  1.31   mycroft 				printf("NDMAP:   nd_map_cont->dm_segs[%d].ds_addr = 0x%08lx\n",
    881  1.31   mycroft 				       i,stat->nd_map_cont->dm_segs[i].ds_addr);
    882  1.31   mycroft 				printf("NDMAP:   nd_map_cont->dm_segs[%d].ds_len = %ld\n",
    883  1.31   mycroft 				       i,stat->nd_map_cont->dm_segs[i].ds_len);
    884  1.31   mycroft 			}
    885  1.31   mycroft 		}
    886  1.31   mycroft 	} else {
    887  1.31   mycroft 		printf("NDMAP: nd_map_cont = NULL\n");
    888  1.31   mycroft 	}
    889  1.31   mycroft 
    890  1.43  christos 	snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, dd_csr);
    891  1.31   mycroft 	printf("NDMAP: dd->dd_csr          = 0x%s\n",   sbuf);
    892  1.31   mycroft 
    893  1.31   mycroft 	printf("NDMAP: dd->dd_saved_next   = 0x%08lx\n", dd_saved_next);
    894  1.31   mycroft 	printf("NDMAP: dd->dd_saved_limit  = 0x%08lx\n", dd_saved_limit);
    895  1.31   mycroft 	printf("NDMAP: dd->dd_saved_start  = 0x%08lx\n", dd_saved_start);
    896  1.31   mycroft 	printf("NDMAP: dd->dd_saved_stop   = 0x%08lx\n", dd_saved_stop);
    897  1.31   mycroft 	printf("NDMAP: dd->dd_next         = 0x%08lx\n", dd_next);
    898  1.31   mycroft 	printf("NDMAP: dd->dd_next_initbuf = 0x%08lx\n", dd_next_initbuf);
    899  1.31   mycroft 	printf("NDMAP: dd->dd_limit        = 0x%08lx\n", dd_limit);
    900  1.31   mycroft 	printf("NDMAP: dd->dd_start        = 0x%08lx\n", dd_start);
    901  1.31   mycroft 	printf("NDMAP: dd->dd_stop         = 0x%08lx\n", dd_stop);
    902  1.31   mycroft 
    903  1.43  christos 	snprintb(sbuf, sizeof(sbuf), NEXT_INTR_BITS,
    904  1.47       mrg 	    NEXT_I_BIT(nsc->sc_chan->nd_intr));
    905  1.31   mycroft 	printf("NDMAP: interrupt ipl (%ld) intr(0x%s)\n",
    906  1.31   mycroft 			NEXT_I_IPL(nsc->sc_chan->nd_intr), sbuf);
    907  1.31   mycroft }
    908  1.31   mycroft 
    909  1.31   mycroft #if defined(ND_DEBUG)
    910  1.31   mycroft void
    911  1.31   mycroft nextdma_debug_initstate(struct nextdma_softc *nsc)
    912  1.31   mycroft {
    913  1.31   mycroft 	switch(nsc->sc_chan->nd_intr) {
    914  1.31   mycroft 	case NEXT_I_ENETR_DMA:
    915  1.31   mycroft 		memset(nextdma_debug_enetr_state,0,sizeof(nextdma_debug_enetr_state));
    916  1.31   mycroft 		break;
    917  1.31   mycroft 	case NEXT_I_SCSI_DMA:
    918  1.31   mycroft 		memset(nextdma_debug_scsi_state,0,sizeof(nextdma_debug_scsi_state));
    919  1.31   mycroft 		break;
    920  1.31   mycroft 	}
    921  1.31   mycroft }
    922  1.31   mycroft 
    923  1.31   mycroft void
    924  1.31   mycroft nextdma_debug_savestate(struct nextdma_softc *nsc, unsigned int state)
    925  1.31   mycroft {
    926  1.31   mycroft 	switch(nsc->sc_chan->nd_intr) {
    927  1.31   mycroft 	case NEXT_I_ENETR_DMA:
    928  1.31   mycroft 		nextdma_debug_enetr_state[nextdma_debug_enetr_idx++] = state;
    929  1.31   mycroft 		nextdma_debug_enetr_idx %= (sizeof(nextdma_debug_enetr_state)/sizeof(unsigned int));
    930  1.31   mycroft 		break;
    931  1.31   mycroft 	case NEXT_I_SCSI_DMA:
    932  1.31   mycroft 		nextdma_debug_scsi_state[nextdma_debug_scsi_idx++] = state;
    933  1.31   mycroft 		nextdma_debug_scsi_idx %= (sizeof(nextdma_debug_scsi_state)/sizeof(unsigned int));
    934  1.31   mycroft 		break;
    935  1.31   mycroft 	}
    936  1.31   mycroft }
    937  1.31   mycroft 
    938  1.31   mycroft void
    939  1.31   mycroft nextdma_debug_enetr_dumpstate(void)
    940  1.31   mycroft {
    941  1.31   mycroft 	int i;
    942  1.31   mycroft 	int s;
    943  1.31   mycroft 	s = spldma();
    944  1.31   mycroft 	i = nextdma_debug_enetr_idx;
    945  1.31   mycroft 	do {
    946  1.31   mycroft 		char sbuf[256];
    947  1.31   mycroft 		if (nextdma_debug_enetr_state[i]) {
    948  1.43  christos 			snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, nextdma_debug_enetr_state[i]);
    949  1.31   mycroft 			printf("DMA: 0x%02x state 0x%s\n",i,sbuf);
    950  1.31   mycroft 		}
    951  1.31   mycroft 		i++;
    952  1.31   mycroft 		i %= (sizeof(nextdma_debug_enetr_state)/sizeof(unsigned int));
    953  1.31   mycroft 	} while (i != nextdma_debug_enetr_idx);
    954  1.31   mycroft 	splx(s);
    955  1.31   mycroft }
    956  1.31   mycroft 
    957  1.31   mycroft void
    958  1.31   mycroft nextdma_debug_scsi_dumpstate(void)
    959  1.31   mycroft {
    960  1.31   mycroft 	int i;
    961  1.31   mycroft 	int s;
    962  1.31   mycroft 	s = spldma();
    963  1.31   mycroft 	i = nextdma_debug_scsi_idx;
    964  1.31   mycroft 	do {
    965  1.31   mycroft 		char sbuf[256];
    966  1.31   mycroft 		if (nextdma_debug_scsi_state[i]) {
    967  1.43  christos 			snprintb(sbuf, sizeof(sbuf), DMACSR_BITS, nextdma_debug_scsi_state[i]);
    968  1.31   mycroft 			printf("DMA: 0x%02x state 0x%s\n",i,sbuf);
    969  1.31   mycroft 		}
    970  1.31   mycroft 		i++;
    971  1.31   mycroft 		i %= (sizeof(nextdma_debug_scsi_state)/sizeof(unsigned int));
    972  1.31   mycroft 	} while (i != nextdma_debug_scsi_idx);
    973  1.31   mycroft 	splx(s);
    974  1.31   mycroft }
    975  1.31   mycroft #endif
    976  1.31   mycroft 
    977