xref: /freebsd/sys/dev/ciss/cissvar.h (revision 45645518ea19ccb4761aee3a525aab2f323d37d4)
13a31b7ebSMike Smith /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
43a31b7ebSMike Smith  * Copyright (c) 2001 Michael Smith
53a31b7ebSMike Smith  * All rights reserved.
63a31b7ebSMike Smith  *
73a31b7ebSMike Smith  * Redistribution and use in source and binary forms, with or without
83a31b7ebSMike Smith  * modification, are permitted provided that the following conditions
93a31b7ebSMike Smith  * are met:
103a31b7ebSMike Smith  * 1. Redistributions of source code must retain the above copyright
113a31b7ebSMike Smith  *    notice, this list of conditions and the following disclaimer.
123a31b7ebSMike Smith  * 2. Redistributions in binary form must reproduce the above copyright
133a31b7ebSMike Smith  *    notice, this list of conditions and the following disclaimer in the
143a31b7ebSMike Smith  *    documentation and/or other materials provided with the distribution.
153a31b7ebSMike Smith  *
163a31b7ebSMike Smith  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
173a31b7ebSMike Smith  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
183a31b7ebSMike Smith  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
193a31b7ebSMike Smith  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
203a31b7ebSMike Smith  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
213a31b7ebSMike Smith  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223a31b7ebSMike Smith  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
233a31b7ebSMike Smith  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
243a31b7ebSMike Smith  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
253a31b7ebSMike Smith  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
263a31b7ebSMike Smith  * SUCH DAMAGE.
273a31b7ebSMike Smith  */
283a31b7ebSMike Smith 
293a31b7ebSMike Smith /*
303a31b7ebSMike Smith  * CISS adapter driver datastructures
313a31b7ebSMike Smith  */
323a31b7ebSMike Smith 
3322657ce1SScott Long typedef STAILQ_HEAD(, ciss_request)	cr_qhead_t;
3422657ce1SScott Long 
353a31b7ebSMike Smith /************************************************************************
363a31b7ebSMike Smith  * Tunable parameters
373a31b7ebSMike Smith  */
383a31b7ebSMike Smith 
393a31b7ebSMike Smith /*
403a31b7ebSMike Smith  * There is no guaranteed upper bound on the number of concurrent
413a31b7ebSMike Smith  * commands an adapter may claim to support.  Cap it at a reasonable
423a31b7ebSMike Smith  * value.
433a31b7ebSMike Smith  */
4495dab4f2SAlexander Motin #define CISS_MAX_REQUESTS	1024
453a31b7ebSMike Smith 
463a31b7ebSMike Smith /*
473a31b7ebSMike Smith  * Maximum number of logical drives we support.
48e3edca22SSean Bruno  * If the controller does not indicate a maximum
49e3edca22SSean Bruno  * value.  This is a compatibiliy value to support
50e3edca22SSean Bruno  * older ciss controllers (e.g. model 6i)
513a31b7ebSMike Smith  */
52e3edca22SSean Bruno #define CISS_MAX_LOGICAL	16
533a31b7ebSMike Smith 
543a31b7ebSMike Smith /*
55c6131460SPaul Saab  * Maximum number of physical devices we support.
56c6131460SPaul Saab  */
57c6131460SPaul Saab #define CISS_MAX_PHYSICAL	1024
58c6131460SPaul Saab 
59c6131460SPaul Saab /*
603a31b7ebSMike Smith  * Interrupt reduction can be controlled by tuning the interrupt
61453130d9SPedro F. Giffuni  * coalesce delay and count parameters.  The delay (in microseconds)
623a31b7ebSMike Smith  * defers delivery of interrupts to increase the chance of there being
633a31b7ebSMike Smith  * more than one completed command ready when the interrupt is
643a31b7ebSMike Smith  * delivered.  The count expedites the delivery of the interrupt when
653a31b7ebSMike Smith  * the given number of commands are ready.
663a31b7ebSMike Smith  *
673a31b7ebSMike Smith  * If the delay is set to 0, interrupts are delivered immediately.
683a31b7ebSMike Smith  */
6922657ce1SScott Long #define CISS_INTERRUPT_COALESCE_DELAY	0
703a31b7ebSMike Smith #define CISS_INTERRUPT_COALESCE_COUNT	16
713a31b7ebSMike Smith 
723a31b7ebSMike Smith /*
733a31b7ebSMike Smith  * Heartbeat routine timeout in seconds.  Note that since event
743a31b7ebSMike Smith  * handling is performed on a callback basis, we don't need this to
753a31b7ebSMike Smith  * run very often.
763a31b7ebSMike Smith  */
773a31b7ebSMike Smith #define CISS_HEARTBEAT_RATE		10
783a31b7ebSMike Smith 
793a31b7ebSMike Smith /************************************************************************
803a31b7ebSMike Smith  * Driver version.  Only really significant to the ACU interface.
813a31b7ebSMike Smith  */
82d3e4392cSMike Smith #define CISS_DRIVER_VERSION	20011201
833a31b7ebSMike Smith 
843a31b7ebSMike Smith /************************************************************************
853a31b7ebSMike Smith  * Driver data structures
863a31b7ebSMike Smith  */
873a31b7ebSMike Smith 
883a31b7ebSMike Smith /*
893a31b7ebSMike Smith  * Each command issued to the adapter is managed by a request
903a31b7ebSMike Smith  * structure.
913a31b7ebSMike Smith  */
923a31b7ebSMike Smith struct ciss_request
933a31b7ebSMike Smith {
9422657ce1SScott Long     STAILQ_ENTRY(ciss_request)	cr_link;
953a31b7ebSMike Smith     int				cr_onq;		/* which queue we are on */
963a31b7ebSMike Smith 
973a31b7ebSMike Smith     struct ciss_softc		*cr_sc;		/* controller softc */
983a31b7ebSMike Smith     void			*cr_data;	/* data buffer */
993a31b7ebSMike Smith     u_int32_t			cr_length;	/* data length */
1003a31b7ebSMike Smith     bus_dmamap_t		cr_datamap;	/* DMA map for data */
1012fdaa90dSScott Long     struct ciss_command		*cr_cc;
1022fdaa90dSScott Long     uint32_t			cr_ccphys;
1033a31b7ebSMike Smith     int				cr_tag;
1043a31b7ebSMike Smith     int				cr_flags;
1053a31b7ebSMike Smith #define CISS_REQ_MAPPED		(1<<0)		/* data mapped */
1063a31b7ebSMike Smith #define CISS_REQ_SLEEP		(1<<1)		/* submitter sleeping */
1073a31b7ebSMike Smith #define CISS_REQ_POLL		(1<<2)		/* submitter polling */
1083a31b7ebSMike Smith #define CISS_REQ_DATAOUT	(1<<3)		/* data host->adapter */
1093a31b7ebSMike Smith #define CISS_REQ_DATAIN		(1<<4)		/* data adapter->host */
11022657ce1SScott Long #define CISS_REQ_BUSY		(1<<5)		/* controller has req */
111dd0b4fb6SKonstantin Belousov #define CISS_REQ_CCB		(1<<6)		/* data is ccb */
1123a31b7ebSMike Smith 
1133a31b7ebSMike Smith     void			(* cr_complete)(struct ciss_request *);
1143a31b7ebSMike Smith     void			*cr_private;
11522657ce1SScott Long     int				cr_sg_tag;
11622657ce1SScott Long #define CISS_SG_MAX		((CISS_SG_FETCH_MAX << 1) | 0x1)
11722657ce1SScott Long #define CISS_SG_1		((CISS_SG_FETCH_1 << 1) | 0x01)
11822657ce1SScott Long #define CISS_SG_2		((CISS_SG_FETCH_2 << 1) | 0x01)
11922657ce1SScott Long #define CISS_SG_4		((CISS_SG_FETCH_4 << 1) | 0x01)
12022657ce1SScott Long #define CISS_SG_8		((CISS_SG_FETCH_8 << 1) | 0x01)
12122657ce1SScott Long #define CISS_SG_16		((CISS_SG_FETCH_16 << 1) | 0x01)
12222657ce1SScott Long #define CISS_SG_32		((CISS_SG_FETCH_32 << 1) | 0x01)
12322657ce1SScott Long #define CISS_SG_NONE		((CISS_SG_FETCH_NONE << 1) | 0x01)
1243a31b7ebSMike Smith };
1253a31b7ebSMike Smith 
1263a31b7ebSMike Smith /*
1273a31b7ebSMike Smith  * The adapter command structure is defined with a zero-length
1283a31b7ebSMike Smith  * scatter/gather list size.  In practise, we want space for a
1293a31b7ebSMike Smith  * scatter-gather list, and we also want to avoid having commands
1303a31b7ebSMike Smith  * cross page boundaries.
1313a31b7ebSMike Smith  *
1322fdaa90dSScott Long  * The size of the ciss_command is 52 bytes.  65 s/g elements are reserved
1332fdaa90dSScott Long  * to allow a max i/o size of 256k.  This gives a total command size of
1342fdaa90dSScott Long  * 1120 bytes, including the 32 byte alignment padding.  Modern controllers
1352fdaa90dSScott Long  * seem to saturate nicely at this value.
1363a31b7ebSMike Smith  */
1373a31b7ebSMike Smith 
1382fdaa90dSScott Long #define CISS_MAX_SG_ELEMENTS	65
1392fdaa90dSScott Long #define CISS_COMMAND_ALIGN	32
1402fdaa90dSScott Long #define CISS_COMMAND_SG_LENGTH	(sizeof(struct ciss_sg_entry) * CISS_MAX_SG_ELEMENTS)
1412fdaa90dSScott Long #define CISS_COMMAND_ALLOC_SIZE		(roundup2(sizeof(struct ciss_command) + CISS_COMMAND_SG_LENGTH, CISS_COMMAND_ALIGN))
14252c9ce25SScott Long 
1433a31b7ebSMike Smith /*
1443a31b7ebSMike Smith  * Per-logical-drive data.
1453a31b7ebSMike Smith  */
1463a31b7ebSMike Smith struct ciss_ldrive
1473a31b7ebSMike Smith {
1483a31b7ebSMike Smith     union ciss_device_address	cl_address;
149c6131460SPaul Saab     union ciss_device_address	*cl_controller;
1503a31b7ebSMike Smith     int				cl_status;
1513a31b7ebSMike Smith #define CISS_LD_NONEXISTENT	0
1523a31b7ebSMike Smith #define CISS_LD_ONLINE		1
1533a31b7ebSMike Smith #define CISS_LD_OFFLINE		2
1543a31b7ebSMike Smith 
155c6131460SPaul Saab     int				cl_update;
156c6131460SPaul Saab 
1573a31b7ebSMike Smith     struct ciss_bmic_id_ldrive	*cl_ldrive;
1583a31b7ebSMike Smith     struct ciss_bmic_id_lstatus	*cl_lstatus;
159440baa08SPaul Saab     struct ciss_ldrive_geometry	cl_geometry;
1603a31b7ebSMike Smith 
1613a31b7ebSMike Smith     char			cl_name[16];		/* device name */
1623a31b7ebSMike Smith };
1633a31b7ebSMike Smith 
1643a31b7ebSMike Smith /*
1651fe6c4eeSScott Long  * Per-physical-drive data
1661fe6c4eeSScott Long  */
1671fe6c4eeSScott Long struct ciss_pdrive
1681fe6c4eeSScott Long {
1691fe6c4eeSScott Long     union ciss_device_address	cp_address;
1701fe6c4eeSScott Long     int				cp_online;
1711fe6c4eeSScott Long };
1721fe6c4eeSScott Long 
1731fe6c4eeSScott Long #define CISS_PHYSICAL_SHIFT	5
1741fe6c4eeSScott Long #define CISS_PHYSICAL_BASE	(1 << CISS_PHYSICAL_SHIFT)
175c7241f65SScott Long #define CISS_MAX_PHYSTGT	256
1761fe6c4eeSScott Long 
1771fe6c4eeSScott Long #define CISS_IS_PHYSICAL(bus)	(bus >= CISS_PHYSICAL_BASE)
1781fe6c4eeSScott Long #define CISS_CAM_TO_PBUS(bus)	(bus - CISS_PHYSICAL_BASE)
1791fe6c4eeSScott Long 
1801fe6c4eeSScott Long /*
1813a31b7ebSMike Smith  * Per-adapter data
1823a31b7ebSMike Smith  */
1833a31b7ebSMike Smith struct ciss_softc
1843a31b7ebSMike Smith {
1853a31b7ebSMike Smith     /* bus connections */
1863a31b7ebSMike Smith     device_t			ciss_dev;		/* bus attachment */
18789c9c53dSPoul-Henning Kamp     struct cdev			*ciss_dev_t;		/* control device */
1883a31b7ebSMike Smith 
1893a31b7ebSMike Smith     struct resource		*ciss_regs_resource;	/* register interface window */
1903a31b7ebSMike Smith     int				ciss_regs_rid;		/* resource ID */
1913a31b7ebSMike Smith     bus_space_handle_t		ciss_regs_bhandle;	/* bus space handle */
1923a31b7ebSMike Smith     bus_space_tag_t		ciss_regs_btag;		/* bus space tag */
1933a31b7ebSMike Smith 
1943a31b7ebSMike Smith     struct resource		*ciss_cfg_resource;	/* config struct interface window */
1953a31b7ebSMike Smith     int				ciss_cfg_rid;		/* resource ID */
1963a31b7ebSMike Smith     struct ciss_config_table	*ciss_cfg;		/* config table in adapter memory */
19722657ce1SScott Long     struct ciss_perf_config	*ciss_perf;		/* config table for the performant */
1983a31b7ebSMike Smith     struct ciss_bmic_id_table	*ciss_id;		/* ID table in host memory */
1993a31b7ebSMike Smith     u_int32_t			ciss_heartbeat;		/* last heartbeat value */
2003a31b7ebSMike Smith     int				ciss_heart_attack;	/* number of times we have seen this value */
2013a31b7ebSMike Smith 
20222657ce1SScott Long     int				ciss_msi;
2033a31b7ebSMike Smith     struct resource		*ciss_irq_resource;	/* interrupt */
20422657ce1SScott Long     int				ciss_irq_rid[CISS_MSI_COUNT];		/* resource ID */
2053a31b7ebSMike Smith     void			*ciss_intr;		/* interrupt handle */
2063a31b7ebSMike Smith 
2073a31b7ebSMike Smith     bus_dma_tag_t		ciss_parent_dmat;	/* parent DMA tag */
2083a31b7ebSMike Smith     bus_dma_tag_t		ciss_buffer_dmat;	/* data buffer/command DMA tag */
2093a31b7ebSMike Smith 
2103a31b7ebSMike Smith     u_int32_t			ciss_interrupt_mask;	/* controller interrupt mask bits */
2113a31b7ebSMike Smith 
21222657ce1SScott Long     uint64_t			*ciss_reply;
21322657ce1SScott Long     int				ciss_cycle;
21422657ce1SScott Long     int				ciss_rqidx;
21522657ce1SScott Long     bus_dma_tag_t		ciss_reply_dmat;
21622657ce1SScott Long     bus_dmamap_t		ciss_reply_map;
21722657ce1SScott Long     uint32_t			ciss_reply_phys;
21822657ce1SScott Long 
2193a31b7ebSMike Smith     int				ciss_max_requests;
2203a31b7ebSMike Smith     struct ciss_request		ciss_request[CISS_MAX_REQUESTS];	/* requests */
2213a31b7ebSMike Smith     void			*ciss_command;		/* command structures */
2223a31b7ebSMike Smith     bus_dma_tag_t		ciss_command_dmat;	/* command DMA tag */
2233a31b7ebSMike Smith     bus_dmamap_t		ciss_command_map;	/* command DMA map */
2243a31b7ebSMike Smith     u_int32_t			ciss_command_phys;	/* command array base address */
22522657ce1SScott Long     cr_qhead_t			ciss_free;		/* requests available for reuse */
22622657ce1SScott Long     cr_qhead_t			ciss_notify;		/* requests which are defered for processing */
227c6131460SPaul Saab     struct proc			*ciss_notify_thread;
2283a31b7ebSMike Smith 
229975b7318SScott Long     struct callout		ciss_periodic;		/* periodic event handling */
2303a31b7ebSMike Smith     struct ciss_request		*ciss_periodic_notify;	/* notify callback request */
2313a31b7ebSMike Smith 
232975b7318SScott Long     struct mtx			ciss_mtx;
233c6131460SPaul Saab     struct ciss_ldrive		**ciss_logical;
2341fe6c4eeSScott Long     struct ciss_pdrive		**ciss_physical;
235c6131460SPaul Saab     union ciss_device_address	*ciss_controllers;	/* controller address */
236c6131460SPaul Saab     int				ciss_max_bus_number;	/* maximum bus number */
2371fe6c4eeSScott Long     int				ciss_max_logical_bus;
2381fe6c4eeSScott Long     int				ciss_max_physical_bus;
239*45645518SPeter Eriksson     int				ciss_max_physical_target;	/* highest physical target number */
2403a31b7ebSMike Smith 
2413a31b7ebSMike Smith     struct cam_devq		*ciss_cam_devq;
242c6131460SPaul Saab     struct cam_sim		**ciss_cam_sim;
2433a31b7ebSMike Smith 
24417c0792dSPaul Saab     int				ciss_soft_reset;
24517c0792dSPaul Saab 
2463a31b7ebSMike Smith     int				ciss_flags;
2473a31b7ebSMike Smith #define CISS_FLAG_NOTIFY_OK	(1<<0)		/* notify command running OK */
2483a31b7ebSMike Smith #define CISS_FLAG_CONTROL_OPEN	(1<<1)		/* control device is open */
2493a31b7ebSMike Smith #define CISS_FLAG_ABORTING	(1<<2)		/* driver is going away */
2503a31b7ebSMike Smith #define CISS_FLAG_RUNNING	(1<<3)		/* driver is running (interrupts usable) */
25195dab4f2SAlexander Motin #define CISS_FLAG_BUSY		(1<<4)		/* no free commands */
2523a31b7ebSMike Smith 
2533a31b7ebSMike Smith #define CISS_FLAG_FAKE_SYNCH	(1<<16)		/* needs SYNCHRONISE_CACHE faked */
2543a31b7ebSMike Smith #define CISS_FLAG_BMIC_ABORT	(1<<17)		/* use BMIC command to abort Notify on Event */
255c6131460SPaul Saab #define CISS_FLAG_THREAD_SHUT	(1<<20)		/* shutdown the kthread */
2563a31b7ebSMike Smith 
2573a31b7ebSMike Smith     struct ciss_qstat		ciss_qstat[CISSQ_COUNT];	/* queue statistics */
2583a31b7ebSMike Smith };
2593a31b7ebSMike Smith 
2603a31b7ebSMike Smith /************************************************************************
2613a31b7ebSMike Smith  * Debugging/diagnostic output.
2623a31b7ebSMike Smith  */
2633a31b7ebSMike Smith 
2643a31b7ebSMike Smith /*
2653a31b7ebSMike Smith  * Debugging levels:
2663a31b7ebSMike Smith  *  0 - quiet, only emit warnings
2673a31b7ebSMike Smith  *  1 - talkative, log major events, but nothing on the I/O path
2683a31b7ebSMike Smith  *  2 - noisy, log events on the I/O path
2693a31b7ebSMike Smith  *  3 - extremely noisy, log items in loops
2703a31b7ebSMike Smith  */
2713a31b7ebSMike Smith #ifdef CISS_DEBUG
2723a31b7ebSMike Smith # define debug(level, fmt, args...)							\
2733a31b7ebSMike Smith 	do {										\
2746e551fb6SDavid E. O'Brien 	    if (level <= CISS_DEBUG) printf("%s: " fmt "\n", __func__ , ##args);	\
2753a31b7ebSMike Smith 	} while(0)
2763a31b7ebSMike Smith # define debug_called(level)						\
2773a31b7ebSMike Smith 	do {								\
2786e551fb6SDavid E. O'Brien 	    if (level <= CISS_DEBUG) printf("%s: called\n", __func__);	\
2793a31b7ebSMike Smith 	} while(0)
2804caad4e8SMaxime Henrion # define debug_struct(s)		printf("  SIZE %s: %zu\n", #s, sizeof(struct s))
2814caad4e8SMaxime Henrion # define debug_union(s)			printf("  SIZE %s: %zu\n", #s, sizeof(union s))
2824caad4e8SMaxime Henrion # define debug_type(s)			printf("  SIZE %s: %zu\n", #s, sizeof(s))
2833a31b7ebSMike Smith # define debug_field(s, f)		printf("  OFFSET %s.%s: %d\n", #s, #f, ((int)&(((struct s *)0)->f)))
2844caad4e8SMaxime Henrion # define debug_const(c)			printf("  CONST %s %jd/0x%jx\n", #c, (intmax_t)c, (intmax_t)c);
2853a31b7ebSMike Smith #else
2863a31b7ebSMike Smith # define debug(level, fmt, args...)
2873a31b7ebSMike Smith # define debug_called(level)
2883a31b7ebSMike Smith # define debug_struct(s)
2893a31b7ebSMike Smith # define debug_union(s)
2903a31b7ebSMike Smith # define debug_type(s)
2913a31b7ebSMike Smith # define debug_field(s, f)
2923a31b7ebSMike Smith # define debug_const(c)
2933a31b7ebSMike Smith #endif
2943a31b7ebSMike Smith 
2953a31b7ebSMike Smith #define ciss_printf(sc, fmt, args...)	device_printf(sc->ciss_dev, fmt , ##args)
2963a31b7ebSMike Smith 
2973a31b7ebSMike Smith /************************************************************************
2983a31b7ebSMike Smith  * Queue primitives
2993a31b7ebSMike Smith  */
3003a31b7ebSMike Smith 
3013a31b7ebSMike Smith #define CISSQ_ADD(sc, qname)					\
3023a31b7ebSMike Smith 	do {							\
3033a31b7ebSMike Smith 	    struct ciss_qstat *qs = &(sc)->ciss_qstat[qname];	\
3043a31b7ebSMike Smith 								\
3053a31b7ebSMike Smith 	    qs->q_length++;					\
3063a31b7ebSMike Smith 	    if (qs->q_length > qs->q_max)			\
3073a31b7ebSMike Smith 		qs->q_max = qs->q_length;			\
3083a31b7ebSMike Smith 	} while(0)
3093a31b7ebSMike Smith 
3103a31b7ebSMike Smith #define CISSQ_REMOVE(sc, qname)    (sc)->ciss_qstat[qname].q_length--
3113a31b7ebSMike Smith #define CISSQ_INIT(sc, qname)			\
3123a31b7ebSMike Smith 	do {					\
3133a31b7ebSMike Smith 	    sc->ciss_qstat[qname].q_length = 0;	\
3143a31b7ebSMike Smith 	    sc->ciss_qstat[qname].q_max = 0;	\
3153a31b7ebSMike Smith 	} while(0)
3163a31b7ebSMike Smith 
3173a31b7ebSMike Smith #define CISSQ_REQUEST_QUEUE(name, index)				\
3183a31b7ebSMike Smith static __inline void							\
3193a31b7ebSMike Smith ciss_initq_ ## name (struct ciss_softc *sc)				\
3203a31b7ebSMike Smith {									\
32122657ce1SScott Long     STAILQ_INIT(&sc->ciss_ ## name);					\
3223a31b7ebSMike Smith     CISSQ_INIT(sc, index);						\
3233a31b7ebSMike Smith }									\
3243a31b7ebSMike Smith static __inline void							\
3253a31b7ebSMike Smith ciss_enqueue_ ## name (struct ciss_request *cr)				\
3263a31b7ebSMike Smith {									\
3273a31b7ebSMike Smith 									\
32822657ce1SScott Long     STAILQ_INSERT_TAIL(&cr->cr_sc->ciss_ ## name, cr, cr_link);		\
3293a31b7ebSMike Smith     CISSQ_ADD(cr->cr_sc, index);					\
3303a31b7ebSMike Smith     cr->cr_onq = index;							\
3313a31b7ebSMike Smith }									\
3323a31b7ebSMike Smith static __inline void							\
3333a31b7ebSMike Smith ciss_requeue_ ## name (struct ciss_request *cr)				\
3343a31b7ebSMike Smith {									\
3353a31b7ebSMike Smith 									\
33622657ce1SScott Long     STAILQ_INSERT_HEAD(&cr->cr_sc->ciss_ ## name, cr, cr_link);		\
3373a31b7ebSMike Smith     CISSQ_ADD(cr->cr_sc, index);					\
3383a31b7ebSMike Smith     cr->cr_onq = index;							\
3393a31b7ebSMike Smith }									\
3403a31b7ebSMike Smith static __inline struct ciss_request *					\
3413a31b7ebSMike Smith ciss_dequeue_ ## name (struct ciss_softc *sc)				\
3423a31b7ebSMike Smith {									\
3433a31b7ebSMike Smith     struct ciss_request	*cr;						\
3443a31b7ebSMike Smith 									\
34522657ce1SScott Long     if ((cr = STAILQ_FIRST(&sc->ciss_ ## name)) != NULL) {		\
34622657ce1SScott Long 	STAILQ_REMOVE_HEAD(&sc->ciss_ ## name, cr_link);		\
3473a31b7ebSMike Smith 	CISSQ_REMOVE(sc, index);					\
3483a31b7ebSMike Smith 	cr->cr_onq = -1;						\
3493a31b7ebSMike Smith     }									\
3503a31b7ebSMike Smith     return(cr);								\
3513a31b7ebSMike Smith }									\
3523a31b7ebSMike Smith struct hack
3533a31b7ebSMike Smith 
3543a31b7ebSMike Smith CISSQ_REQUEST_QUEUE(free, CISSQ_FREE);
355c6131460SPaul Saab CISSQ_REQUEST_QUEUE(notify, CISSQ_NOTIFY);
3563a31b7ebSMike Smith 
35722657ce1SScott Long static __inline void
ciss_enqueue_complete(struct ciss_request * ac,cr_qhead_t * head)35822657ce1SScott Long ciss_enqueue_complete(struct ciss_request *ac, cr_qhead_t *head)
35922657ce1SScott Long {
36022657ce1SScott Long 
36122657ce1SScott Long     STAILQ_INSERT_TAIL(head, ac, cr_link);
36222657ce1SScott Long }
36322657ce1SScott Long 
36422657ce1SScott Long static __inline struct ciss_request *
ciss_dequeue_complete(struct ciss_softc * sc,cr_qhead_t * head)36522657ce1SScott Long ciss_dequeue_complete(struct ciss_softc *sc, cr_qhead_t *head)
36622657ce1SScott Long {
36722657ce1SScott Long     struct ciss_request  *ac;
36822657ce1SScott Long 
36922657ce1SScott Long     if ((ac = STAILQ_FIRST(head)) != NULL)
37022657ce1SScott Long         STAILQ_REMOVE_HEAD(head, cr_link);
37122657ce1SScott Long     return(ac);
37222657ce1SScott Long }
37322657ce1SScott Long 
3743a31b7ebSMike Smith /********************************************************************************
3753a31b7ebSMike Smith  * space-fill a character string
3763a31b7ebSMike Smith  */
3773a31b7ebSMike Smith static __inline void
padstr(char * targ,const char * src,int len)3783a31b7ebSMike Smith padstr(char *targ, const char *src, int len)
3793a31b7ebSMike Smith {
3803a31b7ebSMike Smith     while (len-- > 0) {
3813a31b7ebSMike Smith 	if (*src != 0) {
3823a31b7ebSMike Smith 	    *targ++ = *src++;
3833a31b7ebSMike Smith 	} else {
3843a31b7ebSMike Smith 	    *targ++ = ' ';
3853a31b7ebSMike Smith 	}
3863a31b7ebSMike Smith     }
3873a31b7ebSMike Smith }
38822657ce1SScott Long 
38922657ce1SScott Long #define ciss_report_request(a, b, c)	\
39022657ce1SScott Long 	_ciss_report_request(a, b, c, __FUNCTION__)
391