Home | History | Annotate | Line # | Download | only in isa
wds.c revision 1.20
      1  1.20   mycroft /*	$NetBSD: wds.c,v 1.20 1997/09/26 02:50:18 mycroft Exp $	*/
      2   1.1   mycroft 
      3   1.8   mycroft #undef WDSDIAG
      4   1.8   mycroft #ifdef DDB
      5   1.1   mycroft #define	integrate
      6   1.8   mycroft #else
      7   1.8   mycroft #define	integrate	static inline
      8   1.8   mycroft #endif
      9   1.1   mycroft 
     10   1.1   mycroft /*
     11   1.1   mycroft  * XXX
     12   1.1   mycroft  * sense data
     13   1.1   mycroft  * aborts
     14   1.1   mycroft  * resets
     15   1.1   mycroft  */
     16   1.1   mycroft 
     17  1.19   thorpej /*-
     18  1.19   thorpej  * Copyright (c) 1997 The NetBSD Foundation, Inc.
     19  1.19   thorpej  * All rights reserved.
     20  1.19   thorpej  *
     21  1.19   thorpej  * This code is derived from software contributed to The NetBSD Foundation
     22  1.19   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
     23  1.19   thorpej  * NASA Ames Research Center.
     24  1.19   thorpej  *
     25  1.19   thorpej  * Redistribution and use in source and binary forms, with or without
     26  1.19   thorpej  * modification, are permitted provided that the following conditions
     27  1.19   thorpej  * are met:
     28  1.19   thorpej  * 1. Redistributions of source code must retain the above copyright
     29  1.19   thorpej  *    notice, this list of conditions and the following disclaimer.
     30  1.19   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     31  1.19   thorpej  *    notice, this list of conditions and the following disclaimer in the
     32  1.19   thorpej  *    documentation and/or other materials provided with the distribution.
     33  1.19   thorpej  * 3. All advertising materials mentioning features or use of this software
     34  1.19   thorpej  *    must display the following acknowledgement:
     35  1.19   thorpej  *	This product includes software developed by the NetBSD
     36  1.19   thorpej  *	Foundation, Inc. and its contributors.
     37  1.19   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     38  1.19   thorpej  *    contributors may be used to endorse or promote products derived
     39  1.19   thorpej  *    from this software without specific prior written permission.
     40  1.19   thorpej  *
     41  1.19   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     42  1.19   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     43  1.19   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     44  1.19   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     45  1.19   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     46  1.19   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     47  1.19   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     48  1.19   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     49  1.19   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     50  1.19   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     51  1.19   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     52  1.19   thorpej  */
     53  1.19   thorpej 
     54   1.1   mycroft /*
     55   1.1   mycroft  * Copyright (c) 1994, 1995 Julian Highfield.  All rights reserved.
     56  1.15   mycroft  * Portions copyright (c) 1994, 1996, 1997
     57  1.15   mycroft  *	Charles M. Hannum.  All rights reserved.
     58   1.1   mycroft  *
     59   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     60   1.1   mycroft  * modification, are permitted provided that the following conditions
     61   1.1   mycroft  * are met:
     62   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     63   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     64   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     65   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     66   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     67   1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     68   1.1   mycroft  *    must display the following acknowledgement:
     69   1.1   mycroft  *	This product includes software developed by Julian Highfield.
     70   1.1   mycroft  * 4. The name of the author may not be used to endorse or promote products
     71   1.1   mycroft  *    derived from this software without specific prior written permission.
     72   1.1   mycroft  *
     73   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     74   1.1   mycroft  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     75   1.1   mycroft  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     76   1.1   mycroft  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     77   1.1   mycroft  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     78   1.1   mycroft  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     79   1.1   mycroft  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     80   1.1   mycroft  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     81   1.1   mycroft  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     82   1.1   mycroft  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     83   1.1   mycroft  */
     84   1.1   mycroft 
     85   1.1   mycroft /*
     86   1.1   mycroft  * This driver is for the WD7000 family of SCSI controllers:
     87   1.1   mycroft  *   the WD7000-ASC, a bus-mastering DMA controller,
     88   1.1   mycroft  *   the WD7000-FASST2, an -ASC with new firmware and scatter-gather,
     89   1.1   mycroft  *   and the WD7000-ASE, which was custom manufactured for Apollo
     90   1.1   mycroft  *      workstations and seems to include an -ASC as well as floppy
     91   1.1   mycroft  *      and ESDI interfaces.
     92   1.1   mycroft  *
     93   1.1   mycroft  * Loosely based on Theo Deraadt's unfinished attempt.
     94   1.1   mycroft  */
     95   1.1   mycroft 
     96   1.1   mycroft #include <sys/types.h>
     97   1.1   mycroft #include <sys/param.h>
     98   1.1   mycroft #include <sys/systm.h>
     99   1.1   mycroft #include <sys/kernel.h>
    100   1.1   mycroft #include <sys/errno.h>
    101   1.1   mycroft #include <sys/ioctl.h>
    102   1.1   mycroft #include <sys/device.h>
    103   1.1   mycroft #include <sys/malloc.h>
    104   1.1   mycroft #include <sys/buf.h>
    105   1.1   mycroft #include <sys/proc.h>
    106   1.1   mycroft #include <sys/user.h>
    107   1.1   mycroft 
    108  1.19   thorpej #include <machine/bus.h>
    109   1.7   mycroft #include <machine/intr.h>
    110   1.1   mycroft 
    111  1.18    bouyer #include <dev/scsipi/scsi_all.h>
    112  1.18    bouyer #include <dev/scsipi/scsipi_all.h>
    113  1.18    bouyer #include <dev/scsipi/scsiconf.h>
    114   1.1   mycroft 
    115   1.1   mycroft #include <dev/isa/isavar.h>
    116   1.1   mycroft #include <dev/isa/isadmavar.h>
    117  1.15   mycroft 
    118   1.1   mycroft #include <dev/isa/wdsreg.h>
    119   1.3       cgd 
    120  1.15   mycroft #define	WDS_ISA_IOSIZE	8
    121  1.15   mycroft 
    122   1.3       cgd #ifndef DDB
    123   1.3       cgd #define Debugger() panic("should call debugger here (wds.c)")
    124   1.3       cgd #endif /* ! DDB */
    125   1.1   mycroft 
    126  1.19   thorpej #define	WDS_MAXXFER	((WDS_NSEG - 1) << PGSHIFT)
    127  1.19   thorpej 
    128   1.1   mycroft #define WDS_MBX_SIZE	16
    129   1.1   mycroft 
    130   1.1   mycroft #define WDS_SCB_MAX	32
    131   1.1   mycroft #define	SCB_HASH_SIZE	32	/* hash table size for phystokv */
    132   1.1   mycroft #define	SCB_HASH_SHIFT	9
    133   1.1   mycroft #define	SCB_HASH(x)	((((long)(x))>>SCB_HASH_SHIFT) & (SCB_HASH_SIZE - 1))
    134   1.1   mycroft 
    135   1.1   mycroft #define	wds_nextmbx(wmb, mbx, mbio) \
    136   1.1   mycroft 	if ((wmb) == &(mbx)->mbio[WDS_MBX_SIZE - 1])	\
    137   1.1   mycroft 		(wmb) = &(mbx)->mbio[0];		\
    138   1.1   mycroft 	else						\
    139   1.1   mycroft 		(wmb)++;
    140   1.1   mycroft 
    141   1.1   mycroft struct wds_mbx {
    142   1.1   mycroft 	struct wds_mbx_out mbo[WDS_MBX_SIZE];
    143   1.1   mycroft 	struct wds_mbx_in mbi[WDS_MBX_SIZE];
    144   1.1   mycroft 	struct wds_mbx_out *cmbo;	/* Collection Mail Box out */
    145   1.1   mycroft 	struct wds_mbx_out *tmbo;	/* Target Mail Box out */
    146   1.1   mycroft 	struct wds_mbx_in *tmbi;	/* Target Mail Box in */
    147   1.1   mycroft };
    148   1.1   mycroft 
    149   1.1   mycroft struct wds_softc {
    150   1.1   mycroft 	struct device sc_dev;
    151  1.15   mycroft 
    152  1.15   mycroft 	bus_space_tag_t sc_iot;
    153  1.15   mycroft 	bus_space_handle_t sc_ioh;
    154  1.19   thorpej 	bus_dma_tag_t sc_dmat;
    155  1.19   thorpej 	bus_dmamap_t sc_dmamap_mbox;	/* maps the mailbox */
    156   1.1   mycroft 	void *sc_ih;
    157   1.1   mycroft 
    158  1.19   thorpej 	struct wds_mbx *sc_mbx;
    159  1.19   thorpej #define	wmbx	(sc->sc_mbx)
    160   1.1   mycroft 	struct wds_scb *sc_scbhash[SCB_HASH_SIZE];
    161   1.1   mycroft 	TAILQ_HEAD(, wds_scb) sc_free_scb, sc_waiting_scb;
    162   1.1   mycroft 	int sc_numscbs, sc_mbofull;
    163  1.18    bouyer 	struct scsipi_link sc_link;	/* prototype for subdevs */
    164  1.15   mycroft 
    165  1.15   mycroft 	int sc_revision;
    166  1.19   thorpej 	int sc_maxsegs;
    167  1.15   mycroft };
    168  1.15   mycroft 
    169  1.15   mycroft struct wds_probe_data {
    170  1.15   mycroft #ifdef notyet
    171  1.15   mycroft 	int sc_irq, sc_drq;
    172  1.15   mycroft #endif
    173   1.1   mycroft 	int sc_scsi_dev;
    174   1.1   mycroft };
    175   1.1   mycroft 
    176  1.15   mycroft integrate void
    177  1.15   mycroft 	wds_wait __P((bus_space_tag_t, bus_space_handle_t, int, int, int));
    178  1.15   mycroft int     wds_cmd __P((bus_space_tag_t, bus_space_handle_t, u_char *, int));
    179   1.1   mycroft integrate void wds_finish_scbs __P((struct wds_softc *));
    180   1.1   mycroft int     wdsintr __P((void *));
    181   1.1   mycroft integrate void wds_reset_scb __P((struct wds_softc *, struct wds_scb *));
    182   1.1   mycroft void    wds_free_scb __P((struct wds_softc *, struct wds_scb *));
    183   1.1   mycroft integrate void wds_init_scb __P((struct wds_softc *, struct wds_scb *));
    184  1.19   thorpej struct	wds_scb *wds_get_scb __P((struct wds_softc *, int));
    185   1.1   mycroft struct	wds_scb *wds_scb_phys_kv __P((struct wds_softc *, u_long));
    186   1.1   mycroft void	wds_queue_scb __P((struct wds_softc *, struct wds_scb *));
    187   1.1   mycroft void	wds_collect_mbo __P((struct wds_softc *));
    188   1.1   mycroft void	wds_start_scbs __P((struct wds_softc *));
    189   1.1   mycroft void    wds_done __P((struct wds_softc *, struct wds_scb *, u_char));
    190  1.15   mycroft int	wds_find __P((bus_space_tag_t, bus_space_handle_t, struct wds_probe_data *));
    191  1.15   mycroft void	wds_attach __P((struct wds_softc *, struct wds_probe_data *));
    192  1.19   thorpej void	wds_init __P((struct wds_softc *, int));
    193   1.1   mycroft void	wds_inquire_setup_information __P((struct wds_softc *));
    194   1.1   mycroft void    wdsminphys __P((struct buf *));
    195  1.18    bouyer int     wds_scsi_cmd __P((struct scsipi_xfer *));
    196   1.2   mycroft void	wds_sense  __P((struct wds_softc *, struct wds_scb *));
    197  1.18    bouyer int	wds_poll __P((struct wds_softc *, struct scsipi_xfer *, int));
    198   1.1   mycroft int	wds_ipoll __P((struct wds_softc *, struct wds_scb *, int));
    199   1.1   mycroft void	wds_timeout __P((void *));
    200  1.19   thorpej int	wds_create_scbs __P((struct wds_softc *, void *, size_t));
    201   1.1   mycroft 
    202  1.18    bouyer struct scsipi_adapter wds_switch = {
    203   1.1   mycroft 	wds_scsi_cmd,
    204   1.1   mycroft 	wdsminphys,
    205   1.1   mycroft 	0,
    206   1.1   mycroft 	0,
    207   1.1   mycroft };
    208   1.1   mycroft 
    209   1.1   mycroft /* the below structure is so we have a default dev struct for our link struct */
    210  1.18    bouyer struct scsipi_device wds_dev = {
    211   1.1   mycroft 	NULL,			/* Use default error handler */
    212   1.1   mycroft 	NULL,			/* have a queue, served by this */
    213   1.1   mycroft 	NULL,			/* have no async handler */
    214   1.1   mycroft 	NULL,			/* Use default 'done' routine */
    215   1.1   mycroft };
    216   1.1   mycroft 
    217   1.1   mycroft int	wdsprobe __P((struct device *, void *, void *));
    218   1.1   mycroft void	wdsattach __P((struct device *, struct device *, void *));
    219   1.1   mycroft 
    220   1.1   mycroft struct cfattach wds_ca = {
    221   1.1   mycroft 	sizeof(struct wds_softc), wdsprobe, wdsattach
    222   1.1   mycroft };
    223   1.1   mycroft 
    224   1.1   mycroft struct cfdriver wds_cd = {
    225   1.1   mycroft 	NULL, "wds", DV_DULL
    226   1.1   mycroft };
    227   1.1   mycroft 
    228   1.1   mycroft #define	WDS_ABORT_TIMEOUT	2000	/* time to wait for abort (mSec) */
    229   1.1   mycroft 
    230  1.19   thorpej /* XXX Should put this in a better place. */
    231  1.19   thorpej #define	offsetof(type, member)	((size_t)(&((type *)0)->member))
    232  1.19   thorpej 
    233   1.1   mycroft integrate void
    234  1.15   mycroft wds_wait(iot, ioh, port, mask, val)
    235  1.15   mycroft 	bus_space_tag_t iot;
    236  1.15   mycroft 	bus_space_handle_t ioh;
    237   1.1   mycroft 	int port;
    238  1.15   mycroft 	int mask, val;
    239   1.1   mycroft {
    240   1.1   mycroft 
    241  1.15   mycroft 	while ((bus_space_read_1(iot, ioh, port) & mask) != val)
    242   1.1   mycroft 		;
    243   1.1   mycroft }
    244   1.1   mycroft 
    245   1.1   mycroft /*
    246   1.1   mycroft  * Write a command to the board's I/O ports.
    247   1.1   mycroft  */
    248   1.1   mycroft int
    249  1.15   mycroft wds_cmd(iot, ioh, ibuf, icnt)
    250  1.15   mycroft 	bus_space_tag_t iot;
    251  1.15   mycroft 	bus_space_handle_t ioh;
    252   1.1   mycroft 	u_char *ibuf;
    253   1.1   mycroft 	int icnt;
    254   1.1   mycroft {
    255   1.1   mycroft 	u_char c;
    256   1.1   mycroft 
    257  1.15   mycroft 	wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
    258   1.1   mycroft 
    259   1.1   mycroft 	while (icnt--) {
    260  1.15   mycroft 		bus_space_write_1(iot, ioh, WDS_CMD, *ibuf++);
    261  1.15   mycroft 		wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
    262  1.15   mycroft 		c = bus_space_read_1(iot, ioh, WDS_STAT);
    263   1.1   mycroft 		if (c & WDSS_REJ)
    264   1.1   mycroft 			return 1;
    265   1.1   mycroft 	}
    266   1.1   mycroft 
    267   1.1   mycroft 	return 0;
    268   1.1   mycroft }
    269   1.1   mycroft 
    270   1.1   mycroft /*
    271   1.1   mycroft  * Check for the presence of a WD7000 SCSI controller.
    272   1.1   mycroft  */
    273   1.1   mycroft int
    274   1.1   mycroft wdsprobe(parent, match, aux)
    275   1.1   mycroft 	struct device *parent;
    276   1.1   mycroft 	void *match, *aux;
    277   1.1   mycroft {
    278  1.15   mycroft 	struct isa_attach_args *ia = aux;
    279  1.15   mycroft 	bus_space_tag_t iot = ia->ia_iot;
    280  1.15   mycroft 	bus_space_handle_t ioh;
    281  1.15   mycroft 	struct wds_probe_data wpd;
    282  1.15   mycroft 	int rv;
    283  1.15   mycroft 
    284  1.15   mycroft 	if (bus_space_map(iot, ia->ia_iobase, WDS_ISA_IOSIZE, 0, &ioh))
    285  1.15   mycroft 		return (0);
    286  1.15   mycroft 
    287  1.15   mycroft 	rv = wds_find(iot, ioh, &wpd);
    288  1.15   mycroft 
    289  1.15   mycroft 	bus_space_unmap(iot, ioh, WDS_ISA_IOSIZE);
    290  1.15   mycroft 
    291  1.15   mycroft 	if (rv) {
    292  1.15   mycroft #ifdef notyet
    293  1.15   mycroft 		if (ia->ia_irq != -1 && ia->ia_irq != wpd.sc_irq)
    294  1.15   mycroft 			return (0);
    295  1.15   mycroft 		if (ia->ia_drq != -1 && ia->ia_drq != wpd.sc_drq)
    296  1.15   mycroft 			return (0);
    297  1.15   mycroft 		ia->ia_irq = wpd.sc_irq;
    298  1.15   mycroft 		ia->ia_drq = wpd.sc_drq;
    299  1.15   mycroft #else
    300  1.15   mycroft 		if (ia->ia_irq == -1)
    301  1.15   mycroft 			return (0);
    302  1.15   mycroft 		if (ia->ia_drq == -1)
    303  1.15   mycroft 			return (0);
    304   1.1   mycroft #endif
    305  1.15   mycroft 		ia->ia_msize = 0;
    306  1.15   mycroft 		ia->ia_iosize = WDS_ISA_IOSIZE;
    307  1.15   mycroft 	}
    308  1.15   mycroft 	return (rv);
    309   1.1   mycroft }
    310   1.1   mycroft 
    311   1.1   mycroft /*
    312   1.1   mycroft  * Attach all available units.
    313   1.1   mycroft  */
    314   1.1   mycroft void
    315   1.1   mycroft wdsattach(parent, self, aux)
    316   1.1   mycroft 	struct device *parent, *self;
    317   1.1   mycroft 	void *aux;
    318   1.1   mycroft {
    319   1.1   mycroft 	struct isa_attach_args *ia = aux;
    320   1.1   mycroft 	struct wds_softc *sc = (void *)self;
    321  1.15   mycroft 	bus_space_tag_t iot = ia->ia_iot;
    322  1.15   mycroft 	bus_space_handle_t ioh;
    323  1.15   mycroft 	struct wds_probe_data wpd;
    324  1.15   mycroft 	isa_chipset_tag_t ic = ia->ia_ic;
    325  1.15   mycroft 
    326  1.15   mycroft 	printf("\n");
    327  1.15   mycroft 
    328  1.15   mycroft 	if (bus_space_map(iot, ia->ia_iobase, WDS_ISA_IOSIZE, 0, &ioh))
    329  1.15   mycroft 		panic("wdsattach: bus_space_map failed");
    330  1.15   mycroft 
    331  1.15   mycroft 	sc->sc_iot = iot;
    332  1.15   mycroft 	sc->sc_ioh = ioh;
    333  1.20   mycroft 	sc->sc_dmat = ia->ia_dmat;
    334  1.15   mycroft 	if (!wds_find(iot, ioh, &wpd))
    335  1.15   mycroft 		panic("wdsattach: wds_find failed");
    336  1.15   mycroft 
    337  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_HCR, WDSH_DRQEN);
    338  1.15   mycroft #ifdef notyet
    339  1.15   mycroft 	if (wpd.sc_drq != -1)
    340  1.17   thorpej 		isa_dmacascade(parent, wpd.sc_drq);
    341  1.15   mycroft 
    342  1.15   mycroft 	sc->sc_ih = isa_intr_establish(ic, wpd.sc_irq, IST_EDGE, IPL_BIO,
    343  1.15   mycroft 	    wdsintr, sc);
    344  1.15   mycroft #else
    345  1.15   mycroft 	if (ia->ia_drq != -1)
    346  1.17   thorpej 		isa_dmacascade(parent, ia->ia_drq);
    347   1.1   mycroft 
    348  1.15   mycroft 	sc->sc_ih = isa_intr_establish(ic, ia->ia_irq, IST_EDGE, IPL_BIO,
    349  1.15   mycroft 	    wdsintr, sc);
    350  1.15   mycroft #endif
    351  1.15   mycroft 	if (sc->sc_ih == NULL) {
    352  1.15   mycroft 		printf("%s: couldn't establish interrupt\n",
    353  1.15   mycroft 		    sc->sc_dev.dv_xname);
    354  1.15   mycroft 		return;
    355  1.15   mycroft 	}
    356   1.1   mycroft 
    357  1.15   mycroft 	wds_attach(sc, &wpd);
    358  1.15   mycroft }
    359  1.13   mycroft 
    360  1.15   mycroft void
    361  1.15   mycroft wds_attach(sc, wpd)
    362  1.15   mycroft 	struct wds_softc *sc;
    363  1.15   mycroft 	struct wds_probe_data *wpd;
    364  1.15   mycroft {
    365   1.1   mycroft 
    366   1.1   mycroft 	TAILQ_INIT(&sc->sc_free_scb);
    367   1.1   mycroft 	TAILQ_INIT(&sc->sc_waiting_scb);
    368  1.19   thorpej 
    369  1.19   thorpej 	wds_init(sc, 0);
    370   1.1   mycroft 	wds_inquire_setup_information(sc);
    371   1.1   mycroft 
    372   1.1   mycroft 	/*
    373  1.19   thorpej 	 * Since DMA memory allocation is always rounded up to a
    374  1.19   thorpej 	 * page size, create some scbs from the leftovers.
    375  1.19   thorpej 	 * Done here since we need the revision number to know
    376  1.19   thorpej 	 * the number of allowed segments per DMA map.
    377  1.19   thorpej 	 */
    378  1.19   thorpej 	if (wds_create_scbs(sc, ((caddr_t)wmbx) +
    379  1.19   thorpej 	    ALIGN(sizeof(struct wds_mbx)),
    380  1.19   thorpej 	    NBPG - ALIGN(sizeof(struct wds_mbx))))
    381  1.19   thorpej 		panic("wds_init: can't create scbs");
    382  1.19   thorpej 
    383  1.19   thorpej 	/*
    384  1.18    bouyer 	 * fill in the prototype scsipi_link.
    385   1.1   mycroft 	 */
    386  1.18    bouyer 	sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
    387   1.1   mycroft 	sc->sc_link.adapter_softc = sc;
    388  1.18    bouyer 	sc->sc_link.scsipi_scsi.adapter_target = wpd->sc_scsi_dev;
    389   1.1   mycroft 	sc->sc_link.adapter = &wds_switch;
    390   1.1   mycroft 	sc->sc_link.device = &wds_dev;
    391   1.1   mycroft 	/* XXX */
    392   1.1   mycroft 	/* I don't think the -ASE can handle openings > 1. */
    393   1.1   mycroft 	/* It gives Vendor Error 26 whenever I try it.     */
    394   1.1   mycroft 	sc->sc_link.openings = 1;
    395  1.18    bouyer 	sc->sc_link.scsipi_scsi.max_target = 7;
    396  1.18    bouyer 	sc->sc_link.type = BUS_SCSI;
    397   1.1   mycroft 
    398   1.1   mycroft 	/*
    399   1.1   mycroft 	 * ask the adapter what subunits are present
    400   1.1   mycroft 	 */
    401  1.15   mycroft 	config_found(&sc->sc_dev, &sc->sc_link, scsiprint);
    402   1.1   mycroft }
    403   1.1   mycroft 
    404   1.1   mycroft integrate void
    405   1.1   mycroft wds_finish_scbs(sc)
    406   1.1   mycroft 	struct wds_softc *sc;
    407   1.1   mycroft {
    408   1.1   mycroft 	struct wds_mbx_in *wmbi;
    409   1.1   mycroft 	struct wds_scb *scb;
    410   1.1   mycroft 	int i;
    411   1.1   mycroft 
    412   1.1   mycroft 	wmbi = wmbx->tmbi;
    413   1.1   mycroft 
    414   1.1   mycroft 	if (wmbi->stat == WDS_MBI_FREE) {
    415   1.1   mycroft 		for (i = 0; i < WDS_MBX_SIZE; i++) {
    416   1.1   mycroft 			if (wmbi->stat != WDS_MBI_FREE) {
    417  1.12  christos 				printf("%s: mbi not in round-robin order\n",
    418   1.1   mycroft 				    sc->sc_dev.dv_xname);
    419   1.1   mycroft 				goto AGAIN;
    420   1.1   mycroft 			}
    421   1.1   mycroft 			wds_nextmbx(wmbi, wmbx, mbi);
    422   1.1   mycroft 		}
    423   1.1   mycroft #ifdef WDSDIAGnot
    424  1.12  christos 		printf("%s: mbi interrupt with no full mailboxes\n",
    425   1.1   mycroft 		    sc->sc_dev.dv_xname);
    426   1.1   mycroft #endif
    427   1.1   mycroft 		return;
    428   1.1   mycroft 	}
    429   1.1   mycroft 
    430   1.1   mycroft AGAIN:
    431   1.1   mycroft 	do {
    432   1.1   mycroft 		scb = wds_scb_phys_kv(sc, phystol(wmbi->scb_addr));
    433   1.1   mycroft 		if (!scb) {
    434  1.12  christos 			printf("%s: bad mbi scb pointer; skipping\n",
    435   1.1   mycroft 			    sc->sc_dev.dv_xname);
    436   1.1   mycroft 			goto next;
    437   1.1   mycroft 		}
    438   1.1   mycroft 
    439   1.1   mycroft #ifdef WDSDEBUG
    440   1.1   mycroft 		if (wds_debug) {
    441  1.18    bouyer 			u_char *cp = &scb->scsipi_cmd;
    442  1.12  christos 			printf("op=%x %x %x %x %x %x\n",
    443   1.1   mycroft 			    cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
    444  1.12  christos 			printf("stat %x for mbi addr = 0x%08x, ",
    445   1.1   mycroft 			    wmbi->stat, wmbi);
    446  1.12  christos 			printf("scb addr = 0x%x\n", scb);
    447   1.1   mycroft 		}
    448   1.1   mycroft #endif /* WDSDEBUG */
    449   1.1   mycroft 
    450   1.1   mycroft 		untimeout(wds_timeout, scb);
    451   1.1   mycroft 		wds_done(sc, scb, wmbi->stat);
    452   1.1   mycroft 
    453   1.1   mycroft 	next:
    454   1.1   mycroft 		wmbi->stat = WDS_MBI_FREE;
    455   1.1   mycroft 		wds_nextmbx(wmbi, wmbx, mbi);
    456   1.1   mycroft 	} while (wmbi->stat != WDS_MBI_FREE);
    457   1.1   mycroft 
    458   1.1   mycroft 	wmbx->tmbi = wmbi;
    459   1.1   mycroft }
    460   1.1   mycroft 
    461   1.1   mycroft /*
    462   1.1   mycroft  * Process an interrupt.
    463   1.1   mycroft  */
    464   1.1   mycroft int
    465   1.1   mycroft wdsintr(arg)
    466   1.1   mycroft 	void *arg;
    467   1.1   mycroft {
    468   1.1   mycroft 	struct wds_softc *sc = arg;
    469  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
    470  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
    471   1.5  christos 	u_char c;
    472   1.1   mycroft 
    473   1.1   mycroft 	/* Was it really an interrupt from the board? */
    474  1.15   mycroft 	if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ) == 0)
    475   1.1   mycroft 		return 0;
    476   1.1   mycroft 
    477   1.1   mycroft 	/* Get the interrupt status byte. */
    478  1.15   mycroft 	c = bus_space_read_1(iot, ioh, WDS_IRQSTAT) & WDSI_MASK;
    479   1.1   mycroft 
    480   1.1   mycroft 	/* Acknowledge (which resets) the interrupt. */
    481  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_IRQACK, 0x00);
    482   1.1   mycroft 
    483   1.1   mycroft 	switch (c) {
    484   1.1   mycroft 	case WDSI_MSVC:
    485   1.1   mycroft 		wds_finish_scbs(sc);
    486   1.1   mycroft 		break;
    487   1.1   mycroft 
    488   1.1   mycroft 	case WDSI_MFREE:
    489   1.1   mycroft 		wds_start_scbs(sc);
    490   1.1   mycroft 		break;
    491   1.1   mycroft 
    492   1.1   mycroft 	default:
    493  1.12  christos 		printf("%s: unrecognized interrupt type %02x",
    494   1.5  christos 		    sc->sc_dev.dv_xname, c);
    495   1.1   mycroft 		break;
    496   1.1   mycroft 	}
    497   1.1   mycroft 
    498   1.1   mycroft 	return 1;
    499   1.1   mycroft }
    500   1.1   mycroft 
    501   1.1   mycroft integrate void
    502   1.1   mycroft wds_reset_scb(sc, scb)
    503   1.1   mycroft 	struct wds_softc *sc;
    504   1.1   mycroft 	struct wds_scb *scb;
    505   1.1   mycroft {
    506   1.1   mycroft 
    507   1.1   mycroft 	scb->flags = 0;
    508   1.1   mycroft }
    509   1.1   mycroft 
    510   1.1   mycroft /*
    511   1.1   mycroft  * Free the command structure, the outgoing mailbox and the data buffer.
    512   1.1   mycroft  */
    513   1.1   mycroft void
    514   1.1   mycroft wds_free_scb(sc, scb)
    515   1.1   mycroft 	struct wds_softc *sc;
    516   1.1   mycroft 	struct wds_scb *scb;
    517   1.1   mycroft {
    518   1.1   mycroft 	int s;
    519   1.1   mycroft 
    520   1.1   mycroft 	s = splbio();
    521   1.1   mycroft 
    522   1.1   mycroft 	wds_reset_scb(sc, scb);
    523   1.1   mycroft 	TAILQ_INSERT_HEAD(&sc->sc_free_scb, scb, chain);
    524   1.1   mycroft 
    525   1.1   mycroft 	/*
    526   1.1   mycroft 	 * If there were none, wake anybody waiting for one to come free,
    527   1.1   mycroft 	 * starting with queued entries.
    528   1.1   mycroft 	 */
    529   1.1   mycroft 	if (scb->chain.tqe_next == 0)
    530   1.1   mycroft 		wakeup(&sc->sc_free_scb);
    531   1.1   mycroft 
    532   1.1   mycroft 	splx(s);
    533   1.1   mycroft }
    534   1.1   mycroft 
    535  1.19   thorpej integrate void
    536  1.19   thorpej wds_init_scb(sc, scb)
    537   1.1   mycroft 	struct wds_softc *sc;
    538  1.19   thorpej 	struct wds_scb *scb;
    539   1.1   mycroft {
    540  1.19   thorpej 	bus_dma_tag_t dmat = sc->sc_dmat;
    541  1.19   thorpej 	int hashnum;
    542   1.1   mycroft 
    543  1.19   thorpej 	/*
    544  1.19   thorpej 	 * XXX Should we put a DIAGNOSTIC check for multiple
    545  1.19   thorpej 	 * XXX SCB inits here?
    546  1.19   thorpej 	 */
    547   1.1   mycroft 
    548  1.19   thorpej 	bzero(scb, sizeof(struct wds_scb));
    549   1.1   mycroft 
    550   1.1   mycroft 	/*
    551  1.19   thorpej 	 * Create DMA maps for this SCB.
    552   1.1   mycroft 	 */
    553  1.19   thorpej 	if (bus_dmamap_create(dmat, sizeof(struct wds_scb), 1,
    554  1.19   thorpej 	    sizeof(struct wds_scb), 0, BUS_DMA_NOWAIT, &scb->dmamap_self) ||
    555   1.1   mycroft 
    556  1.19   thorpej 					/* XXX What's a good value for this? */
    557  1.19   thorpej 	    bus_dmamap_create(dmat, WDS_MAXXFER, WDS_NSEG, WDS_MAXXFER,
    558  1.19   thorpej 	    0, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW, &scb->dmamap_xfer))
    559  1.19   thorpej 		panic("wds_init_scb: can't create DMA maps");
    560   1.1   mycroft 
    561  1.19   thorpej 	/*
    562  1.19   thorpej 	 * Load the permanent DMA maps.
    563  1.19   thorpej 	 */
    564  1.19   thorpej 	if (bus_dmamap_load(dmat, scb->dmamap_self, scb,
    565  1.19   thorpej 	    sizeof(struct wds_scb), NULL, BUS_DMA_NOWAIT))
    566  1.19   thorpej 		panic("wds_init_scb: can't load permanent maps");
    567   1.1   mycroft 
    568   1.1   mycroft 	/*
    569   1.1   mycroft 	 * put in the phystokv hash table
    570   1.1   mycroft 	 * Never gets taken out.
    571   1.1   mycroft 	 */
    572  1.19   thorpej 	scb->hashkey = scb->dmamap_self->dm_segs[0].ds_addr;
    573   1.1   mycroft 	hashnum = SCB_HASH(scb->hashkey);
    574   1.1   mycroft 	scb->nexthash = sc->sc_scbhash[hashnum];
    575   1.1   mycroft 	sc->sc_scbhash[hashnum] = scb;
    576   1.1   mycroft 	wds_reset_scb(sc, scb);
    577   1.1   mycroft }
    578   1.1   mycroft 
    579   1.1   mycroft /*
    580  1.19   thorpej  * Create a set of scbs and add them to the free list.
    581  1.19   thorpej  */
    582  1.19   thorpej int
    583  1.19   thorpej wds_create_scbs(sc, mem, size)
    584  1.19   thorpej 	struct wds_softc *sc;
    585  1.19   thorpej 	void *mem;
    586  1.19   thorpej 	size_t size;
    587  1.19   thorpej {
    588  1.19   thorpej 	bus_dma_segment_t seg;
    589  1.19   thorpej 	struct wds_scb *scb;
    590  1.19   thorpej 	int rseg, error;
    591  1.19   thorpej 
    592  1.19   thorpej 	if (sc->sc_numscbs >= WDS_SCB_MAX)
    593  1.19   thorpej 		return (0);
    594  1.19   thorpej 
    595  1.19   thorpej 	if ((scb = mem) != NULL)
    596  1.19   thorpej 		goto have_mem;
    597  1.19   thorpej 
    598  1.19   thorpej 	size = NBPG;
    599  1.19   thorpej 	error = bus_dmamem_alloc(sc->sc_dmat, size, NBPG, 0, &seg, 1, &rseg,
    600  1.19   thorpej 	    BUS_DMA_NOWAIT);
    601  1.19   thorpej 	if (error)
    602  1.19   thorpej 		return (error);
    603  1.19   thorpej 
    604  1.19   thorpej 	error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, size,
    605  1.19   thorpej 	    (caddr_t *)&scb, BUS_DMA_NOWAIT|BUS_DMAMEM_NOSYNC);
    606  1.19   thorpej 	if (error) {
    607  1.19   thorpej 		bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    608  1.19   thorpej 		return (error);
    609  1.19   thorpej 	}
    610  1.19   thorpej 
    611  1.19   thorpej  have_mem:
    612  1.19   thorpej 	bzero(scb, size);
    613  1.19   thorpej 	while (size > sizeof(struct wds_scb)) {
    614  1.19   thorpej 		wds_init_scb(sc, scb);
    615  1.19   thorpej 		sc->sc_numscbs++;
    616  1.19   thorpej 		if (sc->sc_numscbs >= WDS_SCB_MAX)
    617  1.19   thorpej 			break;
    618  1.19   thorpej 		TAILQ_INSERT_TAIL(&sc->sc_free_scb, scb, chain);
    619  1.19   thorpej 		(caddr_t)scb += ALIGN(sizeof(struct wds_scb));
    620  1.19   thorpej 		size -= ALIGN(sizeof(struct wds_scb));
    621  1.19   thorpej 	}
    622  1.19   thorpej 
    623  1.19   thorpej 	return (0);
    624  1.19   thorpej }
    625  1.19   thorpej 
    626  1.19   thorpej /*
    627   1.1   mycroft  * Get a free scb
    628   1.1   mycroft  *
    629   1.1   mycroft  * If there are none, see if we can allocate a new one.  If so, put it in
    630   1.1   mycroft  * the hash table too otherwise either return an error or sleep.
    631   1.1   mycroft  */
    632   1.1   mycroft struct wds_scb *
    633  1.19   thorpej wds_get_scb(sc, flags)
    634   1.1   mycroft 	struct wds_softc *sc;
    635   1.1   mycroft 	int flags;
    636   1.1   mycroft {
    637   1.1   mycroft 	struct wds_scb *scb;
    638   1.1   mycroft 	int s;
    639   1.1   mycroft 
    640   1.1   mycroft 	s = splbio();
    641   1.1   mycroft 
    642   1.1   mycroft 	/*
    643   1.1   mycroft 	 * If we can and have to, sleep waiting for one to come free
    644   1.1   mycroft 	 * but only if we can't allocate a new one.
    645   1.1   mycroft 	 */
    646   1.1   mycroft 	for (;;) {
    647   1.1   mycroft 		scb = sc->sc_free_scb.tqh_first;
    648   1.1   mycroft 		if (scb) {
    649   1.1   mycroft 			TAILQ_REMOVE(&sc->sc_free_scb, scb, chain);
    650   1.1   mycroft 			break;
    651   1.1   mycroft 		}
    652   1.1   mycroft 		if (sc->sc_numscbs < WDS_SCB_MAX) {
    653  1.19   thorpej 			if (wds_create_scbs(sc, NULL, 0)) {
    654  1.19   thorpej 				printf("%s: can't allocate scbs\n",
    655   1.1   mycroft 				    sc->sc_dev.dv_xname);
    656   1.1   mycroft 				goto out;
    657   1.1   mycroft 			}
    658  1.19   thorpej 			continue;
    659   1.1   mycroft 		}
    660   1.1   mycroft 		if ((flags & SCSI_NOSLEEP) != 0)
    661   1.1   mycroft 			goto out;
    662   1.1   mycroft 		tsleep(&sc->sc_free_scb, PRIBIO, "wdsscb", 0);
    663   1.1   mycroft 	}
    664   1.1   mycroft 
    665   1.1   mycroft 	scb->flags |= SCB_ALLOC;
    666   1.1   mycroft 
    667   1.1   mycroft out:
    668   1.1   mycroft 	splx(s);
    669   1.1   mycroft 	return (scb);
    670   1.1   mycroft }
    671   1.1   mycroft 
    672   1.1   mycroft struct wds_scb *
    673   1.1   mycroft wds_scb_phys_kv(sc, scb_phys)
    674   1.1   mycroft 	struct wds_softc *sc;
    675   1.1   mycroft 	u_long scb_phys;
    676   1.1   mycroft {
    677   1.1   mycroft 	int hashnum = SCB_HASH(scb_phys);
    678   1.1   mycroft 	struct wds_scb *scb = sc->sc_scbhash[hashnum];
    679   1.1   mycroft 
    680   1.1   mycroft 	while (scb) {
    681   1.1   mycroft 		if (scb->hashkey == scb_phys)
    682   1.1   mycroft 			break;
    683   1.1   mycroft 		/* XXX Check to see if it matches the sense command block. */
    684   1.1   mycroft 		if (scb->hashkey == (scb_phys - sizeof(struct wds_cmd)))
    685   1.1   mycroft 			break;
    686   1.1   mycroft 		scb = scb->nexthash;
    687   1.1   mycroft 	}
    688   1.1   mycroft 	return scb;
    689   1.1   mycroft }
    690   1.1   mycroft 
    691   1.1   mycroft /*
    692   1.1   mycroft  * Queue a SCB to be sent to the controller, and send it if possible.
    693   1.1   mycroft  */
    694   1.1   mycroft void
    695   1.1   mycroft wds_queue_scb(sc, scb)
    696   1.1   mycroft 	struct wds_softc *sc;
    697   1.1   mycroft 	struct wds_scb *scb;
    698   1.1   mycroft {
    699   1.1   mycroft 
    700   1.1   mycroft 	TAILQ_INSERT_TAIL(&sc->sc_waiting_scb, scb, chain);
    701   1.1   mycroft 	wds_start_scbs(sc);
    702   1.1   mycroft }
    703   1.1   mycroft 
    704   1.1   mycroft /*
    705   1.1   mycroft  * Garbage collect mailboxes that are no longer in use.
    706   1.1   mycroft  */
    707   1.1   mycroft void
    708   1.1   mycroft wds_collect_mbo(sc)
    709   1.1   mycroft 	struct wds_softc *sc;
    710   1.1   mycroft {
    711   1.1   mycroft 	struct wds_mbx_out *wmbo;	/* Mail Box Out pointer */
    712  1.11  christos #ifdef WDSDIAG
    713   1.1   mycroft 	struct wds_scb *scb;
    714  1.11  christos #endif
    715   1.1   mycroft 
    716   1.1   mycroft 	wmbo = wmbx->cmbo;
    717   1.1   mycroft 
    718   1.1   mycroft 	while (sc->sc_mbofull > 0) {
    719   1.1   mycroft 		if (wmbo->cmd != WDS_MBO_FREE)
    720   1.1   mycroft 			break;
    721   1.1   mycroft 
    722   1.1   mycroft #ifdef WDSDIAG
    723   1.1   mycroft 		scb = wds_scb_phys_kv(sc, phystol(wmbo->scb_addr));
    724   1.1   mycroft 		scb->flags &= ~SCB_SENDING;
    725   1.1   mycroft #endif
    726   1.1   mycroft 
    727   1.1   mycroft 		--sc->sc_mbofull;
    728   1.1   mycroft 		wds_nextmbx(wmbo, wmbx, mbo);
    729   1.1   mycroft 	}
    730   1.1   mycroft 
    731   1.1   mycroft 	wmbx->cmbo = wmbo;
    732   1.1   mycroft }
    733   1.1   mycroft 
    734   1.1   mycroft /*
    735   1.1   mycroft  * Send as many SCBs as we have empty mailboxes for.
    736   1.1   mycroft  */
    737   1.1   mycroft void
    738   1.1   mycroft wds_start_scbs(sc)
    739   1.1   mycroft 	struct wds_softc *sc;
    740   1.1   mycroft {
    741  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
    742  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
    743   1.1   mycroft 	struct wds_mbx_out *wmbo;	/* Mail Box Out pointer */
    744   1.1   mycroft 	struct wds_scb *scb;
    745   1.1   mycroft 	u_char c;
    746   1.1   mycroft 
    747   1.1   mycroft 	wmbo = wmbx->tmbo;
    748   1.1   mycroft 
    749   1.5  christos 	while ((scb = sc->sc_waiting_scb.tqh_first) != NULL) {
    750   1.1   mycroft 		if (sc->sc_mbofull >= WDS_MBX_SIZE) {
    751   1.1   mycroft 			wds_collect_mbo(sc);
    752   1.1   mycroft 			if (sc->sc_mbofull >= WDS_MBX_SIZE) {
    753   1.1   mycroft 				c = WDSC_IRQMFREE;
    754  1.15   mycroft 				wds_cmd(iot, ioh, &c, sizeof c);
    755   1.1   mycroft 				break;
    756   1.1   mycroft 			}
    757   1.1   mycroft 		}
    758   1.1   mycroft 
    759   1.1   mycroft 		TAILQ_REMOVE(&sc->sc_waiting_scb, scb, chain);
    760   1.1   mycroft #ifdef WDSDIAG
    761   1.1   mycroft 		scb->flags |= SCB_SENDING;
    762   1.1   mycroft #endif
    763   1.1   mycroft 
    764   1.1   mycroft 		/* Link scb to mbo. */
    765   1.1   mycroft 		if (scb->flags & SCB_SENSE)
    766  1.19   thorpej 			ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
    767  1.19   thorpej 			    offsetof(struct wds_scb, sense), wmbo->scb_addr);
    768   1.1   mycroft 		else
    769  1.19   thorpej 			ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
    770  1.19   thorpej 			    offsetof(struct wds_scb, cmd), wmbo->scb_addr);
    771   1.1   mycroft 		/* XXX What about aborts? */
    772   1.1   mycroft 		wmbo->cmd = WDS_MBO_START;
    773   1.1   mycroft 
    774   1.1   mycroft 		/* Tell the card to poll immediately. */
    775   1.1   mycroft 		c = WDSC_MSTART(wmbo - wmbx->mbo);
    776  1.15   mycroft 		wds_cmd(sc->sc_iot, sc->sc_ioh, &c, sizeof c);
    777   1.1   mycroft 
    778   1.1   mycroft 		if ((scb->flags & SCB_POLLED) == 0)
    779   1.1   mycroft 			timeout(wds_timeout, scb, (scb->timeout * hz) / 1000);
    780   1.1   mycroft 
    781   1.1   mycroft 		++sc->sc_mbofull;
    782   1.1   mycroft 		wds_nextmbx(wmbo, wmbx, mbo);
    783   1.1   mycroft 	}
    784   1.1   mycroft 
    785   1.1   mycroft 	wmbx->tmbo = wmbo;
    786   1.1   mycroft }
    787   1.1   mycroft 
    788   1.1   mycroft /*
    789   1.1   mycroft  * Process the result of a SCSI command.
    790   1.1   mycroft  */
    791   1.1   mycroft void
    792   1.1   mycroft wds_done(sc, scb, stat)
    793   1.1   mycroft 	struct wds_softc *sc;
    794   1.1   mycroft 	struct wds_scb *scb;
    795   1.1   mycroft 	u_char stat;
    796   1.1   mycroft {
    797  1.19   thorpej 	bus_dma_tag_t dmat = sc->sc_dmat;
    798  1.18    bouyer 	struct scsipi_xfer *xs = scb->xs;
    799   1.1   mycroft 
    800   1.1   mycroft 	/* XXXXX */
    801   1.1   mycroft 
    802   1.1   mycroft 	/* Don't release the SCB if it was an internal command. */
    803   1.1   mycroft 	if (xs == 0) {
    804   1.1   mycroft 		scb->flags |= SCB_DONE;
    805   1.1   mycroft 		return;
    806   1.1   mycroft 	}
    807   1.1   mycroft 
    808   1.1   mycroft 	/* Sense handling. */
    809   1.1   mycroft 	if (xs->error == XS_SENSE) {
    810  1.18    bouyer 		bcopy(&scb->sense_data, &xs->sense.scsi_sense,
    811  1.18    bouyer 			sizeof (struct scsipi_sense_data));
    812   1.1   mycroft 	} else {
    813  1.19   thorpej 		/*
    814  1.19   thorpej 		 * If we were a data transfer, unload the map that described
    815  1.19   thorpej 		 * the data buffer.
    816  1.19   thorpej 		 */
    817  1.19   thorpej 		if (xs->datalen) {
    818  1.19   thorpej 			bus_dmamap_sync(dmat, scb->dmamap_xfer,
    819  1.19   thorpej 			    (xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_POSTREAD :
    820  1.19   thorpej 			    BUS_DMASYNC_POSTWRITE);
    821  1.19   thorpej 			bus_dmamap_unload(dmat, scb->dmamap_xfer);
    822  1.19   thorpej 		}
    823   1.1   mycroft 		if (xs->error == XS_NOERROR) {
    824   1.1   mycroft 			/* If all went well, or an error is acceptable. */
    825   1.1   mycroft 			if (stat == WDS_MBI_OK) {
    826   1.1   mycroft 				/* OK, set the result */
    827   1.1   mycroft 				xs->resid = 0;
    828   1.1   mycroft 			} else {
    829   1.1   mycroft 				/* Check the mailbox status. */
    830   1.1   mycroft 				switch (stat) {
    831   1.1   mycroft 				case WDS_MBI_OKERR:
    832  1.19   thorpej 					/*
    833  1.19   thorpej 					 * SCSI error recorded in scb,
    834  1.19   thorpej 					 * counts as WDS_MBI_OK
    835  1.19   thorpej 					 */
    836   1.1   mycroft 					switch (scb->cmd.venderr) {
    837   1.1   mycroft 					case 0x00:
    838  1.19   thorpej 						printf("%s: Is this "
    839  1.19   thorpej 						    "an error?\n",
    840  1.19   thorpej 						    sc->sc_dev.dv_xname);
    841  1.19   thorpej 						/* Experiment. */
    842  1.19   thorpej 						xs->error = XS_DRIVER_STUFFUP;
    843   1.1   mycroft 						break;
    844   1.1   mycroft 					case 0x01:
    845  1.19   thorpej #if 0
    846  1.19   thorpej 						printf("%s: OK, see SCSI "
    847  1.19   thorpej 						    "error field.\n",
    848  1.19   thorpej 						    sc->sc_dev.dv_xname);
    849  1.19   thorpej #endif
    850  1.19   thorpej 						if (scb->cmd.stat ==
    851  1.19   thorpej 						    SCSI_CHECK) {
    852   1.1   mycroft 							/* Do sense. */
    853  1.19   thorpej 							wds_sense(sc, scb);
    854   1.1   mycroft 							return;
    855  1.19   thorpej 						} else if (scb->cmd.stat ==
    856  1.19   thorpej 						    SCSI_BUSY) {
    857   1.1   mycroft 							xs->error = XS_BUSY;
    858   1.1   mycroft 						}
    859   1.1   mycroft 						break;
    860   1.1   mycroft 					case 0x40:
    861  1.19   thorpej #if 0
    862  1.19   thorpej 						printf("%s: DMA underrun!\n",
    863  1.19   thorpej 						    sc->sc_dev.dv_xname);
    864  1.19   thorpej #endif
    865  1.19   thorpej 						/*
    866  1.19   thorpej 						 * Hits this if the target
    867  1.19   thorpej 						 * returns fewer that datalen
    868  1.19   thorpej 						 * bytes (eg my CD-ROM, which
    869  1.19   thorpej 						 * returns a short version
    870  1.19   thorpej 						 * string, or if DMA is
    871  1.19   thorpej 						 * turned off etc.
    872  1.19   thorpej 						 */
    873   1.1   mycroft 						xs->resid = 0;
    874   1.1   mycroft 						break;
    875   1.1   mycroft 					default:
    876  1.19   thorpej 						printf("%s: VENDOR ERROR "
    877  1.19   thorpej 						    "%02x, scsi %02x\n",
    878  1.19   thorpej 						    sc->sc_dev.dv_xname,
    879  1.19   thorpej 						    scb->cmd.venderr,
    880  1.19   thorpej 						    scb->cmd.stat);
    881  1.19   thorpej 						/* Experiment. */
    882  1.19   thorpej 						xs->error = XS_DRIVER_STUFFUP;
    883   1.1   mycroft 						break;
    884   1.1   mycroft 					}
    885   1.1   mycroft 					break;
    886   1.1   mycroft 				case WDS_MBI_ETIME:
    887   1.1   mycroft 					/*
    888   1.1   mycroft 					 * The documentation isn't clear on
    889   1.1   mycroft 					 * what conditions might generate this,
    890   1.1   mycroft 					 * but selection timeouts are the only
    891   1.1   mycroft 					 * one I can think of.
    892   1.1   mycroft 					 */
    893   1.1   mycroft 					xs->error = XS_SELTIMEOUT;
    894   1.1   mycroft 					break;
    895   1.1   mycroft 				case WDS_MBI_ERESET:
    896   1.1   mycroft 				case WDS_MBI_ETARCMD:
    897   1.1   mycroft 				case WDS_MBI_ERESEL:
    898   1.1   mycroft 				case WDS_MBI_ESEL:
    899   1.1   mycroft 				case WDS_MBI_EABORT:
    900   1.1   mycroft 				case WDS_MBI_ESRESET:
    901   1.1   mycroft 				case WDS_MBI_EHRESET:
    902   1.1   mycroft 					xs->error = XS_DRIVER_STUFFUP;
    903   1.1   mycroft 					break;
    904   1.1   mycroft 				}
    905   1.1   mycroft 			}
    906   1.1   mycroft 		} /* else sense */
    907   1.1   mycroft 	} /* XS_NOERROR */
    908   1.1   mycroft 
    909   1.1   mycroft 	wds_free_scb(sc, scb);
    910   1.1   mycroft 	xs->flags |= ITSDONE;
    911  1.18    bouyer 	scsipi_done(xs);
    912   1.1   mycroft }
    913   1.1   mycroft 
    914   1.1   mycroft int
    915  1.15   mycroft wds_find(iot, ioh, sc)
    916  1.15   mycroft 	bus_space_tag_t iot;
    917  1.15   mycroft 	bus_space_handle_t ioh;
    918  1.15   mycroft 	struct wds_probe_data *sc;
    919   1.1   mycroft {
    920   1.1   mycroft 	int i;
    921   1.1   mycroft 
    922   1.1   mycroft 	/* XXXXX */
    923   1.1   mycroft 
    924   1.1   mycroft 	/*
    925   1.1   mycroft 	 * Sending a command causes the CMDRDY bit to clear.
    926   1.1   mycroft  	 */
    927  1.15   mycroft 	for (i = 5; i; i--) {
    928  1.15   mycroft 		if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
    929  1.15   mycroft 			break;
    930  1.15   mycroft 		delay(100);
    931   1.1   mycroft 	}
    932  1.15   mycroft 	if (!i)
    933  1.16      marc 		return 0;
    934   1.1   mycroft 
    935  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_CMD, WDSC_NOOP);
    936  1.15   mycroft 	if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
    937  1.16      marc 		return 0;
    938   1.1   mycroft 
    939  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_HCR, WDSH_SCSIRESET|WDSH_ASCRESET);
    940   1.1   mycroft 	delay(10000);
    941  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_HCR, 0x00);
    942   1.1   mycroft 	delay(500000);
    943  1.15   mycroft 	wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
    944  1.15   mycroft 	if (bus_space_read_1(iot, ioh, WDS_IRQSTAT) != 1)
    945  1.15   mycroft 		if (bus_space_read_1(iot, ioh, WDS_IRQSTAT) != 7)
    946  1.16      marc 			return 0;
    947  1.15   mycroft 
    948  1.15   mycroft 	for (i = 2000; i; i--) {
    949  1.15   mycroft 		if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
    950  1.15   mycroft 			break;
    951  1.15   mycroft 		delay(100);
    952   1.1   mycroft 	}
    953  1.15   mycroft 	if (!i)
    954  1.16      marc 		return 0;
    955   1.1   mycroft 
    956  1.15   mycroft 	if (sc) {
    957  1.15   mycroft #ifdef notyet
    958  1.15   mycroft 		sc->sc_irq = ...;
    959  1.15   mycroft 		sc->sc_drq = ...;
    960  1.15   mycroft #endif
    961   1.1   mycroft 		/* XXX Can we do this better? */
    962   1.1   mycroft 		sc->sc_scsi_dev = 7;
    963   1.1   mycroft 	}
    964   1.1   mycroft 
    965  1.16      marc 	return 1;
    966   1.1   mycroft }
    967   1.1   mycroft 
    968   1.1   mycroft /*
    969   1.1   mycroft  * Initialise the board and driver.
    970   1.1   mycroft  */
    971   1.1   mycroft void
    972  1.19   thorpej wds_init(sc, isreset)
    973   1.1   mycroft 	struct wds_softc *sc;
    974  1.19   thorpej 	int isreset;
    975   1.1   mycroft {
    976  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
    977  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
    978  1.19   thorpej 	bus_dma_segment_t seg;
    979   1.1   mycroft 	struct wds_setup init;
    980   1.1   mycroft 	u_char c;
    981  1.19   thorpej 	int i, rseg;
    982  1.19   thorpej 
    983  1.19   thorpej 	if (isreset)
    984  1.19   thorpej 		goto doinit;
    985  1.19   thorpej 
    986  1.19   thorpej 	/*
    987  1.19   thorpej 	 * Allocate the mailbox.
    988  1.19   thorpej 	 */
    989  1.19   thorpej 	if (bus_dmamem_alloc(sc->sc_dmat, NBPG, NBPG, 0, &seg, 1,
    990  1.19   thorpej 	    &rseg, BUS_DMA_NOWAIT) ||
    991  1.19   thorpej 	    bus_dmamem_map(sc->sc_dmat, &seg, rseg, NBPG,
    992  1.19   thorpej 	    (caddr_t *)&wmbx, BUS_DMA_NOWAIT|BUS_DMAMEM_NOSYNC))
    993  1.19   thorpej 		panic("wds_init: can't create or map mailbox");
    994  1.19   thorpej 
    995  1.19   thorpej 
    996  1.19   thorpej 	/*
    997  1.19   thorpej 	 * Create and load the mailbox DMA map.
    998  1.19   thorpej 	 */
    999  1.19   thorpej 	if (bus_dmamap_create(sc->sc_dmat, sizeof(struct wds_mbx), 1,
   1000  1.19   thorpej 	    sizeof(struct wds_mbx), 0, BUS_DMA_NOWAIT, &sc->sc_dmamap_mbox) ||
   1001  1.19   thorpej 	    bus_dmamap_load(sc->sc_dmat, sc->sc_dmamap_mbox, wmbx,
   1002  1.19   thorpej 	    sizeof(struct wds_mbx), NULL, BUS_DMA_NOWAIT))
   1003  1.19   thorpej 		panic("wds_ionit: can't craete or load mailbox dma map");
   1004   1.1   mycroft 
   1005  1.19   thorpej  doinit:
   1006   1.1   mycroft 	/*
   1007   1.1   mycroft 	 * Set up initial mail box for round-robin operation.
   1008   1.1   mycroft 	 */
   1009   1.1   mycroft 	for (i = 0; i < WDS_MBX_SIZE; i++) {
   1010   1.1   mycroft 		wmbx->mbo[i].cmd = WDS_MBO_FREE;
   1011   1.6   mycroft 		wmbx->mbi[i].stat = WDS_MBI_FREE;
   1012   1.1   mycroft 	}
   1013   1.1   mycroft 	wmbx->cmbo = wmbx->tmbo = &wmbx->mbo[0];
   1014   1.1   mycroft 	wmbx->tmbi = &wmbx->mbi[0];
   1015   1.1   mycroft 	sc->sc_mbofull = 0;
   1016   1.1   mycroft 
   1017   1.1   mycroft 	init.opcode = WDSC_INIT;
   1018  1.18    bouyer 	init.scsi_id = sc->sc_link.scsipi_scsi.adapter_target;
   1019   1.1   mycroft 	init.buson_t = 48;
   1020   1.1   mycroft 	init.busoff_t = 24;
   1021   1.1   mycroft 	init.xx = 0;
   1022  1.19   thorpej 	ltophys(sc->sc_dmamap_mbox->dm_segs[0].ds_addr, init.mbaddr);
   1023   1.1   mycroft 	init.nomb = init.nimb = WDS_MBX_SIZE;
   1024  1.15   mycroft 	wds_cmd(iot, ioh, (u_char *)&init, sizeof init);
   1025   1.1   mycroft 
   1026  1.15   mycroft 	wds_wait(iot, ioh, WDS_STAT, WDSS_INIT, WDSS_INIT);
   1027   1.1   mycroft 
   1028   1.1   mycroft 	c = WDSC_DISUNSOL;
   1029  1.15   mycroft 	wds_cmd(iot, ioh, &c, sizeof c);
   1030   1.1   mycroft }
   1031   1.1   mycroft 
   1032   1.1   mycroft /*
   1033   1.1   mycroft  * Read the board's firmware revision information.
   1034   1.1   mycroft  */
   1035   1.1   mycroft void
   1036   1.1   mycroft wds_inquire_setup_information(sc)
   1037   1.1   mycroft 	struct wds_softc *sc;
   1038   1.1   mycroft {
   1039  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
   1040  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
   1041   1.1   mycroft 	struct wds_scb *scb;
   1042   1.1   mycroft 	u_char *j;
   1043   1.1   mycroft 	int s;
   1044   1.1   mycroft 
   1045  1.19   thorpej 	/* XXX EVIL KLUDGE HERE!
   1046  1.19   thorpej 	 * So, we have a slight chicken-egg problem... we need the
   1047  1.19   thorpej 	 * board revision to determine the number of segments
   1048  1.19   thorpej 	 * an scb's DMA map can map.  But we need an scb to get
   1049  1.19   thorpej 	 * that information.
   1050  1.19   thorpej 	 *
   1051  1.19   thorpej 	 * So, here is what we do... We know that we are called
   1052  1.19   thorpej 	 * before the initial set of scbs are created with the
   1053  1.19   thorpej 	 * mailbox leftovers (see wds_attach()).  This means that
   1054  1.19   thorpej 	 * there are still leftovers to play with.  So, we manually
   1055  1.19   thorpej 	 * create an scb here, create a DMA map for it (with one
   1056  1.19   thorpej 	 * segment that is large enough to get the setup info),
   1057  1.19   thorpej 	 * and then destroy the DMA map.  The scb will be recycled
   1058  1.19   thorpej 	 * when the initial set is created in wds_attach().
   1059  1.19   thorpej 	 *
   1060  1.19   thorpej 	 * Geez, I really hate hardware like this.
   1061  1.19   thorpej 	 */
   1062  1.19   thorpej 
   1063  1.19   thorpej 	sc->sc_maxsegs = 1;
   1064  1.19   thorpej 	scb = (struct wds_scb *)
   1065  1.19   thorpej 	    ((caddr_t)wmbx) + ALIGN(sizeof(struct wds_mbx));
   1066  1.19   thorpej 	wds_init_scb(sc, scb);
   1067  1.19   thorpej 
   1068   1.1   mycroft 	scb->xs = NULL;
   1069   1.1   mycroft 	scb->timeout = 40;
   1070   1.1   mycroft 
   1071   1.1   mycroft 	bzero(&scb->cmd, sizeof scb->cmd);
   1072   1.1   mycroft 	scb->cmd.write = 0x80;
   1073   1.1   mycroft 	scb->cmd.opcode = WDSX_GETFIRMREV;
   1074   1.1   mycroft 
   1075   1.1   mycroft 	/* Will poll card, await result. */
   1076  1.15   mycroft 	bus_space_write_1(iot, ioh, WDS_HCR, WDSH_DRQEN);
   1077   1.1   mycroft 	scb->flags |= SCB_POLLED;
   1078   1.1   mycroft 
   1079   1.1   mycroft 	s = splbio();
   1080   1.1   mycroft 	wds_queue_scb(sc, scb);
   1081   1.1   mycroft 	splx(s);
   1082   1.1   mycroft 
   1083   1.1   mycroft 	if (wds_ipoll(sc, scb, scb->timeout))
   1084   1.1   mycroft 		goto out;
   1085   1.1   mycroft 
   1086   1.1   mycroft 	/* Print the version number. */
   1087  1.12  christos 	printf(": version %x.%02x ", scb->cmd.targ, scb->cmd.scb.opcode);
   1088   1.1   mycroft 	sc->sc_revision = (scb->cmd.targ << 8) | scb->cmd.scb.opcode;
   1089   1.1   mycroft 	/* Print out the version string. */
   1090   1.1   mycroft 	j = 2 + &(scb->cmd.targ);
   1091   1.1   mycroft 	while ((*j >= 32) && (*j < 128)) {
   1092  1.12  christos 		printf("%c", *j);
   1093   1.1   mycroft 		j++;
   1094   1.1   mycroft 	}
   1095   1.1   mycroft 
   1096  1.19   thorpej 	/*
   1097  1.19   thorpej 	 * Determine if we can use scatter/gather.
   1098  1.19   thorpej 	 */
   1099  1.19   thorpej 	if (sc->sc_revision >= 0x800)
   1100  1.19   thorpej 		sc->sc_maxsegs = WDS_NSEG;
   1101  1.19   thorpej 
   1102   1.1   mycroft out:
   1103  1.12  christos 	printf("\n");
   1104  1.19   thorpej 
   1105  1.19   thorpej 	/*
   1106  1.19   thorpej 	 * Free up the resources used by this scb.
   1107  1.19   thorpej 	 */
   1108  1.19   thorpej 	bus_dmamap_unload(sc->sc_dmat, scb->dmamap_self);
   1109  1.19   thorpej 	bus_dmamap_destroy(sc->sc_dmat, scb->dmamap_self);
   1110  1.19   thorpej 
   1111  1.19   thorpej 	/*
   1112  1.19   thorpej 	 * Clear the scb hash table, as if we were never here.
   1113  1.19   thorpej 	 */
   1114  1.19   thorpej 	bzero(sc->sc_scbhash, sizeof(sc->sc_scbhash));
   1115   1.1   mycroft }
   1116   1.1   mycroft 
   1117   1.1   mycroft void
   1118   1.1   mycroft wdsminphys(bp)
   1119   1.1   mycroft 	struct buf *bp;
   1120   1.1   mycroft {
   1121   1.1   mycroft 
   1122  1.19   thorpej 	if (bp->b_bcount > WDS_MAXXFER)
   1123  1.19   thorpej 		bp->b_bcount = WDS_MAXXFER;
   1124   1.1   mycroft 	minphys(bp);
   1125   1.1   mycroft }
   1126   1.1   mycroft 
   1127   1.1   mycroft /*
   1128   1.1   mycroft  * Send a SCSI command.
   1129   1.1   mycroft  */
   1130   1.1   mycroft int
   1131   1.1   mycroft wds_scsi_cmd(xs)
   1132  1.18    bouyer 	struct scsipi_xfer *xs;
   1133   1.1   mycroft {
   1134  1.18    bouyer 	struct scsipi_link *sc_link = xs->sc_link;
   1135   1.1   mycroft 	struct wds_softc *sc = sc_link->adapter_softc;
   1136  1.19   thorpej 	bus_dma_tag_t dmat = sc->sc_dmat;
   1137   1.1   mycroft 	struct wds_scb *scb;
   1138   1.1   mycroft 	struct wds_scat_gath *sg;
   1139  1.19   thorpej 	int error, seg, flags, s;
   1140   1.5  christos #ifdef TFS
   1141   1.1   mycroft 	struct iovec *iovp;
   1142   1.5  christos #endif
   1143   1.1   mycroft 
   1144   1.1   mycroft 	if (xs->flags & SCSI_RESET) {
   1145   1.1   mycroft 		/* XXX Fix me! */
   1146  1.12  christos 		printf("%s: reset!\n", sc->sc_dev.dv_xname);
   1147  1.19   thorpej 		wds_init(sc, 1);
   1148   1.1   mycroft 		return COMPLETE;
   1149   1.1   mycroft 	}
   1150   1.1   mycroft 
   1151   1.1   mycroft 	flags = xs->flags;
   1152  1.19   thorpej 	if ((scb = wds_get_scb(sc, flags)) == NULL) {
   1153   1.1   mycroft 		xs->error = XS_DRIVER_STUFFUP;
   1154   1.1   mycroft 		return TRY_AGAIN_LATER;
   1155   1.1   mycroft 	}
   1156   1.1   mycroft 	scb->xs = xs;
   1157   1.1   mycroft 	scb->timeout = xs->timeout;
   1158   1.1   mycroft 
   1159   1.1   mycroft 	if (xs->flags & SCSI_DATA_UIO) {
   1160   1.1   mycroft 		/* XXX Fix me! */
   1161   1.1   mycroft 		/* Let's not worry about UIO. There isn't any code for the *
   1162   1.1   mycroft 		 * non-SG boards anyway! */
   1163  1.19   thorpej 		printf("%s: UIO is untested and disabled!\n",
   1164  1.19   thorpej 		    sc->sc_dev.dv_xname);
   1165   1.1   mycroft 		goto bad;
   1166   1.1   mycroft 	}
   1167   1.1   mycroft 
   1168   1.1   mycroft 	/* Zero out the command structure. */
   1169   1.1   mycroft 	bzero(&scb->cmd, sizeof scb->cmd);
   1170   1.1   mycroft 	bcopy(xs->cmd, &scb->cmd.scb, xs->cmdlen < 12 ? xs->cmdlen : 12);
   1171   1.1   mycroft 
   1172   1.1   mycroft 	/* Set up some of the command fields. */
   1173  1.18    bouyer 	scb->cmd.targ = (xs->sc_link->scsipi_scsi.target << 5) |
   1174  1.18    bouyer 						xs->sc_link->scsipi_scsi.lun;
   1175   1.1   mycroft 
   1176   1.1   mycroft 	/* NOTE: cmd.write may be OK as 0x40 (disable direction checking)
   1177   1.1   mycroft 	 * on boards other than the WD-7000V-ASE. Need this for the ASE:
   1178   1.1   mycroft  	 */
   1179   1.1   mycroft 	scb->cmd.write = (xs->flags & SCSI_DATA_IN) ? 0x80 : 0x00;
   1180   1.1   mycroft 
   1181  1.19   thorpej 	if (xs->datalen) {
   1182   1.1   mycroft 		sg = scb->scat_gath;
   1183   1.1   mycroft 		seg = 0;
   1184   1.1   mycroft #ifdef TFS
   1185   1.1   mycroft 		if (flags & SCSI_DATA_UIO) {
   1186  1.19   thorpej 			error = bus_Dmamap_load_uio(dmat,
   1187  1.19   thorpej 			    scb->dmamap_xfer, (struct uio *)xs->data,
   1188  1.19   thorpej 			    (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
   1189  1.19   thorpej 			    BUS_DMA_WAITOK);
   1190   1.1   mycroft 		} else
   1191   1.1   mycroft #endif /* TFS */
   1192   1.1   mycroft 		{
   1193  1.19   thorpej 			error = bus_dmamap_load(dmat,
   1194  1.19   thorpej 			    scb->dmamap_xfer, xs->data, xs->datalen, NULL,
   1195  1.19   thorpej 			    (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
   1196  1.19   thorpej 			    BUS_DMA_WAITOK);
   1197  1.19   thorpej 		}
   1198   1.1   mycroft 
   1199  1.19   thorpej 		if (error) {
   1200  1.19   thorpej 			if (error == EFBIG) {
   1201  1.19   thorpej 				printf("%s: wds_scsi_cmd, more than %d"
   1202  1.19   thorpej 				    " dma segments\n",
   1203  1.19   thorpej 				    sc->sc_dev.dv_xname, sc->sc_maxsegs);
   1204  1.19   thorpej 			} else {
   1205  1.19   thorpej 				printf("%s: wds_scsi_cmd, error %d loading"
   1206  1.19   thorpej 				    " dma map\n",
   1207  1.19   thorpej 				    sc->sc_dev.dv_xname, error);
   1208  1.19   thorpej 			}
   1209  1.19   thorpej 			goto bad;
   1210  1.19   thorpej 		}
   1211   1.1   mycroft 
   1212  1.19   thorpej 		bus_dmamap_sync(dmat, scb->dmamap_xfer,
   1213  1.19   thorpej 		    (flags & SCSI_DATA_IN) ? BUS_DMASYNC_PREREAD :
   1214  1.19   thorpej 		    BUS_DMASYNC_PREWRITE);
   1215   1.1   mycroft 
   1216  1.19   thorpej 		if (sc->sc_maxsegs > 1) {
   1217  1.19   thorpej 			/*
   1218  1.19   thorpej 			 * Load the hardware scatter/gather map with the
   1219  1.19   thorpej 			 * contents of the DMA map.
   1220  1.19   thorpej 			 */
   1221  1.19   thorpej 			for (seg = 0; seg < scb->dmamap_xfer->dm_nsegs;
   1222  1.19   thorpej 			    seg++) {
   1223  1.19   thorpej 				ltophys(scb->dmamap_xfer->dm_segs[seg].ds_addr,
   1224  1.19   thorpej 				    scb->scat_gath[seg].seg_addr);
   1225  1.19   thorpej 				ltophys(scb->dmamap_xfer->dm_segs[seg].ds_len,
   1226  1.19   thorpej 				    scb->scat_gath[seg].seg_len);
   1227  1.19   thorpej 			}
   1228   1.1   mycroft 
   1229   1.1   mycroft 			/*
   1230  1.19   thorpej 			 * Set up for scatter/gather transfer.
   1231  1.19   thorpej 			 */
   1232  1.19   thorpej 			scb->cmd.opcode = WDSX_SCSISG;
   1233  1.19   thorpej 			ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
   1234  1.19   thorpej 			    offsetof(struct wds_scb, scat_gath),
   1235  1.19   thorpej 			    scb->cmd.data);
   1236  1.19   thorpej 			ltophys(scb->dmamap_self->dm_nsegs *
   1237  1.19   thorpej 			    sizeof(struct wds_scat_gath), scb->cmd.len);
   1238  1.19   thorpej 		} else {
   1239  1.19   thorpej 			/*
   1240  1.19   thorpej 			 * This board is an ASC or an ASE, and the
   1241  1.19   thorpej 			 * transfer has been mapped contig for us.
   1242   1.1   mycroft 			 */
   1243  1.19   thorpej 			scb->cmd.opcode = WDSX_SCSICMD;
   1244  1.19   thorpej 			ltophys(scb->dmamap_xfer->dm_segs[0].ds_addr,
   1245  1.19   thorpej 			    scb->cmd.data);
   1246  1.19   thorpej 			ltophys(scb->dmamap_xfer->dm_segs[0].ds_len,
   1247  1.19   thorpej 			    scb->cmd.len);
   1248   1.1   mycroft 		}
   1249   1.1   mycroft 	} else {
   1250   1.1   mycroft 		scb->cmd.opcode = WDSX_SCSICMD;
   1251   1.1   mycroft 		ltophys(0, scb->cmd.data);
   1252   1.1   mycroft 		ltophys(0, scb->cmd.len);
   1253   1.1   mycroft 	}
   1254   1.1   mycroft 
   1255   1.1   mycroft 	scb->cmd.stat = 0x00;
   1256   1.1   mycroft 	scb->cmd.venderr = 0x00;
   1257   1.1   mycroft 	ltophys(0, scb->cmd.link);
   1258   1.1   mycroft 
   1259   1.1   mycroft 	/* XXX Do we really want to do this? */
   1260   1.1   mycroft 	if (flags & SCSI_POLL) {
   1261   1.1   mycroft 		/* Will poll card, await result. */
   1262  1.15   mycroft 		bus_space_write_1(sc->sc_iot, sc->sc_ioh, WDS_HCR, WDSH_DRQEN);
   1263   1.1   mycroft 		scb->flags |= SCB_POLLED;
   1264   1.1   mycroft 	} else {
   1265   1.1   mycroft 		/* Will send command, let interrupt routine handle result. */
   1266  1.15   mycroft 		bus_space_write_1(sc->sc_iot, sc->sc_ioh, WDS_HCR,
   1267  1.15   mycroft 		    WDSH_IRQEN | WDSH_DRQEN);
   1268   1.1   mycroft 	}
   1269   1.1   mycroft 
   1270   1.1   mycroft 	s = splbio();
   1271   1.1   mycroft 	wds_queue_scb(sc, scb);
   1272   1.1   mycroft 	splx(s);
   1273   1.1   mycroft 
   1274   1.1   mycroft 	if ((flags & SCSI_POLL) == 0)
   1275   1.1   mycroft 		return SUCCESSFULLY_QUEUED;
   1276   1.1   mycroft 
   1277   1.1   mycroft 	if (wds_poll(sc, xs, scb->timeout)) {
   1278   1.1   mycroft 		wds_timeout(scb);
   1279   1.1   mycroft 		if (wds_poll(sc, xs, scb->timeout))
   1280   1.1   mycroft 			wds_timeout(scb);
   1281   1.1   mycroft 	}
   1282   1.1   mycroft 	return COMPLETE;
   1283   1.1   mycroft 
   1284   1.1   mycroft bad:
   1285   1.1   mycroft 	xs->error = XS_DRIVER_STUFFUP;
   1286   1.1   mycroft 	wds_free_scb(sc, scb);
   1287   1.1   mycroft 	return COMPLETE;
   1288   1.1   mycroft }
   1289   1.1   mycroft 
   1290   1.1   mycroft /*
   1291   1.1   mycroft  * Send a sense request.
   1292   1.1   mycroft  */
   1293   1.2   mycroft void
   1294   1.1   mycroft wds_sense(sc, scb)
   1295   1.1   mycroft 	struct wds_softc *sc;
   1296   1.1   mycroft 	struct wds_scb *scb;
   1297   1.1   mycroft {
   1298  1.18    bouyer 	struct scsipi_xfer *xs = scb->xs;
   1299  1.18    bouyer 	struct scsipi_sense *ss = (void *)&scb->sense.scb;
   1300   1.1   mycroft 	int s;
   1301   1.1   mycroft 
   1302   1.1   mycroft 	/* XXXXX */
   1303   1.1   mycroft 
   1304   1.1   mycroft 	/* Send sense request SCSI command. */
   1305   1.1   mycroft 	xs->error = XS_SENSE;
   1306   1.1   mycroft 	scb->flags |= SCB_SENSE;
   1307   1.1   mycroft 
   1308   1.1   mycroft 	/* Next, setup a request sense command block */
   1309   1.1   mycroft 	bzero(ss, sizeof(*ss));
   1310   1.1   mycroft 	ss->opcode = REQUEST_SENSE;
   1311  1.18    bouyer 	ss->byte2 = xs->sc_link->scsipi_scsi.lun << 5;
   1312  1.18    bouyer 	ss->length = sizeof(struct scsipi_sense_data);
   1313   1.1   mycroft 
   1314   1.1   mycroft 	/* Set up some of the command fields. */
   1315   1.1   mycroft 	scb->sense.targ = scb->cmd.targ;
   1316   1.1   mycroft 	scb->sense.write = 0x80;
   1317   1.1   mycroft 	scb->sense.opcode = WDSX_SCSICMD;
   1318  1.19   thorpej 	ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
   1319  1.19   thorpej 	    offsetof(struct wds_scb, sense_data), scb->sense.data);
   1320  1.18    bouyer 	ltophys(sizeof(struct scsipi_sense_data), scb->sense.len);
   1321   1.1   mycroft 
   1322   1.1   mycroft 	s = splbio();
   1323   1.1   mycroft 	wds_queue_scb(sc, scb);
   1324   1.1   mycroft 	splx(s);
   1325   1.1   mycroft 
   1326   1.1   mycroft 	/*
   1327   1.1   mycroft 	 * There's no reason for us to poll here.  There are two cases:
   1328   1.1   mycroft 	 * 1) If it's a polling operation, then we're called from the interrupt
   1329   1.1   mycroft 	 *    handler, and we return and continue polling.
   1330   1.1   mycroft 	 * 2) If it's an interrupt-driven operation, then it gets completed
   1331   1.1   mycroft 	 *    later on when the REQUEST SENSE finishes.
   1332   1.1   mycroft 	 */
   1333   1.1   mycroft }
   1334   1.1   mycroft 
   1335   1.1   mycroft /*
   1336   1.1   mycroft  * Poll a particular unit, looking for a particular scb
   1337   1.1   mycroft  */
   1338   1.1   mycroft int
   1339   1.1   mycroft wds_poll(sc, xs, count)
   1340   1.1   mycroft 	struct wds_softc *sc;
   1341  1.18    bouyer 	struct scsipi_xfer *xs;
   1342   1.1   mycroft 	int count;
   1343   1.1   mycroft {
   1344  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
   1345  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
   1346   1.1   mycroft 
   1347   1.1   mycroft 	/* timeouts are in msec, so we loop in 1000 usec cycles */
   1348   1.1   mycroft 	while (count) {
   1349   1.1   mycroft 		/*
   1350   1.1   mycroft 		 * If we had interrupts enabled, would we
   1351   1.1   mycroft 		 * have got an interrupt?
   1352   1.1   mycroft 		 */
   1353  1.15   mycroft 		if (bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ)
   1354   1.1   mycroft 			wdsintr(sc);
   1355   1.1   mycroft 		if (xs->flags & ITSDONE)
   1356   1.1   mycroft 			return 0;
   1357   1.1   mycroft 		delay(1000);	/* only happens in boot so ok */
   1358   1.1   mycroft 		count--;
   1359   1.1   mycroft 	}
   1360   1.1   mycroft 	return 1;
   1361   1.1   mycroft }
   1362   1.1   mycroft 
   1363   1.1   mycroft /*
   1364   1.1   mycroft  * Poll a particular unit, looking for a particular scb
   1365   1.1   mycroft  */
   1366   1.1   mycroft int
   1367   1.1   mycroft wds_ipoll(sc, scb, count)
   1368   1.1   mycroft 	struct wds_softc *sc;
   1369   1.1   mycroft 	struct wds_scb *scb;
   1370   1.1   mycroft 	int count;
   1371   1.1   mycroft {
   1372  1.15   mycroft 	bus_space_tag_t iot = sc->sc_iot;
   1373  1.15   mycroft 	bus_space_handle_t ioh = sc->sc_ioh;
   1374   1.1   mycroft 
   1375   1.1   mycroft 	/* timeouts are in msec, so we loop in 1000 usec cycles */
   1376   1.1   mycroft 	while (count) {
   1377   1.1   mycroft 		/*
   1378   1.1   mycroft 		 * If we had interrupts enabled, would we
   1379   1.1   mycroft 		 * have got an interrupt?
   1380   1.1   mycroft 		 */
   1381  1.15   mycroft 		if (bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ)
   1382   1.1   mycroft 			wdsintr(sc);
   1383   1.1   mycroft 		if (scb->flags & SCB_DONE)
   1384   1.1   mycroft 			return 0;
   1385   1.1   mycroft 		delay(1000);	/* only happens in boot so ok */
   1386   1.1   mycroft 		count--;
   1387   1.1   mycroft 	}
   1388   1.1   mycroft 	return 1;
   1389   1.1   mycroft }
   1390   1.1   mycroft 
   1391   1.1   mycroft void
   1392   1.1   mycroft wds_timeout(arg)
   1393   1.1   mycroft 	void *arg;
   1394   1.1   mycroft {
   1395   1.1   mycroft 	struct wds_scb *scb = arg;
   1396  1.18    bouyer 	struct scsipi_xfer *xs = scb->xs;
   1397  1.18    bouyer 	struct scsipi_link *sc_link = xs->sc_link;
   1398   1.1   mycroft 	struct wds_softc *sc = sc_link->adapter_softc;
   1399   1.1   mycroft 	int s;
   1400   1.1   mycroft 
   1401  1.18    bouyer 	scsi_print_addr(sc_link);
   1402  1.12  christos 	printf("timed out");
   1403   1.1   mycroft 
   1404   1.1   mycroft 	s = splbio();
   1405   1.1   mycroft 
   1406   1.1   mycroft #ifdef WDSDIAG
   1407   1.1   mycroft 	/*
   1408   1.1   mycroft 	 * If The scb's mbx is not free, then the board has gone south?
   1409   1.1   mycroft 	 */
   1410   1.1   mycroft 	wds_collect_mbo(sc);
   1411   1.1   mycroft 	if (scb->flags & SCB_SENDING) {
   1412  1.12  christos 		printf("%s: not taking commands!\n", sc->sc_dev.dv_xname);
   1413   1.1   mycroft 		Debugger();
   1414   1.1   mycroft 	}
   1415   1.1   mycroft #endif
   1416   1.1   mycroft 
   1417   1.1   mycroft 	/*
   1418   1.1   mycroft 	 * If it has been through before, then
   1419   1.1   mycroft 	 * a previous abort has failed, don't
   1420   1.1   mycroft 	 * try abort again
   1421   1.1   mycroft 	 */
   1422   1.1   mycroft 	if (scb->flags & SCB_ABORT) {
   1423   1.1   mycroft 		/* abort timed out */
   1424  1.12  christos 		printf(" AGAIN\n");
   1425   1.1   mycroft 		/* XXX Must reset! */
   1426   1.1   mycroft 	} else {
   1427   1.1   mycroft 		/* abort the operation that has timed out */
   1428  1.12  christos 		printf("\n");
   1429   1.1   mycroft 		scb->xs->error = XS_TIMEOUT;
   1430   1.1   mycroft 		scb->timeout = WDS_ABORT_TIMEOUT;
   1431   1.1   mycroft 		scb->flags |= SCB_ABORT;
   1432   1.1   mycroft 		wds_queue_scb(sc, scb);
   1433   1.1   mycroft 	}
   1434   1.1   mycroft 
   1435   1.1   mycroft 	splx(s);
   1436   1.1   mycroft }
   1437