Home | History | Annotate | Line # | Download | only in sbus
esp_sbus.c revision 1.13
      1  1.13    petrov /*	$NetBSD: esp_sbus.c,v 1.13 2001/03/29 02:58:38 petrov Exp $	*/
      2   1.1        pk 
      3   1.1        pk /*-
      4   1.1        pk  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5   1.1        pk  * All rights reserved.
      6   1.1        pk  *
      7   1.1        pk  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1        pk  * by Charles M. Hannum; Jason R. Thorpe of the Numerical Aerospace
      9   1.1        pk  * Simulation Facility, NASA Ames Research Center; Paul Kranenburg.
     10   1.1        pk  *
     11   1.1        pk  * Redistribution and use in source and binary forms, with or without
     12   1.1        pk  * modification, are permitted provided that the following conditions
     13   1.1        pk  * are met:
     14   1.1        pk  * 1. Redistributions of source code must retain the above copyright
     15   1.1        pk  *    notice, this list of conditions and the following disclaimer.
     16   1.1        pk  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1        pk  *    notice, this list of conditions and the following disclaimer in the
     18   1.1        pk  *    documentation and/or other materials provided with the distribution.
     19   1.1        pk  * 3. All advertising materials mentioning features or use of this software
     20   1.1        pk  *    must display the following acknowledgement:
     21   1.1        pk  *	This product includes software developed by the NetBSD
     22   1.1        pk  *	Foundation, Inc. and its contributors.
     23   1.1        pk  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.1        pk  *    contributors may be used to endorse or promote products derived
     25   1.1        pk  *    from this software without specific prior written permission.
     26   1.1        pk  *
     27   1.1        pk  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.1        pk  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.1        pk  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.1        pk  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.1        pk  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.1        pk  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.1        pk  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.1        pk  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.1        pk  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.1        pk  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.1        pk  * POSSIBILITY OF SUCH DAMAGE.
     38   1.1        pk  */
     39   1.1        pk 
     40   1.1        pk #include <sys/types.h>
     41   1.1        pk #include <sys/param.h>
     42   1.1        pk #include <sys/systm.h>
     43   1.1        pk #include <sys/device.h>
     44   1.1        pk #include <sys/buf.h>
     45  1.13    petrov #include <sys/malloc.h>
     46   1.1        pk 
     47   1.1        pk #include <dev/scsipi/scsi_all.h>
     48   1.1        pk #include <dev/scsipi/scsipi_all.h>
     49   1.1        pk #include <dev/scsipi/scsiconf.h>
     50   1.1        pk #include <dev/scsipi/scsi_message.h>
     51   1.1        pk 
     52   1.1        pk #include <machine/bus.h>
     53  1.11        pk #include <machine/intr.h>
     54   1.1        pk #include <machine/autoconf.h>
     55   1.1        pk 
     56   1.1        pk #include <dev/ic/lsi64854reg.h>
     57   1.1        pk #include <dev/ic/lsi64854var.h>
     58   1.1        pk 
     59   1.1        pk #include <dev/ic/ncr53c9xreg.h>
     60   1.1        pk #include <dev/ic/ncr53c9xvar.h>
     61   1.1        pk 
     62   1.1        pk #include <dev/sbus/sbusvar.h>
     63   1.1        pk 
     64  1.13    petrov /* #define ESP_SBUS_DEBUG */
     65  1.13    petrov 
     66   1.1        pk struct esp_softc {
     67   1.1        pk 	struct ncr53c9x_softc sc_ncr53c9x;	/* glue to MI code */
     68   1.1        pk 	struct sbusdev	sc_sd;			/* sbus device */
     69   1.1        pk 
     70   1.1        pk 	bus_space_tag_t	sc_bustag;
     71   1.1        pk 	bus_dma_tag_t	sc_dmatag;
     72   1.1        pk 
     73   1.1        pk 	bus_space_handle_t sc_reg;		/* the registers */
     74   1.1        pk 	struct lsi64854_softc *sc_dma;		/* pointer to my dma */
     75   1.1        pk 
     76   1.1        pk 	int	sc_pri;				/* SBUS priority */
     77   1.1        pk };
     78   1.1        pk 
     79   1.1        pk void	espattach_sbus	__P((struct device *, struct device *, void *));
     80   1.1        pk void	espattach_dma	__P((struct device *, struct device *, void *));
     81   1.1        pk int	espmatch_sbus	__P((struct device *, struct cfdata *, void *));
     82   1.1        pk 
     83   1.1        pk 
     84   1.1        pk /* Linkup to the rest of the kernel */
     85   1.1        pk struct cfattach esp_sbus_ca = {
     86   1.1        pk 	sizeof(struct esp_softc), espmatch_sbus, espattach_sbus
     87   1.1        pk };
     88   1.1        pk struct cfattach esp_dma_ca = {
     89   1.1        pk 	sizeof(struct esp_softc), espmatch_sbus, espattach_dma
     90   1.1        pk };
     91   1.1        pk 
     92   1.1        pk /*
     93   1.1        pk  * Functions and the switch for the MI code.
     94   1.1        pk  */
     95   1.1        pk static u_char	esp_read_reg __P((struct ncr53c9x_softc *, int));
     96   1.1        pk static void	esp_write_reg __P((struct ncr53c9x_softc *, int, u_char));
     97   1.6    mjacob static u_char	esp_rdreg1 __P((struct ncr53c9x_softc *, int));
     98   1.6    mjacob static void	esp_wrreg1 __P((struct ncr53c9x_softc *, int, u_char));
     99   1.1        pk static int	esp_dma_isintr __P((struct ncr53c9x_softc *));
    100   1.1        pk static void	esp_dma_reset __P((struct ncr53c9x_softc *));
    101   1.1        pk static int	esp_dma_intr __P((struct ncr53c9x_softc *));
    102   1.1        pk static int	esp_dma_setup __P((struct ncr53c9x_softc *, caddr_t *,
    103   1.1        pk 				    size_t *, int, size_t *));
    104   1.1        pk static void	esp_dma_go __P((struct ncr53c9x_softc *));
    105   1.1        pk static void	esp_dma_stop __P((struct ncr53c9x_softc *));
    106   1.1        pk static int	esp_dma_isactive __P((struct ncr53c9x_softc *));
    107   1.1        pk 
    108   1.1        pk static struct ncr53c9x_glue esp_sbus_glue = {
    109   1.1        pk 	esp_read_reg,
    110   1.1        pk 	esp_write_reg,
    111   1.1        pk 	esp_dma_isintr,
    112   1.1        pk 	esp_dma_reset,
    113   1.1        pk 	esp_dma_intr,
    114   1.1        pk 	esp_dma_setup,
    115   1.1        pk 	esp_dma_go,
    116   1.1        pk 	esp_dma_stop,
    117   1.1        pk 	esp_dma_isactive,
    118   1.1        pk 	NULL,			/* gl_clear_latched_intr */
    119   1.1        pk };
    120   1.1        pk 
    121   1.6    mjacob static struct ncr53c9x_glue esp_sbus_glue1 = {
    122   1.6    mjacob 	esp_rdreg1,
    123   1.6    mjacob 	esp_wrreg1,
    124   1.6    mjacob 	esp_dma_isintr,
    125   1.6    mjacob 	esp_dma_reset,
    126   1.6    mjacob 	esp_dma_intr,
    127   1.6    mjacob 	esp_dma_setup,
    128   1.6    mjacob 	esp_dma_go,
    129   1.6    mjacob 	esp_dma_stop,
    130   1.6    mjacob 	esp_dma_isactive,
    131   1.6    mjacob 	NULL,			/* gl_clear_latched_intr */
    132   1.6    mjacob };
    133   1.6    mjacob 
    134   1.6    mjacob static void	espattach __P((struct esp_softc *, struct ncr53c9x_glue *));
    135   1.6    mjacob 
    136   1.1        pk int
    137   1.1        pk espmatch_sbus(parent, cf, aux)
    138   1.1        pk 	struct device *parent;
    139   1.1        pk 	struct cfdata *cf;
    140   1.1        pk 	void *aux;
    141   1.1        pk {
    142   1.6    mjacob 	int rv;
    143   1.1        pk 	struct sbus_attach_args *sa = aux;
    144   1.1        pk 
    145  1.13    petrov 	if (strcmp("SUNW,fas", sa->sa_name) == 0)
    146  1.13    petrov 	        return 1;
    147  1.13    petrov 
    148   1.6    mjacob 	rv = (strcmp(cf->cf_driver->cd_name, sa->sa_name) == 0 ||
    149   1.6    mjacob 	    strcmp("ptscII", sa->sa_name) == 0);
    150   1.6    mjacob 	return (rv);
    151   1.1        pk }
    152   1.1        pk 
    153   1.1        pk void
    154   1.1        pk espattach_sbus(parent, self, aux)
    155   1.1        pk 	struct device *parent, *self;
    156   1.1        pk 	void *aux;
    157   1.1        pk {
    158   1.1        pk 	struct esp_softc *esc = (void *)self;
    159   1.1        pk 	struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
    160   1.1        pk 	struct sbus_attach_args *sa = aux;
    161  1.13    petrov 	struct lsi64854_softc *lsc;
    162  1.13    petrov 	int burst, sbusburst;
    163   1.1        pk 
    164   1.1        pk 	esc->sc_bustag = sa->sa_bustag;
    165   1.1        pk 	esc->sc_dmatag = sa->sa_dmatag;
    166   1.1        pk 
    167   1.1        pk 	sc->sc_id = getpropint(sa->sa_node, "initiator-id", 7);
    168   1.1        pk 	sc->sc_freq = getpropint(sa->sa_node, "clock-frequency", -1);
    169   1.1        pk 	if (sc->sc_freq < 0)
    170   1.1        pk 		sc->sc_freq = ((struct sbus_softc *)
    171   1.1        pk 		    sc->sc_dev.dv_parent)->sc_clockfreq;
    172   1.1        pk 
    173  1.13    petrov #ifdef ESP_SBUS_DEBUG
    174  1.13    petrov 	printf("%s: espattach_sbus: sc_id %d, freq %d\n",
    175  1.13    petrov 	       self->dv_xname, sc->sc_id, sc->sc_freq);
    176  1.13    petrov #endif
    177  1.13    petrov 
    178  1.13    petrov 	if (strcmp("SUNW,fas", sa->sa_name) == 0) {
    179  1.13    petrov 
    180  1.13    petrov 		/*
    181  1.13    petrov 		 * fas has 2 register spaces: dma(lsi64854) and SCSI core (ncr53c9x)
    182  1.13    petrov 		 */
    183  1.13    petrov 		if (sa->sa_nreg != 2) {
    184  1.13    petrov 			printf("%s: %d register spaces\n", self->dv_xname, sa->sa_nreg);
    185  1.13    petrov 			return;
    186  1.13    petrov 		}
    187  1.13    petrov 
    188  1.13    petrov 		/*
    189  1.13    petrov 		 * allocate space for dma, in SUNW,fas there are no separate
    190  1.13    petrov 		 * dma device
    191  1.13    petrov 		 */
    192  1.13    petrov 		lsc = malloc(sizeof (struct lsi64854_softc), M_DEVBUF, M_NOWAIT);
    193  1.13    petrov 
    194  1.13    petrov 		if (lsc == NULL) {
    195  1.13    petrov 			printf("%s: out of memory (lsi64854_softc)\n",
    196  1.13    petrov 			       self->dv_xname);
    197  1.13    petrov 			return;
    198  1.13    petrov 		}
    199  1.13    petrov 		esc->sc_dma = lsc;
    200  1.13    petrov 
    201  1.13    petrov 		lsc->sc_bustag = sa->sa_bustag;
    202  1.13    petrov 		lsc->sc_dmatag = sa->sa_dmatag;
    203  1.13    petrov 
    204  1.13    petrov 		bcopy(sc->sc_dev.dv_xname, lsc->sc_dev.dv_xname,
    205  1.13    petrov 		      sizeof (lsc->sc_dev.dv_xname));
    206  1.13    petrov 
    207  1.13    petrov 		/* Map dma registers */
    208  1.13    petrov 		if (bus_space_map2(sa->sa_bustag,
    209  1.13    petrov 		                   sa->sa_reg[0].sbr_slot,
    210  1.13    petrov 			           sa->sa_reg[0].sbr_offset,
    211  1.13    petrov 			           sa->sa_reg[0].sbr_size,
    212  1.13    petrov 			           BUS_SPACE_MAP_LINEAR,
    213  1.13    petrov 			           0, &lsc->sc_regs) != 0) {
    214  1.13    petrov 			printf("%s: cannot map dma registers\n", self->dv_xname);
    215  1.13    petrov 			return;
    216  1.13    petrov 		}
    217  1.13    petrov 
    218  1.13    petrov 		/*
    219  1.13    petrov 		 * XXX is this common(from bpp.c), the same in dma_sbus...etc.
    220  1.13    petrov 		 *
    221  1.13    petrov 		 * Get transfer burst size from PROM and plug it into the
    222  1.13    petrov 		 * controller registers. This is needed on the Sun4m; do
    223  1.13    petrov 		 * others need it too?
    224  1.13    petrov 		 */
    225  1.13    petrov 		sbusburst = ((struct sbus_softc *)parent)->sc_burst;
    226  1.13    petrov 		if (sbusburst == 0)
    227  1.13    petrov 			sbusburst = SBUS_BURST_32 - 1; /* 1->16 */
    228  1.13    petrov 
    229  1.13    petrov 		burst = getpropint(sa->sa_node, "burst-sizes", -1);
    230  1.13    petrov 
    231  1.13    petrov #if ESP_SBUS_DEBUG
    232  1.13    petrov 		printf("espattach_sbus: burst 0x%x, sbus 0x%x\n",
    233  1.13    petrov 		    burst, sbusburst);
    234  1.13    petrov #endif
    235  1.13    petrov 
    236  1.13    petrov 		if (burst == -1)
    237  1.13    petrov 			/* take SBus burst sizes */
    238  1.13    petrov 			burst = sbusburst;
    239  1.13    petrov 
    240  1.13    petrov 		/* Clamp at parent's burst sizes */
    241  1.13    petrov 		burst &= sbusburst;
    242  1.13    petrov 		lsc->sc_burst = (burst & SBUS_BURST_32) ? 32 :
    243  1.13    petrov 		    (burst & SBUS_BURST_16) ? 16 : 0;
    244  1.13    petrov 
    245  1.13    petrov 		lsc->sc_channel = L64854_CHANNEL_SCSI;
    246  1.13    petrov 		lsc->sc_client = sc;
    247  1.13    petrov 
    248  1.13    petrov 		lsi64854_attach(lsc);
    249  1.13    petrov 
    250  1.13    petrov 		/*
    251  1.13    petrov 		 * map SCSI core registers
    252  1.13    petrov 		 */
    253  1.13    petrov 		if (sbus_bus_map(sa->sa_bustag,
    254  1.13    petrov 				 sa->sa_reg[1].sbr_slot,
    255  1.13    petrov 				 sa->sa_reg[1].sbr_offset,
    256  1.13    petrov 				 sa->sa_reg[1].sbr_size,
    257  1.13    petrov 				 BUS_SPACE_MAP_LINEAR,
    258  1.13    petrov 				 0, &esc->sc_reg) != 0) {
    259  1.13    petrov 			printf("%s @ sbus: cannot map scsi core registers\n",
    260  1.13    petrov 			       self->dv_xname);
    261  1.13    petrov 			return;
    262  1.13    petrov 		}
    263  1.13    petrov 
    264  1.13    petrov 		if (sa->sa_nintr == 0) {
    265  1.13    petrov 			printf("\n%s: no interrupt property\n", self->dv_xname);
    266  1.13    petrov 			return;
    267  1.13    petrov 		}
    268  1.13    petrov 
    269  1.13    petrov 		esc->sc_pri = sa->sa_pri;
    270  1.13    petrov 
    271  1.13    petrov 		/* add me to the sbus structures */
    272  1.13    petrov 		esc->sc_sd.sd_reset = (void *) ncr53c9x_reset;
    273  1.13    petrov 		sbus_establish(&esc->sc_sd, &sc->sc_dev);
    274  1.13    petrov 
    275  1.13    petrov 		espattach(esc, &esp_sbus_glue);
    276  1.13    petrov 
    277  1.13    petrov 		return;
    278  1.13    petrov 	}
    279  1.13    petrov 
    280   1.1        pk 	/*
    281   1.1        pk 	 * Find the DMA by poking around the dma device structures
    282   1.1        pk 	 *
    283   1.1        pk 	 * What happens here is that if the dma driver has not been
    284   1.1        pk 	 * configured, then this returns a NULL pointer. Then when the
    285   1.1        pk 	 * dma actually gets configured, it does the opposing test, and
    286   1.1        pk 	 * if the sc->sc_esp field in it's softc is NULL, then tries to
    287   1.1        pk 	 * find the matching esp driver.
    288   1.1        pk 	 */
    289   1.1        pk 	esc->sc_dma = (struct lsi64854_softc *)
    290   1.1        pk 				getdevunit("dma", sc->sc_dev.dv_unit);
    291   1.1        pk 
    292   1.1        pk 	/*
    293   1.1        pk 	 * and a back pointer to us, for DMA
    294   1.1        pk 	 */
    295   1.1        pk 	if (esc->sc_dma)
    296   1.2        pk 		esc->sc_dma->sc_client = sc;
    297   1.1        pk 	else {
    298   1.1        pk 		printf("\n");
    299   1.1        pk 		panic("espattach: no dma found");
    300   1.1        pk 	}
    301   1.1        pk 
    302   1.1        pk 	/*
    303   1.1        pk 	 * Map my registers in, if they aren't already in virtual
    304   1.1        pk 	 * address space.
    305   1.1        pk 	 */
    306   1.1        pk 	if (sa->sa_npromvaddrs)
    307   1.1        pk 		esc->sc_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
    308   1.1        pk 	else {
    309   1.1        pk 		if (sbus_bus_map(sa->sa_bustag, sa->sa_slot,
    310   1.1        pk 				 sa->sa_offset,
    311   1.1        pk 				 sa->sa_size,
    312   1.1        pk 				 BUS_SPACE_MAP_LINEAR,
    313   1.2        pk 				 0, &esc->sc_reg) != 0) {
    314   1.1        pk 			printf("%s @ sbus: cannot map registers\n",
    315   1.1        pk 				self->dv_xname);
    316   1.1        pk 			return;
    317   1.1        pk 		}
    318   1.1        pk 	}
    319   1.1        pk 
    320   1.7        pk 	if (sa->sa_nintr == 0) {
    321   1.7        pk 		/*
    322   1.7        pk 		 * No interrupt properties: we quit; this might
    323   1.7        pk 		 * happen on e.g. a Sparc X terminal.
    324   1.7        pk 		 */
    325   1.7        pk 		printf("\n%s: no interrupt property\n", self->dv_xname);
    326   1.7        pk 		return;
    327   1.7        pk 	}
    328   1.7        pk 
    329   1.1        pk 	esc->sc_pri = sa->sa_pri;
    330   1.1        pk 
    331   1.1        pk 	/* add me to the sbus structures */
    332   1.1        pk 	esc->sc_sd.sd_reset = (void *) ncr53c9x_reset;
    333   1.1        pk 	sbus_establish(&esc->sc_sd, &sc->sc_dev);
    334   1.1        pk 
    335   1.6    mjacob 	if (strcmp("ptscII", sa->sa_name) == 0) {
    336   1.6    mjacob 		espattach(esc, &esp_sbus_glue1);
    337   1.6    mjacob 	} else {
    338   1.6    mjacob 		espattach(esc, &esp_sbus_glue);
    339   1.6    mjacob 	}
    340   1.1        pk }
    341   1.1        pk 
    342   1.1        pk void
    343   1.1        pk espattach_dma(parent, self, aux)
    344   1.1        pk 	struct device *parent, *self;
    345   1.1        pk 	void *aux;
    346   1.1        pk {
    347   1.1        pk 	struct esp_softc *esc = (void *)self;
    348   1.1        pk 	struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
    349   1.1        pk 	struct sbus_attach_args *sa = aux;
    350   1.1        pk 
    351   1.6    mjacob 	if (strcmp("ptscII", sa->sa_name) == 0) {
    352   1.6    mjacob 		return;
    353   1.6    mjacob 	}
    354   1.6    mjacob 
    355   1.1        pk 	esc->sc_bustag = sa->sa_bustag;
    356   1.1        pk 	esc->sc_dmatag = sa->sa_dmatag;
    357   1.1        pk 
    358   1.1        pk 	sc->sc_id = getpropint(sa->sa_node, "initiator-id", 7);
    359   1.1        pk 	sc->sc_freq = getpropint(sa->sa_node, "clock-frequency", -1);
    360   1.1        pk 
    361   1.1        pk 	esc->sc_dma = (struct lsi64854_softc *)parent;
    362   1.2        pk 	esc->sc_dma->sc_client = sc;
    363   1.1        pk 
    364   1.1        pk 	/*
    365   1.1        pk 	 * Map my registers in, if they aren't already in virtual
    366   1.1        pk 	 * address space.
    367   1.1        pk 	 */
    368   1.1        pk 	if (sa->sa_npromvaddrs)
    369   1.1        pk 		esc->sc_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
    370   1.1        pk 	else {
    371   1.1        pk 		if (bus_space_map2(sa->sa_bustag,
    372   1.1        pk 				   sa->sa_slot,
    373   1.1        pk 				   sa->sa_offset,
    374   1.1        pk 				   sa->sa_size,
    375   1.1        pk 				   BUS_SPACE_MAP_LINEAR,
    376   1.2        pk 				   0, &esc->sc_reg) != 0) {
    377   1.1        pk 			printf("%s @ dma: cannot map registers\n",
    378   1.1        pk 				self->dv_xname);
    379   1.1        pk 			return;
    380   1.1        pk 		}
    381   1.1        pk 	}
    382   1.1        pk 
    383   1.7        pk 	if (sa->sa_nintr == 0) {
    384   1.7        pk 		/*
    385   1.7        pk 		 * No interrupt properties: we quit; this might
    386   1.7        pk 		 * happen on e.g. a Sparc X terminal.
    387   1.7        pk 		 */
    388   1.7        pk 		printf("\n%s: no interrupt property\n", self->dv_xname);
    389   1.7        pk 		return;
    390   1.7        pk 	}
    391   1.7        pk 
    392   1.1        pk 	esc->sc_pri = sa->sa_pri;
    393   1.1        pk 
    394   1.1        pk 	/* Assume SBus is grandparent */
    395   1.1        pk 	esc->sc_sd.sd_reset = (void *) ncr53c9x_reset;
    396   1.1        pk 	sbus_establish(&esc->sc_sd, parent);
    397   1.1        pk 
    398   1.6    mjacob 	espattach(esc, &esp_sbus_glue);
    399   1.1        pk }
    400   1.1        pk 
    401   1.1        pk 
    402   1.1        pk /*
    403   1.1        pk  * Attach this instance, and then all the sub-devices
    404   1.1        pk  */
    405   1.1        pk void
    406   1.6    mjacob espattach(esc, gluep)
    407   1.1        pk 	struct esp_softc *esc;
    408   1.6    mjacob 	struct ncr53c9x_glue *gluep;
    409   1.1        pk {
    410   1.1        pk 	struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
    411   1.1        pk 	void *icookie;
    412  1.13    petrov 	unsigned int uid = 0;
    413   1.1        pk 
    414   1.1        pk 	/*
    415   1.1        pk 	 * Set up glue for MI code early; we use some of it here.
    416   1.1        pk 	 */
    417   1.6    mjacob 	sc->sc_glue = gluep;
    418   1.1        pk 
    419   1.1        pk 	/* gimme Mhz */
    420   1.1        pk 	sc->sc_freq /= 1000000;
    421   1.1        pk 
    422   1.1        pk 	/*
    423   1.1        pk 	 * XXX More of this should be in ncr53c9x_attach(), but
    424   1.1        pk 	 * XXX should we really poke around the chip that much in
    425   1.1        pk 	 * XXX the MI code?  Think about this more...
    426   1.1        pk 	 */
    427   1.1        pk 
    428   1.1        pk 	/*
    429   1.1        pk 	 * It is necessary to try to load the 2nd config register here,
    430   1.1        pk 	 * to find out what rev the esp chip is, else the ncr53c9x_reset
    431   1.1        pk 	 * will not set up the defaults correctly.
    432   1.1        pk 	 */
    433   1.1        pk 	sc->sc_cfg1 = sc->sc_id | NCRCFG1_PARENB;
    434   1.1        pk 	sc->sc_cfg2 = NCRCFG2_SCSI2 | NCRCFG2_RPE;
    435  1.13    petrov 	sc->sc_cfg3 = NCRCFG3_CDB;
    436   1.1        pk 	NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
    437   1.1        pk 
    438   1.1        pk 	if ((NCR_READ_REG(sc, NCR_CFG2) & ~NCRCFG2_RSVD) !=
    439   1.1        pk 	    (NCRCFG2_SCSI2 | NCRCFG2_RPE)) {
    440   1.1        pk 		sc->sc_rev = NCR_VARIANT_ESP100;
    441   1.1        pk 	} else {
    442   1.1        pk 		sc->sc_cfg2 = NCRCFG2_SCSI2;
    443   1.1        pk 		NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
    444   1.1        pk 		sc->sc_cfg3 = 0;
    445   1.1        pk 		NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    446  1.13    petrov 		sc->sc_cfg3 = (NCRCFG3_CDB | NCRCFG3_FCLK);
    447   1.1        pk 		NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    448   1.1        pk 		if (NCR_READ_REG(sc, NCR_CFG3) !=
    449   1.1        pk 		    (NCRCFG3_CDB | NCRCFG3_FCLK)) {
    450   1.1        pk 			sc->sc_rev = NCR_VARIANT_ESP100A;
    451   1.1        pk 		} else {
    452   1.1        pk 			/* NCRCFG2_FE enables > 64K transfers */
    453   1.1        pk 			sc->sc_cfg2 |= NCRCFG2_FE;
    454  1.13    petrov 			sc->sc_cfg3 = 0;
    455   1.1        pk 			NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    456   1.1        pk 			sc->sc_rev = NCR_VARIANT_ESP200;
    457  1.13    petrov 
    458  1.13    petrov 			/* XXX spec says it's valid after power up or chip reset */
    459  1.13    petrov 			uid = NCR_READ_REG(sc, NCR_UID);
    460  1.13    petrov 			if (((uid & 0xf8) >> 3) == 0x0a) /* XXX */
    461  1.13    petrov 				sc->sc_rev = NCR_VARIANT_FAS366;
    462   1.1        pk 		}
    463   1.1        pk 	}
    464   1.1        pk 
    465  1.13    petrov #ifdef ESP_SBUS_DEBUG
    466  1.13    petrov 	printf("espattach: revision %d, uid 0x%x\n", sc->sc_rev, uid);
    467  1.13    petrov #endif
    468  1.13    petrov 
    469   1.1        pk 	/*
    470   1.1        pk 	 * XXX minsync and maxxfer _should_ be set up in MI code,
    471   1.1        pk 	 * XXX but it appears to have some dependency on what sort
    472   1.1        pk 	 * XXX of DMA we're hooked up to, etc.
    473   1.1        pk 	 */
    474   1.1        pk 
    475   1.1        pk 	/*
    476   1.1        pk 	 * This is the value used to start sync negotiations
    477   1.1        pk 	 * Note that the NCR register "SYNCTP" is programmed
    478   1.1        pk 	 * in "clocks per byte", and has a minimum value of 4.
    479   1.1        pk 	 * The SCSI period used in negotiation is one-fourth
    480   1.1        pk 	 * of the time (in nanoseconds) needed to transfer one byte.
    481   1.1        pk 	 * Since the chip's clock is given in MHz, we have the following
    482   1.1        pk 	 * formula: 4 * period = (1000 / freq) * 4
    483   1.1        pk 	 */
    484   1.1        pk 	sc->sc_minsync = 1000 / sc->sc_freq;
    485   1.1        pk 
    486   1.1        pk 	/*
    487   1.1        pk 	 * Alas, we must now modify the value a bit, because it's
    488   1.1        pk 	 * only valid when can switch on FASTCLK and FASTSCSI bits
    489   1.1        pk 	 * in config register 3...
    490   1.1        pk 	 */
    491   1.1        pk 	switch (sc->sc_rev) {
    492   1.1        pk 	case NCR_VARIANT_ESP100:
    493   1.1        pk 		sc->sc_maxxfer = 64 * 1024;
    494   1.1        pk 		sc->sc_minsync = 0;	/* No synch on old chip? */
    495   1.1        pk 		break;
    496   1.1        pk 
    497   1.1        pk 	case NCR_VARIANT_ESP100A:
    498   1.1        pk 		sc->sc_maxxfer = 64 * 1024;
    499   1.1        pk 		/* Min clocks/byte is 5 */
    500   1.1        pk 		sc->sc_minsync = ncr53c9x_cpb2stp(sc, 5);
    501   1.1        pk 		break;
    502   1.1        pk 
    503   1.1        pk 	case NCR_VARIANT_ESP200:
    504  1.13    petrov 	case NCR_VARIANT_FAS366:
    505   1.1        pk 		sc->sc_maxxfer = 16 * 1024 * 1024;
    506   1.1        pk 		/* XXX - do actually set FAST* bits */
    507   1.1        pk 		break;
    508   1.1        pk 	}
    509   1.1        pk 
    510   1.1        pk 	/* Establish interrupt channel */
    511  1.11        pk 	icookie = bus_intr_establish(esc->sc_bustag, esc->sc_pri, IPL_BIO, 0,
    512  1.10  nisimura 				     ncr53c9x_intr, sc);
    513   1.1        pk 
    514   1.1        pk 	/* register interrupt stats */
    515   1.9       cgd 	evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
    516   1.9       cgd 	    sc->sc_dev.dv_xname, "intr");
    517   1.1        pk 
    518  1.13    petrov 	/* Turn on target selection using the `dma' method */
    519  1.13    petrov 	if (sc->sc_rev != NCR_VARIANT_FAS366)
    520  1.13    petrov 		sc->sc_features |= NCR_F_DMASELECT;
    521  1.13    petrov 
    522   1.1        pk 	/* Do the common parts of attachment. */
    523  1.10  nisimura 	ncr53c9x_attach(sc, NULL, NULL);
    524   1.1        pk }
    525   1.1        pk 
    526   1.1        pk /*
    527   1.1        pk  * Glue functions.
    528   1.1        pk  */
    529   1.1        pk 
    530  1.13    petrov #ifdef ESP_SBUS_DEBUG
    531  1.13    petrov int esp_sbus_debug = 0;
    532  1.13    petrov 
    533  1.13    petrov static struct {
    534  1.13    petrov 	char *r_name;
    535  1.13    petrov 	int   r_flag;
    536  1.13    petrov } esp__read_regnames [] = {
    537  1.13    petrov 	{ "TCL", 0},			/* 0/00 */
    538  1.13    petrov 	{ "TCM", 0},			/* 1/04 */
    539  1.13    petrov 	{ "FIFO", 0},			/* 2/08 */
    540  1.13    petrov 	{ "CMD", 0},			/* 3/0c */
    541  1.13    petrov 	{ "STAT", 0},			/* 4/10 */
    542  1.13    petrov 	{ "INTR", 0},			/* 5/14 */
    543  1.13    petrov 	{ "STEP", 0},			/* 6/18 */
    544  1.13    petrov 	{ "FFLAGS", 1},			/* 7/1c */
    545  1.13    petrov 	{ "CFG1", 1},			/* 8/20 */
    546  1.13    petrov 	{ "STAT2", 0},			/* 9/24 */
    547  1.13    petrov 	{ "CFG4", 1},			/* a/28 */
    548  1.13    petrov 	{ "CFG2", 1},			/* b/2c */
    549  1.13    petrov 	{ "CFG3", 1},			/* c/30 */
    550  1.13    petrov 	{ "-none", 1},			/* d/34 */
    551  1.13    petrov 	{ "TCH", 1},			/* e/38 */
    552  1.13    petrov 	{ "TCX", 1},			/* f/3c */
    553  1.13    petrov };
    554  1.13    petrov 
    555  1.13    petrov static struct {
    556  1.13    petrov 	char *r_name;
    557  1.13    petrov 	int   r_flag;
    558  1.13    petrov } esp__write_regnames[] = {
    559  1.13    petrov 	{ "TCL", 1},			/* 0/00 */
    560  1.13    petrov 	{ "TCM", 1},			/* 1/04 */
    561  1.13    petrov 	{ "FIFO", 0},			/* 2/08 */
    562  1.13    petrov 	{ "CMD", 0},			/* 3/0c */
    563  1.13    petrov 	{ "SELID", 1},			/* 4/10 */
    564  1.13    petrov 	{ "TIMEOUT", 1},		/* 5/14 */
    565  1.13    petrov 	{ "SYNCTP", 1},			/* 6/18 */
    566  1.13    petrov 	{ "SYNCOFF", 1},		/* 7/1c */
    567  1.13    petrov 	{ "CFG1", 1},			/* 8/20 */
    568  1.13    petrov 	{ "CCF", 1},			/* 9/24 */
    569  1.13    petrov 	{ "TEST", 1},			/* a/28 */
    570  1.13    petrov 	{ "CFG2", 1},			/* b/2c */
    571  1.13    petrov 	{ "CFG3", 1},			/* c/30 */
    572  1.13    petrov 	{ "-none", 1},			/* d/34 */
    573  1.13    petrov 	{ "TCH", 1},			/* e/38 */
    574  1.13    petrov 	{ "TCX", 1},			/* f/3c */
    575  1.13    petrov };
    576  1.13    petrov #endif
    577  1.13    petrov 
    578   1.1        pk u_char
    579   1.1        pk esp_read_reg(sc, reg)
    580   1.1        pk 	struct ncr53c9x_softc *sc;
    581   1.1        pk 	int reg;
    582   1.1        pk {
    583   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    584  1.13    petrov 	u_char v;
    585   1.1        pk 
    586  1.13    petrov 	v = bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg * 4);
    587  1.13    petrov #ifdef ESP_SBUS_DEBUG
    588  1.13    petrov 	if (esp_sbus_debug && (reg < 0x10) && esp__read_regnames[reg].r_flag)
    589  1.13    petrov 		printf("RD:%x <%s> %x\n", reg * 4,
    590  1.13    petrov 		    ((unsigned)reg < 0x10) ? esp__read_regnames[reg].r_name : "<***>", v);
    591  1.13    petrov #endif
    592  1.13    petrov 	return v;
    593   1.1        pk }
    594   1.1        pk 
    595   1.1        pk void
    596   1.1        pk esp_write_reg(sc, reg, v)
    597   1.1        pk 	struct ncr53c9x_softc *sc;
    598   1.1        pk 	int reg;
    599   1.1        pk 	u_char v;
    600   1.1        pk {
    601   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    602   1.1        pk 
    603  1.13    petrov #ifdef ESP_SBUS_DEBUG
    604  1.13    petrov 	if (esp_sbus_debug && (reg < 0x10) && esp__write_regnames[reg].r_flag)
    605  1.13    petrov 		printf("WR:%x <%s> %x\n", reg * 4,
    606  1.13    petrov 		    ((unsigned)reg < 0x10) ? esp__write_regnames[reg].r_name : "<***>", v);
    607  1.13    petrov #endif
    608   1.1        pk 	bus_space_write_1(esc->sc_bustag, esc->sc_reg, reg * 4, v);
    609   1.6    mjacob }
    610   1.6    mjacob 
    611   1.6    mjacob u_char
    612   1.6    mjacob esp_rdreg1(sc, reg)
    613   1.6    mjacob 	struct ncr53c9x_softc *sc;
    614   1.6    mjacob 	int reg;
    615   1.6    mjacob {
    616   1.6    mjacob 	struct esp_softc *esc = (struct esp_softc *)sc;
    617   1.6    mjacob 
    618   1.6    mjacob 	return (bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg));
    619   1.6    mjacob }
    620   1.6    mjacob 
    621   1.6    mjacob void
    622   1.6    mjacob esp_wrreg1(sc, reg, v)
    623   1.6    mjacob 	struct ncr53c9x_softc *sc;
    624   1.6    mjacob 	int reg;
    625   1.6    mjacob 	u_char v;
    626   1.6    mjacob {
    627   1.6    mjacob 	struct esp_softc *esc = (struct esp_softc *)sc;
    628   1.6    mjacob 
    629   1.6    mjacob 	bus_space_write_1(esc->sc_bustag, esc->sc_reg, reg, v);
    630   1.1        pk }
    631   1.1        pk 
    632   1.1        pk int
    633   1.1        pk esp_dma_isintr(sc)
    634   1.1        pk 	struct ncr53c9x_softc *sc;
    635   1.1        pk {
    636   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    637   1.1        pk 
    638   1.1        pk 	return (DMA_ISINTR(esc->sc_dma));
    639   1.1        pk }
    640   1.1        pk 
    641   1.1        pk void
    642   1.1        pk esp_dma_reset(sc)
    643   1.1        pk 	struct ncr53c9x_softc *sc;
    644   1.1        pk {
    645   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    646   1.1        pk 
    647   1.1        pk 	DMA_RESET(esc->sc_dma);
    648   1.1        pk }
    649   1.1        pk 
    650   1.1        pk int
    651   1.1        pk esp_dma_intr(sc)
    652   1.1        pk 	struct ncr53c9x_softc *sc;
    653   1.1        pk {
    654   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    655   1.1        pk 
    656   1.1        pk 	return (DMA_INTR(esc->sc_dma));
    657   1.1        pk }
    658   1.1        pk 
    659   1.1        pk int
    660   1.1        pk esp_dma_setup(sc, addr, len, datain, dmasize)
    661   1.1        pk 	struct ncr53c9x_softc *sc;
    662   1.1        pk 	caddr_t *addr;
    663   1.1        pk 	size_t *len;
    664   1.1        pk 	int datain;
    665   1.1        pk 	size_t *dmasize;
    666   1.1        pk {
    667   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    668   1.1        pk 
    669   1.1        pk 	return (DMA_SETUP(esc->sc_dma, addr, len, datain, dmasize));
    670   1.1        pk }
    671   1.1        pk 
    672   1.1        pk void
    673   1.1        pk esp_dma_go(sc)
    674   1.1        pk 	struct ncr53c9x_softc *sc;
    675   1.1        pk {
    676   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    677   1.1        pk 
    678   1.1        pk 	DMA_GO(esc->sc_dma);
    679   1.1        pk }
    680   1.1        pk 
    681   1.1        pk void
    682   1.1        pk esp_dma_stop(sc)
    683   1.1        pk 	struct ncr53c9x_softc *sc;
    684   1.1        pk {
    685   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    686   1.1        pk 	u_int32_t csr;
    687   1.1        pk 
    688   1.1        pk 	csr = L64854_GCSR(esc->sc_dma);
    689   1.1        pk 	csr &= ~D_EN_DMA;
    690   1.1        pk 	L64854_SCSR(esc->sc_dma, csr);
    691   1.1        pk }
    692   1.1        pk 
    693   1.1        pk int
    694   1.1        pk esp_dma_isactive(sc)
    695   1.1        pk 	struct ncr53c9x_softc *sc;
    696   1.1        pk {
    697   1.1        pk 	struct esp_softc *esc = (struct esp_softc *)sc;
    698   1.1        pk 
    699   1.1        pk 	return (DMA_ISACTIVE(esc->sc_dma));
    700   1.1        pk }
    701  1.12       eeh 
    702  1.12       eeh #include "opt_ddb.h"
    703  1.12       eeh #ifdef DDB
    704  1.12       eeh #include <machine/db_machdep.h>
    705  1.12       eeh #include <ddb/db_output.h>
    706  1.12       eeh 
    707  1.12       eeh void db_esp __P((db_expr_t, int, db_expr_t, char*));
    708  1.12       eeh 
    709  1.12       eeh void
    710  1.12       eeh db_esp(addr, have_addr, count, modif)
    711  1.12       eeh 	db_expr_t addr;
    712  1.12       eeh 	int have_addr;
    713  1.12       eeh 	db_expr_t count;
    714  1.12       eeh 	char *modif;
    715  1.12       eeh {
    716  1.12       eeh 	struct ncr53c9x_softc *sc;
    717  1.12       eeh 	struct ncr53c9x_ecb *ecb;
    718  1.12       eeh 	struct ncr53c9x_linfo *li;
    719  1.12       eeh 	int u, t, i;
    720  1.12       eeh 
    721  1.12       eeh 	for (u=0; u<10; u++) {
    722  1.12       eeh 		sc = (struct ncr53c9x_softc *)
    723  1.12       eeh 			getdevunit("esp", u);
    724  1.12       eeh 		if (!sc) continue;
    725  1.12       eeh 
    726  1.12       eeh 		db_printf("esp%d: nexus %p phase %x prev %x dp %p dleft %lx ify %x\n",
    727  1.12       eeh 			  u, sc->sc_nexus, sc->sc_phase, sc->sc_prevphase,
    728  1.12       eeh 			  sc->sc_dp, sc->sc_dleft, sc->sc_msgify);
    729  1.12       eeh 		db_printf("\tmsgout %x msgpriq %x msgin %x:%x:%x:%x:%x\n",
    730  1.12       eeh 			  sc->sc_msgout, sc->sc_msgpriq, sc->sc_imess[0],
    731  1.12       eeh 			  sc->sc_imess[1], sc->sc_imess[2], sc->sc_imess[3],
    732  1.12       eeh 			  sc->sc_imess[0]);
    733  1.12       eeh 		db_printf("ready: ");
    734  1.12       eeh 		for (ecb = sc->ready_list.tqh_first; ecb; ecb = ecb->chain.tqe_next) {
    735  1.12       eeh 			db_printf("ecb %p ", ecb);
    736  1.12       eeh 			if (ecb == ecb->chain.tqe_next) {
    737  1.12       eeh 				db_printf("\nWARNING: tailq loop on ecb %p", ecb);
    738  1.12       eeh 				break;
    739  1.12       eeh 			}
    740  1.12       eeh 		}
    741  1.12       eeh 		db_printf("\n");
    742  1.12       eeh 
    743  1.12       eeh 		for (t=0; t<NCR_NTARG; t++) {
    744  1.12       eeh 			LIST_FOREACH(li, &sc->sc_tinfo[t].luns, link) {
    745  1.12       eeh 				db_printf("t%d lun %d untagged %p busy %d used %x\n",
    746  1.12       eeh 					  t, (int)li->lun, li->untagged, li->busy,
    747  1.12       eeh 					  li->used);
    748  1.12       eeh 				for (i=0; i<256; i++)
    749  1.12       eeh 					if ((ecb = li->queued[i])) {
    750  1.12       eeh 						db_printf("ecb %p tag %x\n", ecb, i);
    751  1.12       eeh 					}
    752  1.12       eeh 			}
    753  1.12       eeh 		}
    754  1.12       eeh 	}
    755  1.12       eeh }
    756  1.12       eeh #endif
    757  1.13    petrov 
    758