Home | History | Annotate | Line # | Download | only in i2o
iopvar.h revision 1.6
      1  1.6  ad /*	$NetBSD: iopvar.h,v 1.6 2001/04/01 15:02:08 ad Exp $	*/
      2  1.1  ad 
      3  1.1  ad /*-
      4  1.5  ad  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
      5  1.1  ad  * All rights reserved.
      6  1.1  ad  *
      7  1.1  ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  ad  * by Andrew Doran.
      9  1.1  ad  *
     10  1.1  ad  * Redistribution and use in source and binary forms, with or without
     11  1.1  ad  * modification, are permitted provided that the following conditions
     12  1.1  ad  * are met:
     13  1.1  ad  * 1. Redistributions of source code must retain the above copyright
     14  1.1  ad  *    notice, this list of conditions and the following disclaimer.
     15  1.1  ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  ad  *    documentation and/or other materials provided with the distribution.
     18  1.1  ad  * 3. All advertising materials mentioning features or use of this software
     19  1.1  ad  *    must display the following acknowledgement:
     20  1.1  ad  *        This product includes software developed by the NetBSD
     21  1.1  ad  *        Foundation, Inc. and its contributors.
     22  1.1  ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  ad  *    contributors may be used to endorse or promote products derived
     24  1.1  ad  *    from this software without specific prior written permission.
     25  1.1  ad  *
     26  1.1  ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  ad  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  ad  */
     38  1.1  ad 
     39  1.1  ad #ifndef _I2O_IOPVAR_H_
     40  1.1  ad #define	_I2O_IOPVAR_H_
     41  1.1  ad 
     42  1.3  ad #include "locators.h"
     43  1.3  ad 
     44  1.1  ad /*
     45  1.1  ad  * Transfer descriptor.
     46  1.1  ad  */
     47  1.1  ad struct iop_xfer {
     48  1.1  ad 	bus_dmamap_t	ix_map;
     49  1.1  ad 	u_int		ix_size;
     50  1.1  ad 	u_int		ix_flags;
     51  1.1  ad };
     52  1.1  ad #define	IX_IN			0x0001	/* Data transfer from IOP */
     53  1.1  ad #define	IX_OUT			0x0002	/* Data transfer to IOP */
     54  1.1  ad 
     55  1.1  ad /*
     56  1.1  ad  * Message wrapper.
     57  1.1  ad  */
     58  1.1  ad struct iop_msg {
     59  1.5  ad 	SLIST_ENTRY(iop_msg)	im_chain;	/* Next free message */
     60  1.1  ad 	u_int			im_flags;	/* Control flags */
     61  1.1  ad 	u_int			im_tctx;	/* Transaction context */
     62  1.1  ad 	void			*im_dvcontext;	/* Un*x device context */
     63  1.5  ad 	struct i2o_reply	*im_rb;		/* Reply buffer */
     64  1.5  ad 	u_int			im_reqstatus;	/* Status from reply */
     65  1.1  ad 	struct iop_xfer		im_xfer[IOP_MAX_MSG_XFERS];
     66  1.1  ad };
     67  1.1  ad #define	IM_SYSMASK		0x00ff
     68  1.1  ad #define	IM_REPLIED		0x0001	/* Message has been replied to */
     69  1.1  ad #define	IM_ALLOCED		0x0002	/* This message wrapper is allocated */
     70  1.5  ad #define	IM_SGLOFFADJ		0x0004	/* S/G list offset adjusted */
     71  1.5  ad #define	IM_DISCARD		0x0008	/* Discard message wrapper once sent */
     72  1.5  ad #define	IM_FAIL			0x0010	/* Transaction error returned */
     73  1.1  ad 
     74  1.1  ad #define	IM_USERMASK		0xff00
     75  1.5  ad #define	IM_WAIT			0x0100	/* Wait (sleep) for completion */
     76  1.5  ad #define	IM_POLL			0x0200	/* Wait (poll) for completion */
     77  1.5  ad #define	IM_NOSTATUS		0x0400	/* Don't check status if waiting */
     78  1.6  ad #define	IM_POLL_INTR		0x0800	/* Do send interrupt when polling */
     79  1.1  ad 
     80  1.1  ad struct iop_initiator {
     81  1.3  ad 	LIST_ENTRY(iop_initiator) ii_list;
     82  1.3  ad 	LIST_ENTRY(iop_initiator) ii_hash;
     83  1.3  ad 
     84  1.3  ad 	void	(*ii_intr)(struct device *, struct iop_msg *, void *);
     85  1.3  ad 	int	(*ii_reconfig)(struct device *);
     86  1.5  ad 	void	(*ii_adjqparam)(struct device *, int);
     87  1.5  ad 
     88  1.1  ad 	struct	device *ii_dv;
     89  1.1  ad 	int	ii_flags;
     90  1.3  ad 	int	ii_ictx;		/* Initiator context */
     91  1.3  ad 	int	ii_tid;
     92  1.1  ad };
     93  1.1  ad #define	II_DISCARD	0x0001	/* Don't track state; discard msg wrappers */
     94  1.3  ad #define	II_CONFIGURED	0x0002	/* Already configured */
     95  1.5  ad #define	II_UTILITY	0x0004	/* Utility initiator (not a real device) */
     96  1.1  ad 
     97  1.1  ad #define	IOP_ICTX	0
     98  1.5  ad #define	IOP_INIT_CODE	0x80
     99  1.5  ad 
    100  1.5  ad /*
    101  1.5  ad  * Parameter group op (for async parameter retrievals).
    102  1.5  ad  */
    103  1.5  ad struct iop_pgop {
    104  1.5  ad 	struct	i2o_param_op_list_header olh;
    105  1.5  ad 	struct	i2o_param_op_all_template oat;
    106  1.5  ad } __attribute__ ((__packed__));
    107  1.1  ad 
    108  1.1  ad /*
    109  1.1  ad  * Per-IOP context.
    110  1.1  ad  */
    111  1.1  ad struct iop_softc {
    112  1.1  ad 	struct device	sc_dv;		/* generic device data */
    113  1.1  ad 	bus_space_handle_t sc_ioh;	/* bus space handle */
    114  1.1  ad 	bus_space_tag_t	sc_iot;		/* bus space tag */
    115  1.1  ad 	bus_dma_tag_t	sc_dmat;	/* bus DMA tag */
    116  1.1  ad 	void	 	*sc_ih;		/* interrupt handler cookie */
    117  1.3  ad 	struct lock	sc_conflock;	/* autoconfiguration lock */
    118  1.3  ad 	bus_addr_t	sc_memaddr;	/* register window address */
    119  1.3  ad 	bus_size_t	sc_memsize;	/* register window size */
    120  1.1  ad 
    121  1.1  ad 	struct i2o_hrt	*sc_hrt;	/* hardware resource table */
    122  1.5  ad 	struct iop_tidmap *sc_tidmap;	/* tid map (per-lct-entry flags) */
    123  1.1  ad 	struct i2o_lct	*sc_lct;	/* logical configuration table */
    124  1.1  ad 	int		sc_nlctent;	/* number of LCT entries */
    125  1.1  ad 	int		sc_flags;	/* IOP-wide flags */
    126  1.5  ad 	int		sc_maxib;
    127  1.5  ad 	int		sc_maxob;
    128  1.5  ad 	int		sc_curib;
    129  1.5  ad 	u_int32_t	sc_chgind;	/* autoconfig vs. LCT change ind. */
    130  1.3  ad 	LIST_HEAD(, iop_initiator) sc_iilist;/* initiator list */
    131  1.5  ad 	int		sc_nii;
    132  1.5  ad 	int		sc_nuii;
    133  1.3  ad 	struct iop_initiator sc_eventii;/* IOP event handler */
    134  1.3  ad 	struct proc	*sc_reconf_proc;/* reconfiguration process */
    135  1.5  ad 	struct iop_msg	*sc_ims;
    136  1.5  ad 	SLIST_HEAD(, iop_msg) sc_im_freelist;
    137  1.4  ad 	caddr_t		sc_ptb;
    138  1.1  ad 
    139  1.1  ad 	/*
    140  1.1  ad 	 * Reply queue.
    141  1.1  ad 	 */
    142  1.1  ad 	bus_dmamap_t	sc_rep_dmamap;
    143  1.1  ad 	int		sc_rep_size;
    144  1.1  ad 	bus_addr_t	sc_rep_phys;
    145  1.1  ad 	caddr_t		sc_rep;
    146  1.6  ad 
    147  1.6  ad 	bus_space_tag_t	sc_bus_memt;
    148  1.6  ad 	bus_space_tag_t	sc_bus_iot;
    149  1.5  ad 
    150  1.5  ad 	struct i2o_status sc_status;	/* status */
    151  1.1  ad };
    152  1.1  ad #define	IOP_OPEN		0x01	/* Device interface open */
    153  1.3  ad #define	IOP_HAVESTATUS		0x02	/* Successfully retrieved status */
    154  1.3  ad #define	IOP_ONLINE		0x04	/* Can use ioctl interface */
    155  1.1  ad 
    156  1.1  ad struct iop_attach_args {
    157  1.1  ad 	int	ia_class;		/* device class */
    158  1.1  ad 	int	ia_tid;			/* target ID */
    159  1.1  ad };
    160  1.1  ad #define	iopcf_tid	cf_loc[IOPCF_TID]		/* TID */
    161  1.1  ad 
    162  1.3  ad void	iop_init(struct iop_softc *, const char *);
    163  1.1  ad int	iop_intr(void *);
    164  1.3  ad int	iop_lct_get(struct iop_softc *);
    165  1.5  ad int	iop_param_op(struct iop_softc *, int, struct iop_initiator *, int,
    166  1.5  ad 		     int, void *, int);
    167  1.5  ad int	iop_print_ident(struct iop_softc *, int);
    168  1.3  ad int	iop_simple_cmd(struct iop_softc *, int, int, int, int, int);
    169  1.3  ad void	iop_strvis(struct iop_softc *, const char *, int, char *, int);
    170  1.1  ad 
    171  1.5  ad void	iop_initiator_register(struct iop_softc *, struct iop_initiator *);
    172  1.1  ad void	iop_initiator_unregister(struct iop_softc *, struct iop_initiator *);
    173  1.1  ad 
    174  1.5  ad struct	iop_msg *iop_msg_alloc(struct iop_softc *, struct iop_initiator *, int);
    175  1.5  ad void	iop_msg_free(struct iop_softc *, struct iop_msg *);
    176  1.5  ad int	iop_msg_map(struct iop_softc *, struct iop_msg *, u_int32_t *, void *,
    177  1.5  ad 		    int, int);
    178  1.5  ad int	iop_msg_map_bio(struct iop_softc *, struct iop_msg *, u_int32_t *,
    179  1.5  ad 			void *, int, int);
    180  1.5  ad int	iop_msg_post(struct iop_softc *, struct iop_msg *, void *, int);
    181  1.1  ad void	iop_msg_unmap(struct iop_softc *, struct iop_msg *);
    182  1.1  ad 
    183  1.3  ad int	iop_util_abort(struct iop_softc *, struct iop_initiator *, int, int,
    184  1.3  ad 		      int);
    185  1.3  ad int	iop_util_claim(struct iop_softc *, struct iop_initiator *, int, int);
    186  1.3  ad int	iop_util_eventreg(struct iop_softc *, struct iop_initiator *, int);
    187  1.1  ad 
    188  1.1  ad #endif	/* !_I2O_IOPVAR_H_ */
    189