Home | History | Annotate | Line # | Download | only in scsipi
scsiconf.h revision 1.29.4.1
      1  1.29.4.1   mycroft /*	$NetBSD: scsiconf.h,v 1.29.4.1 1997/03/04 14:46:47 mycroft Exp $	*/
      2      1.11       cgd 
      3       1.1       cgd /*
      4      1.20   mycroft  * Copyright (c) 1993, 1994, 1995 Charles Hannum.  All rights reserved.
      5       1.6   mycroft  *
      6       1.6   mycroft  * Redistribution and use in source and binary forms, with or without
      7       1.6   mycroft  * modification, are permitted provided that the following conditions
      8       1.6   mycroft  * are met:
      9       1.6   mycroft  * 1. Redistributions of source code must retain the above copyright
     10       1.6   mycroft  *    notice, this list of conditions and the following disclaimer.
     11       1.6   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.6   mycroft  *    notice, this list of conditions and the following disclaimer in the
     13       1.6   mycroft  *    documentation and/or other materials provided with the distribution.
     14       1.6   mycroft  * 3. All advertising materials mentioning features or use of this software
     15       1.6   mycroft  *    must display the following acknowledgement:
     16       1.6   mycroft  *	This product includes software developed by Charles Hannum.
     17       1.6   mycroft  * 4. The name of the author may not be used to endorse or promote products
     18       1.6   mycroft  *    derived from this software without specific prior written permission.
     19       1.6   mycroft  *
     20       1.6   mycroft  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21       1.6   mycroft  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22       1.6   mycroft  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23       1.6   mycroft  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24       1.6   mycroft  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25       1.6   mycroft  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26       1.6   mycroft  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27       1.6   mycroft  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28       1.6   mycroft  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29       1.6   mycroft  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30       1.6   mycroft  */
     31       1.6   mycroft 
     32       1.6   mycroft /*
     33       1.6   mycroft  * Originally written by Julian Elischer (julian (at) tfs.com)
     34       1.3   deraadt  * for TRW Financial Systems for use under the MACH(2.5) operating system.
     35       1.1       cgd  *
     36       1.1       cgd  * TRW Financial Systems, in accordance with their agreement with Carnegie
     37       1.1       cgd  * Mellon University, makes this software available to CMU to distribute
     38       1.1       cgd  * or use in any manner that they see fit as long as this message is kept with
     39       1.1       cgd  * the software. For this reason TFS also grants any other persons or
     40       1.1       cgd  * organisations permission to use or modify this software.
     41       1.1       cgd  *
     42       1.1       cgd  * TFS supplies this software to be publicly redistributed
     43       1.1       cgd  * on the understanding that TFS is not responsible for the correct
     44       1.1       cgd  * functioning of this software in any circumstances.
     45       1.4       cgd  *
     46       1.6   mycroft  * Ported to run under 386BSD by Julian Elischer (julian (at) tfs.com) Sept 1992
     47       1.1       cgd  */
     48       1.1       cgd 
     49       1.6   mycroft #ifndef	SCSI_SCSICONF_H
     50       1.6   mycroft #define SCSI_SCSICONF_H 1
     51      1.17   mycroft 
     52       1.6   mycroft typedef	int			boolean;
     53       1.6   mycroft 
     54       1.9   mycroft #include <sys/queue.h>
     55       1.6   mycroft #include <machine/cpu.h>
     56       1.6   mycroft #include <scsi/scsi_debug.h>
     57       1.6   mycroft 
     58       1.1       cgd /*
     59       1.6   mycroft  * The following documentation tries to describe the relationship between the
     60       1.6   mycroft  * various structures defined in this file:
     61       1.6   mycroft  *
     62       1.6   mycroft  * each adapter type has a scsi_adapter struct. This describes the adapter and
     63       1.6   mycroft  *    identifies routines that can be called to use the adapter.
     64       1.6   mycroft  * each device type has a scsi_device struct. This describes the device and
     65       1.6   mycroft  *    identifies routines that can be called to use the device.
     66       1.6   mycroft  * each existing device position (scsibus + target + lun)
     67       1.6   mycroft  *    can be described by a scsi_link struct.
     68       1.6   mycroft  *    Only scsi positions that actually have devices, have a scsi_link
     69       1.6   mycroft  *    structure assigned. so in effect each device has scsi_link struct.
     70       1.6   mycroft  *    The scsi_link structure contains information identifying both the
     71       1.6   mycroft  *    device driver and the adapter driver for that position on that scsi bus,
     72       1.6   mycroft  *    and can be said to 'link' the two.
     73       1.6   mycroft  * each individual scsi bus has an array that points to all the scsi_link
     74       1.6   mycroft  *    structs associated with that scsi bus. Slots with no device have
     75       1.6   mycroft  *    a NULL pointer.
     76       1.6   mycroft  * each individual device also knows the address of it's own scsi_link
     77       1.6   mycroft  *    structure.
     78       1.6   mycroft  *
     79       1.6   mycroft  *				-------------
     80       1.6   mycroft  *
     81      1.25   mycroft  * The key to all this is the scsi_link structure which associates all the
     82       1.6   mycroft  * other structures with each other in the correct configuration.  The
     83      1.25   mycroft  * scsi_link is the connecting information that allows each part of the
     84       1.6   mycroft  * scsi system to find the associated other parts.
     85       1.6   mycroft  */
     86       1.6   mycroft 
     87      1.27  christos struct buf;
     88      1.27  christos struct scsi_xfer;
     89       1.6   mycroft 
     90       1.6   mycroft /*
     91       1.6   mycroft  * These entrypoints are called by the high-end drivers to get services from
     92       1.6   mycroft  * whatever low-end drivers they are attached to each adapter type has one of
     93       1.6   mycroft  * these statically allocated.
     94       1.6   mycroft  */
     95       1.8   mycroft struct scsi_adapter {
     96      1.27  christos 	int		(*scsi_cmd) __P((struct scsi_xfer *));
     97      1.25   mycroft 	void		(*scsi_minphys) __P((struct buf *));
     98      1.27  christos 	int		(*open_target_lu) __P((void));
     99      1.27  christos 	int		(*close_target_lu) __P((void));
    100       1.1       cgd };
    101       1.6   mycroft 
    102       1.6   mycroft /*
    103       1.6   mycroft  * return values for scsi_cmd()
    104       1.6   mycroft  */
    105       1.1       cgd #define SUCCESSFULLY_QUEUED	0
    106       1.1       cgd #define TRY_AGAIN_LATER		1
    107       1.1       cgd #define	COMPLETE		2
    108      1.17   mycroft #define	ESCAPE_NOT_SUPPORTED	3
    109       1.6   mycroft 
    110       1.6   mycroft /*
    111       1.6   mycroft  * These entry points are called by the low-end drivers to get services from
    112       1.6   mycroft  * whatever high-end drivers they are attached to.  Each device type has one
    113       1.6   mycroft  * of these statically allocated.
    114       1.6   mycroft  */
    115       1.8   mycroft struct scsi_device {
    116      1.27  christos 	int	(*err_handler) __P((struct scsi_xfer *));
    117      1.27  christos 			/* returns -1 to say err processing done */
    118      1.27  christos 	void	(*start) __P((void *));
    119      1.27  christos 
    120      1.27  christos 	int	(*async) __P((void));
    121      1.26   thorpej 	/*
    122      1.26   thorpej 	 * When called with `0' as the second argument, we expect status
    123      1.26   thorpej 	 * back from the upper-level driver.  When called with a `1',
    124      1.26   thorpej 	 * we're simply notifying the upper-level driver that the command
    125      1.26   thorpej 	 * is complete and expect no status back.
    126      1.26   thorpej 	 */
    127      1.27  christos 	int	(*done)  __P((struct scsi_xfer *, int));
    128       1.6   mycroft };
    129       1.6   mycroft 
    130       1.6   mycroft /*
    131       1.6   mycroft  * This structure describes the connection between an adapter driver and
    132       1.6   mycroft  * a device driver, and is used by each to call services provided by
    133       1.6   mycroft  * the other, and to allow generic scsi glue code to call these services
    134       1.6   mycroft  * as well.
    135       1.6   mycroft  */
    136       1.8   mycroft struct scsi_link {
    137      1.23       cgd 	u_int8_t scsibus;		/* the Nth scsibus */
    138      1.23       cgd 	u_int8_t target;		/* targ of this dev */
    139      1.23       cgd 	u_int8_t lun;			/* lun of this dev */
    140      1.23       cgd 	u_int8_t adapter_target;	/* what are we on the scsi bus */
    141      1.23       cgd 	u_int8_t openings;		/* available operations */
    142      1.23       cgd 	u_int8_t active;		/* operations in progress */
    143      1.23       cgd 	u_int8_t flags;			/* flags that all devices have */
    144      1.17   mycroft #define	SDEV_REMOVABLE	 	0x01	/* media is removable */
    145      1.17   mycroft #define	SDEV_MEDIA_LOADED 	0x02	/* device figures are still valid */
    146      1.17   mycroft #define	SDEV_WAITING	 	0x04	/* a process is waiting for this */
    147      1.17   mycroft #define	SDEV_OPEN	 	0x08	/* at least 1 open session */
    148      1.25   mycroft #define	SDEV_DBX		0xf0	/* debuging flags (scsi_debug.h) */
    149      1.23       cgd 	u_int8_t quirks;		/* per-device oddities */
    150      1.17   mycroft #define	SDEV_AUTOSAVE		0x01	/* do implicit SAVEDATAPOINTER on disconnect */
    151      1.17   mycroft #define	SDEV_NOSYNCWIDE		0x02	/* does not grok SDTR or WDTR */
    152      1.17   mycroft #define	SDEV_NOLUNS		0x04	/* does not grok LUNs */
    153      1.21       cgd #define	SDEV_FORCELUNS		0x08	/* prehistoric drive/ctlr groks LUNs */
    154  1.29.4.1   mycroft #define SDEV_NOMODESENSE	0x10	/* removable media/optical drives */
    155  1.29.4.1   mycroft #define SDEV_NOSTARTUNIT	0x20	/* do not issue start unit requests in sd.c */
    156      1.23       cgd 	struct	scsi_device *device;	/* device entry points etc. */
    157      1.23       cgd 	void	*device_softc;		/* needed for call to foo_start */
    158      1.23       cgd 	struct	scsi_adapter *adapter;	/* adapter entry points etc. */
    159      1.23       cgd 	void	*adapter_softc;		/* needed for call to foo_scsi_cmd */
    160      1.24       cgd };
    161      1.17   mycroft 
    162      1.17   mycroft /*
    163      1.17   mycroft  * This describes matching information for scsi_inqmatch().  The more things
    164      1.17   mycroft  * match, the higher the configuration priority.
    165      1.17   mycroft  */
    166      1.17   mycroft struct scsi_inquiry_pattern {
    167      1.17   mycroft 	u_int8_t type;
    168      1.17   mycroft 	boolean removable;
    169      1.17   mycroft 	char *vendor;
    170      1.17   mycroft 	char *product;
    171      1.17   mycroft 	char *revision;
    172       1.6   mycroft };
    173       1.6   mycroft 
    174       1.6   mycroft /*
    175       1.6   mycroft  * One of these is allocated and filled in for each scsi bus.
    176       1.6   mycroft  * it holds pointers to allow the scsi bus to get to the driver
    177       1.6   mycroft  * That is running each LUN on the bus
    178       1.6   mycroft  * it also has a template entry which is the prototype struct
    179       1.6   mycroft  * supplied by the adapter driver, this is used to initialise
    180       1.6   mycroft  * the others, before they have the rest of the fields filled in
    181       1.6   mycroft  */
    182      1.17   mycroft struct scsibus_softc {
    183       1.6   mycroft 	struct device sc_dev;
    184       1.6   mycroft 	struct scsi_link *adapter_link;		/* prototype supplied by adapter */
    185       1.6   mycroft 	struct scsi_link *sc_link[8][8];
    186      1.17   mycroft 	u_int8_t moreluns;
    187      1.17   mycroft };
    188      1.17   mycroft 
    189      1.17   mycroft /*
    190      1.17   mycroft  * This is used to pass information from the high-level configuration code
    191      1.17   mycroft  * to the device-specific drivers.
    192      1.17   mycroft  */
    193      1.17   mycroft struct scsibus_attach_args {
    194      1.17   mycroft 	struct scsi_link *sa_sc_link;
    195      1.17   mycroft 	struct scsi_inquiry_data *sa_inqbuf;
    196       1.6   mycroft };
    197       1.1       cgd 
    198       1.6   mycroft /*
    199       1.6   mycroft  * Each scsi transaction is fully described by one of these structures
    200       1.6   mycroft  * It includes information about the source of the command and also the
    201       1.6   mycroft  * device and adapter for which the command is destined.
    202       1.6   mycroft  * (via the scsi_link structure)
    203       1.6   mycroft  */
    204       1.8   mycroft struct scsi_xfer {
    205      1.23       cgd 	LIST_ENTRY(scsi_xfer) free_list;
    206      1.23       cgd 	int	flags;
    207      1.23       cgd 	struct	scsi_link *sc_link;	/* all about our device and adapter */
    208      1.23       cgd 	int	retries;		/* the number of times to retry */
    209      1.23       cgd 	int	timeout;		/* in milliseconds */
    210      1.23       cgd 	struct	scsi_generic *cmd;	/* The scsi command to execute */
    211      1.23       cgd 	int	cmdlen;			/* how long it is */
    212      1.23       cgd 	u_char	*data;			/* dma address OR a uio address */
    213      1.23       cgd 	int	datalen;		/* data len (blank if uio)    */
    214      1.23       cgd 	int	resid;			/* how much buffer was not touched */
    215      1.23       cgd 	int	error;			/* an error value	*/
    216      1.23       cgd 	struct	buf *bp;		/* If we need to associate with a buf */
    217      1.23       cgd 	struct	scsi_sense_data	sense; /* 32 bytes*/
    218       1.6   mycroft 	/*
    219       1.6   mycroft 	 * Believe it or not, Some targets fall on the ground with
    220       1.6   mycroft 	 * anything but a certain sense length.
    221       1.6   mycroft 	 */
    222      1.23       cgd 	int	req_sense_length;	/* Explicit request sense length */
    223      1.23       cgd 	u_int8_t status;		/* SCSI status */
    224      1.23       cgd 	struct	scsi_generic cmdstore;	/* stash the command in here */
    225       1.1       cgd };
    226       1.6   mycroft 
    227       1.6   mycroft /*
    228       1.6   mycroft  * Per-request Flag values
    229       1.6   mycroft  */
    230      1.17   mycroft #define	SCSI_NOSLEEP	0x0001	/* don't sleep */
    231      1.17   mycroft #define	SCSI_POLL	0x0002	/* poll for completion */
    232      1.17   mycroft #define	SCSI_AUTOCONF	0x0003	/* shorthand for SCSI_POLL | SCSI_NOSLEEP */
    233      1.17   mycroft #define	SCSI_USER	0x0004	/* Is a user cmd, call scsi_user_done	*/
    234      1.17   mycroft #define	ITSDONE		0x0008	/* the transfer is as done as it gets	*/
    235      1.17   mycroft #define	INUSE		0x0010	/* The scsi_xfer block is in use	*/
    236      1.17   mycroft #define	SCSI_SILENT	0x0020	/* don't announce NOT READY or MEDIA CHANGE */
    237      1.17   mycroft #define	SCSI_IGNORE_NOT_READY		0x0040	/* ignore NOT READY */
    238      1.17   mycroft #define	SCSI_IGNORE_MEDIA_CHANGE	0x0080	/* ignore MEDIA CHANGE */
    239      1.17   mycroft #define	SCSI_IGNORE_ILLEGAL_REQUEST	0x0100	/* ignore ILLEGAL REQUEST */
    240      1.17   mycroft #define	SCSI_RESET	0x0200	/* Reset the device in question		*/
    241      1.17   mycroft #define	SCSI_DATA_UIO	0x0400	/* The data address refers to a UIO	*/
    242      1.17   mycroft #define	SCSI_DATA_IN	0x0800	/* expect data to come INTO memory	*/
    243      1.17   mycroft #define	SCSI_DATA_OUT	0x1000	/* expect data to flow OUT of memory	*/
    244      1.17   mycroft #define	SCSI_TARGET	0x2000	/* This defines a TARGET mode op.	*/
    245      1.17   mycroft #define	SCSI_ESCAPE	0x4000	/* Escape operation			*/
    246       1.6   mycroft 
    247       1.6   mycroft /*
    248       1.6   mycroft  * Escape op codes.  This provides an extensible setup for operations
    249       1.6   mycroft  * that are not scsi commands.  They are intended for modal operations.
    250       1.6   mycroft  */
    251       1.6   mycroft 
    252       1.6   mycroft #define SCSI_OP_TARGET	0x0001
    253       1.6   mycroft #define	SCSI_OP_RESET	0x0002
    254       1.6   mycroft #define	SCSI_OP_BDINFO	0x0003
    255       1.6   mycroft 
    256       1.6   mycroft /*
    257       1.6   mycroft  * Error values an adapter driver may return
    258       1.6   mycroft  */
    259      1.17   mycroft #define XS_NOERROR	0	/* there is no error, (sense is invalid)  */
    260      1.17   mycroft #define XS_SENSE	1	/* Check the returned sense for the error */
    261      1.17   mycroft #define	XS_DRIVER_STUFFUP 2	/* Driver failed to perform operation	  */
    262      1.17   mycroft #define XS_SELTIMEOUT	3	/* The device timed out.. turned off?	  */
    263      1.17   mycroft #define XS_TIMEOUT	4	/* The Timeout reported was caught by SW  */
    264      1.17   mycroft #define XS_BUSY		5	/* The device busy, try again later?	  */
    265      1.17   mycroft 
    266      1.17   mycroft caddr_t scsi_inqmatch __P((struct scsi_inquiry_data *, caddr_t, int, int, int *));
    267      1.17   mycroft 
    268      1.17   mycroft struct scsi_xfer *scsi_get_xs __P((struct scsi_link *, int));
    269      1.17   mycroft void scsi_free_xs __P((struct scsi_xfer *, int));
    270      1.17   mycroft int scsi_execute_xs __P((struct scsi_xfer *));
    271      1.17   mycroft u_long scsi_size __P((struct scsi_link *, int));
    272       1.8   mycroft int scsi_test_unit_ready __P((struct scsi_link *, int));
    273       1.8   mycroft int scsi_change_def __P((struct scsi_link *, int));
    274       1.8   mycroft int scsi_inquire __P((struct scsi_link *, struct scsi_inquiry_data *, int));
    275       1.8   mycroft int scsi_prevent __P((struct scsi_link *, int, int));
    276       1.8   mycroft int scsi_start __P((struct scsi_link *, int, int));
    277       1.6   mycroft void scsi_done __P((struct scsi_xfer *));
    278      1.27  christos void scsi_user_done __P((struct scsi_xfer *));
    279       1.6   mycroft int scsi_scsi_cmd __P((struct scsi_link *, struct scsi_generic *,
    280      1.17   mycroft 			int cmdlen, u_char *data_addr,
    281      1.17   mycroft 			int datalen, int retries,
    282       1.8   mycroft 			int timeout, struct buf *bp,
    283       1.8   mycroft 			int flags));
    284      1.17   mycroft int scsi_do_ioctl __P((struct scsi_link *, dev_t, u_long, caddr_t, int, struct proc *));
    285      1.17   mycroft void sc_print_addr __P((struct scsi_link *));
    286       1.6   mycroft 
    287       1.6   mycroft void show_scsi_xs __P((struct scsi_xfer *));
    288       1.6   mycroft void show_scsi_cmd __P((struct scsi_xfer *));
    289      1.18   mycroft void show_mem __P((u_char *, int));
    290      1.27  christos int scsi_probe_busses __P((int, int, int));
    291      1.28   mycroft void scsi_strvis __P((u_char *, u_char *, int));
    292      1.27  christos 
    293      1.29   mycroft static __inline void _lto2b __P((u_int32_t val, u_int8_t *bytes));
    294      1.29   mycroft static __inline void _lto3b __P((u_int32_t val, u_int8_t *bytes));
    295      1.29   mycroft static __inline void _lto4b __P((u_int32_t val, u_int8_t *bytes));
    296      1.29   mycroft static __inline u_int32_t _2btol __P((u_int8_t *bytes));
    297      1.29   mycroft static __inline u_int32_t _3btol __P((u_int8_t *bytes));
    298      1.29   mycroft static __inline u_int32_t _4btol __P((u_int8_t *bytes));
    299      1.29   mycroft 
    300      1.29   mycroft static __inline void _lto2l __P((u_int32_t val, u_int8_t *bytes));
    301      1.29   mycroft static __inline void _lto3l __P((u_int32_t val, u_int8_t *bytes));
    302      1.29   mycroft static __inline void _lto4l __P((u_int32_t val, u_int8_t *bytes));
    303      1.29   mycroft static __inline u_int32_t _2ltol __P((u_int8_t *bytes));
    304      1.29   mycroft static __inline u_int32_t _3ltol __P((u_int8_t *bytes));
    305      1.29   mycroft static __inline u_int32_t _4ltol __P((u_int8_t *bytes));
    306      1.29   mycroft 
    307      1.29   mycroft static __inline void
    308      1.29   mycroft _lto2b(val, bytes)
    309      1.29   mycroft 	u_int32_t val;
    310      1.29   mycroft 	u_int8_t *bytes;
    311      1.29   mycroft {
    312      1.29   mycroft 
    313      1.29   mycroft 	bytes[0] = (val >> 8) & 0xff;
    314      1.29   mycroft 	bytes[1] = val & 0xff;
    315      1.29   mycroft }
    316      1.29   mycroft 
    317      1.29   mycroft static __inline void
    318      1.29   mycroft _lto3b(val, bytes)
    319      1.29   mycroft 	u_int32_t val;
    320      1.29   mycroft 	u_int8_t *bytes;
    321      1.29   mycroft {
    322      1.29   mycroft 
    323      1.29   mycroft 	bytes[0] = (val >> 16) & 0xff;
    324      1.29   mycroft 	bytes[1] = (val >> 8) & 0xff;
    325      1.29   mycroft 	bytes[2] = val & 0xff;
    326      1.29   mycroft }
    327      1.29   mycroft 
    328      1.29   mycroft static __inline void
    329      1.29   mycroft _lto4b(val, bytes)
    330      1.29   mycroft 	u_int32_t val;
    331      1.29   mycroft 	u_int8_t *bytes;
    332      1.29   mycroft {
    333      1.29   mycroft 
    334      1.29   mycroft 	bytes[0] = (val >> 24) & 0xff;
    335      1.29   mycroft 	bytes[1] = (val >> 16) & 0xff;
    336      1.29   mycroft 	bytes[2] = (val >> 8) & 0xff;
    337      1.29   mycroft 	bytes[3] = val & 0xff;
    338      1.29   mycroft }
    339      1.29   mycroft 
    340      1.29   mycroft static __inline u_int32_t
    341      1.29   mycroft _2btol(bytes)
    342      1.29   mycroft 	u_int8_t *bytes;
    343      1.29   mycroft {
    344      1.29   mycroft 	register u_int32_t rv;
    345      1.29   mycroft 
    346      1.29   mycroft 	rv = (bytes[0] << 8) |
    347      1.29   mycroft 	     bytes[1];
    348      1.29   mycroft 	return (rv);
    349      1.29   mycroft }
    350      1.29   mycroft 
    351      1.29   mycroft static __inline u_int32_t
    352      1.29   mycroft _3btol(bytes)
    353      1.29   mycroft 	u_int8_t *bytes;
    354      1.29   mycroft {
    355      1.29   mycroft 	register u_int32_t rv;
    356      1.29   mycroft 
    357      1.29   mycroft 	rv = (bytes[0] << 16) |
    358      1.29   mycroft 	     (bytes[1] << 8) |
    359      1.29   mycroft 	     bytes[2];
    360      1.29   mycroft 	return (rv);
    361      1.29   mycroft }
    362      1.29   mycroft 
    363      1.29   mycroft static __inline u_int32_t
    364      1.29   mycroft _4btol(bytes)
    365      1.29   mycroft 	u_int8_t *bytes;
    366      1.29   mycroft {
    367      1.29   mycroft 	register u_int32_t rv;
    368      1.29   mycroft 
    369      1.29   mycroft 	rv = (bytes[0] << 24) |
    370      1.29   mycroft 	     (bytes[1] << 16) |
    371      1.29   mycroft 	     (bytes[2] << 8) |
    372      1.29   mycroft 	     bytes[3];
    373      1.29   mycroft 	return (rv);
    374      1.29   mycroft }
    375      1.29   mycroft 
    376      1.29   mycroft static __inline void
    377      1.29   mycroft _lto2l(val, bytes)
    378      1.29   mycroft 	u_int32_t val;
    379      1.29   mycroft 	u_int8_t *bytes;
    380      1.29   mycroft {
    381      1.29   mycroft 
    382      1.29   mycroft 	bytes[0] = val & 0xff;
    383      1.29   mycroft 	bytes[1] = (val >> 8) & 0xff;
    384      1.29   mycroft }
    385      1.29   mycroft 
    386      1.29   mycroft static __inline void
    387      1.29   mycroft _lto3l(val, bytes)
    388      1.29   mycroft 	u_int32_t val;
    389      1.29   mycroft 	u_int8_t *bytes;
    390      1.29   mycroft {
    391      1.29   mycroft 
    392      1.29   mycroft 	bytes[0] = val & 0xff;
    393      1.29   mycroft 	bytes[1] = (val >> 8) & 0xff;
    394      1.29   mycroft 	bytes[2] = (val >> 16) & 0xff;
    395      1.29   mycroft }
    396      1.29   mycroft 
    397      1.29   mycroft static __inline void
    398      1.29   mycroft _lto4l(val, bytes)
    399      1.29   mycroft 	u_int32_t val;
    400      1.29   mycroft 	u_int8_t *bytes;
    401      1.29   mycroft {
    402      1.29   mycroft 
    403      1.29   mycroft 	bytes[0] = val & 0xff;
    404      1.29   mycroft 	bytes[1] = (val >> 8) & 0xff;
    405      1.29   mycroft 	bytes[2] = (val >> 16) & 0xff;
    406      1.29   mycroft 	bytes[3] = (val >> 24) & 0xff;
    407      1.29   mycroft }
    408      1.29   mycroft 
    409      1.29   mycroft static __inline u_int32_t
    410      1.29   mycroft _2ltol(bytes)
    411      1.29   mycroft 	u_int8_t *bytes;
    412      1.29   mycroft {
    413      1.29   mycroft 	register u_int32_t rv;
    414      1.29   mycroft 
    415      1.29   mycroft 	rv = bytes[0] |
    416      1.29   mycroft 	     (bytes[1] << 8);
    417      1.29   mycroft 	return (rv);
    418      1.29   mycroft }
    419      1.29   mycroft 
    420      1.29   mycroft static __inline u_int32_t
    421      1.29   mycroft _3ltol(bytes)
    422      1.29   mycroft 	u_int8_t *bytes;
    423      1.29   mycroft {
    424      1.29   mycroft 	register u_int32_t rv;
    425      1.29   mycroft 
    426      1.29   mycroft 	rv = bytes[0] |
    427      1.29   mycroft 	     (bytes[1] << 8) |
    428      1.29   mycroft 	     (bytes[2] << 16);
    429      1.29   mycroft 	return (rv);
    430      1.29   mycroft }
    431      1.29   mycroft 
    432      1.29   mycroft static __inline u_int32_t
    433      1.29   mycroft _4ltol(bytes)
    434      1.29   mycroft 	u_int8_t *bytes;
    435      1.29   mycroft {
    436      1.29   mycroft 	register u_int32_t rv;
    437      1.29   mycroft 
    438      1.29   mycroft 	rv = bytes[0] |
    439      1.29   mycroft 	     (bytes[1] << 8) |
    440      1.29   mycroft 	     (bytes[2] << 16) |
    441      1.29   mycroft 	     (bytes[3] << 24);
    442      1.29   mycroft 	return (rv);
    443      1.29   mycroft }
    444       1.2   deraadt 
    445      1.17   mycroft #endif /* SCSI_SCSICONF_H */
    446