Home | History | Annotate | Line # | Download | only in ic
bhavar.h revision 1.12
      1  1.12   thorpej /*	$NetBSD: bhavar.h,v 1.12 1998/11/19 21:53:00 thorpej Exp $	*/
      2  1.10   thorpej 
      3  1.10   thorpej /*-
      4  1.10   thorpej  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  1.10   thorpej  * All rights reserved.
      6  1.10   thorpej  *
      7  1.10   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.11   mycroft  * by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
      9  1.11   mycroft  * Simulation Facility, NASA Ames Research Center.
     10  1.10   thorpej  *
     11  1.10   thorpej  * Redistribution and use in source and binary forms, with or without
     12  1.10   thorpej  * modification, are permitted provided that the following conditions
     13  1.10   thorpej  * are met:
     14  1.10   thorpej  * 1. Redistributions of source code must retain the above copyright
     15  1.10   thorpej  *    notice, this list of conditions and the following disclaimer.
     16  1.10   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.10   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18  1.10   thorpej  *    documentation and/or other materials provided with the distribution.
     19  1.10   thorpej  * 3. All advertising materials mentioning features or use of this software
     20  1.10   thorpej  *    must display the following acknowledgement:
     21  1.10   thorpej  *	This product includes software developed by the NetBSD
     22  1.10   thorpej  *	Foundation, Inc. and its contributors.
     23  1.10   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.10   thorpej  *    contributors may be used to endorse or promote products derived
     25  1.10   thorpej  *    from this software without specific prior written permission.
     26  1.10   thorpej  *
     27  1.10   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.10   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.10   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.10   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.10   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.10   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.10   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.10   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.10   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.10   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.10   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38   1.2   mycroft  */
     39   1.2   mycroft 
     40   1.9   thorpej #include <sys/queue.h>
     41   1.9   thorpej 
     42   1.1   mycroft /*
     43   1.1   mycroft  * Mail box defs  etc.
     44   1.1   mycroft  * these could be bigger but we need the bha_softc to fit on a single page..
     45   1.1   mycroft  */
     46   1.1   mycroft #define BHA_MBX_SIZE	32	/* mail box size  (MAX 255 MBxs) */
     47   1.1   mycroft 				/* don't need that many really */
     48   1.1   mycroft #define BHA_CCB_MAX	32	/* store up to 32 CCBs at one time */
     49   1.1   mycroft #define	CCB_HASH_SIZE	32	/* hash table size for phystokv */
     50   1.1   mycroft #define	CCB_HASH_SHIFT	9
     51   1.1   mycroft #define CCB_HASH(x)	((((long)(x))>>CCB_HASH_SHIFT) & (CCB_HASH_SIZE - 1))
     52   1.1   mycroft 
     53   1.1   mycroft #define bha_nextmbx(wmb, mbx, mbio) \
     54   1.1   mycroft 	if ((wmb) == &(mbx)->mbio[BHA_MBX_SIZE - 1])	\
     55   1.1   mycroft 		(wmb) = &(mbx)->mbio[0];		\
     56   1.1   mycroft 	else						\
     57   1.1   mycroft 		(wmb)++;
     58   1.1   mycroft 
     59   1.1   mycroft struct bha_mbx {
     60   1.1   mycroft 	struct bha_mbx_out mbo[BHA_MBX_SIZE];
     61   1.1   mycroft 	struct bha_mbx_in mbi[BHA_MBX_SIZE];
     62   1.1   mycroft 	struct bha_mbx_out *cmbo;	/* Collection Mail Box out */
     63   1.1   mycroft 	struct bha_mbx_out *tmbo;	/* Target Mail Box out */
     64   1.1   mycroft 	struct bha_mbx_in *tmbi;	/* Target Mail Box in */
     65   1.1   mycroft };
     66   1.1   mycroft 
     67  1.10   thorpej struct bha_control {
     68  1.10   thorpej 	struct bha_mbx bc_mbx;		/* all our mailboxes */
     69  1.10   thorpej 	struct bha_ccb bc_ccbs[BHA_CCB_MAX]; /* all our control blocks */
     70  1.10   thorpej };
     71  1.10   thorpej 
     72   1.1   mycroft struct bha_softc {
     73   1.1   mycroft 	struct device sc_dev;
     74   1.6   mycroft 
     75   1.3   thorpej 	bus_space_tag_t sc_iot;
     76   1.3   thorpej 	bus_space_handle_t sc_ioh;
     77   1.7   thorpej 	bus_dma_tag_t sc_dmat;
     78  1.10   thorpej 	bus_dmamap_t sc_dmamap_control;	/* maps the control structures */
     79   1.7   thorpej 	int sc_dmaflags;		/* bus-specific dma map flags */
     80   1.1   mycroft 	void *sc_ih;
     81   1.1   mycroft 
     82  1.10   thorpej 	struct bha_control *sc_control;	/* control structures */
     83  1.10   thorpej 
     84  1.10   thorpej #define	wmbx	(&sc->sc_control->bc_mbx)
     85  1.10   thorpej 
     86   1.1   mycroft 	struct bha_ccb *sc_ccbhash[CCB_HASH_SIZE];
     87   1.1   mycroft 	TAILQ_HEAD(, bha_ccb) sc_free_ccb, sc_waiting_ccb;
     88  1.10   thorpej 	int sc_mbofull;
     89   1.8    bouyer 	struct scsipi_link sc_link;	/* prototype for devs */
     90  1.12   thorpej 	struct scsipi_adapter sc_adapter;
     91   1.9   thorpej 
     92   1.9   thorpej 	LIST_HEAD(, scsipi_xfer) sc_queue;
     93   1.9   thorpej 	struct scsipi_xfer *sc_queuelast;
     94   1.6   mycroft 
     95   1.6   mycroft 	char sc_model[7],
     96   1.6   mycroft 	     sc_firmware[6];
     97   1.6   mycroft };
     98  1.10   thorpej 
     99  1.10   thorpej /*
    100  1.10   thorpej  * Offset of a Mail Box In from the beginning of the control DMA mapping.
    101  1.10   thorpej  */
    102  1.10   thorpej #define	BHA_MBI_OFF(m)	(offsetof(struct bha_control, bc_mbx.mbi[0]) +	\
    103  1.10   thorpej 			    (((u_long)(m)) - ((u_long)&wmbx->mbi[0])))
    104  1.10   thorpej 
    105  1.10   thorpej /*
    106  1.10   thorpej  * Offset of a Mail Box Out from the beginning of the control DMA mapping.
    107  1.10   thorpej  */
    108  1.10   thorpej #define	BHA_MBO_OFF(m)	(offsetof(struct bha_control, bc_mbx.mbo[0]) +	\
    109  1.10   thorpej 			    (((u_long)(m)) - ((u_long)&wmbx->mbo[0])))
    110  1.10   thorpej 
    111  1.10   thorpej /*
    112  1.10   thorpej  * Offset of a CCB from the beginning of the control DMA mapping.
    113  1.10   thorpej  */
    114  1.10   thorpej #define	BHA_CCB_OFF(c)	(offsetof(struct bha_control, bc_ccbs[0]) +	\
    115  1.10   thorpej 		    (((u_long)(c)) - ((u_long)&sc->sc_control->bc_ccbs[0])))
    116   1.6   mycroft 
    117   1.6   mycroft struct bha_probe_data {
    118   1.6   mycroft 	int sc_irq, sc_drq;
    119   1.1   mycroft 	int sc_scsi_dev;		/* adapters scsi id */
    120   1.5   thorpej 	int sc_iswide;			/* adapter is wide */
    121   1.1   mycroft };
    122   1.1   mycroft 
    123   1.8    bouyer #define	ISWIDE(sc)	(sc->sc_link.scsipi_scsi.max_target >= 8)
    124   1.6   mycroft 
    125   1.3   thorpej int	bha_find __P((bus_space_tag_t, bus_space_handle_t,
    126   1.6   mycroft 	    struct bha_probe_data *));
    127   1.6   mycroft void	bha_attach __P((struct bha_softc *, struct bha_probe_data *));
    128   1.1   mycroft int	bha_intr __P((void *));
    129   1.4  jonathan 
    130   1.4  jonathan int	bha_disable_isacompat __P((struct bha_softc *));
    131   1.7   thorpej void	bha_inquire_setup_information __P((struct bha_softc *));
    132