xref: /dragonfly/sys/dev/raid/ciss/ciss.c (revision 9b9cf381)
1 /*-
2  * Copyright (c) 2001 Michael Smith
3  * Copyright (c) 2004 Paul Saab
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  *	$FreeBSD: src/sys/dev/ciss/ciss.c,v 1.113 2012/03/12 08:03:51 scottl Exp $
28  */
29 
30 /*
31  * Common Interface for SCSI-3 Support driver.
32  *
33  * CISS claims to provide a common interface between a generic SCSI
34  * transport and an intelligent host adapter.
35  *
36  * This driver supports CISS as defined in the document "CISS Command
37  * Interface for SCSI-3 Support Open Specification", Version 1.04,
38  * Valence Number 1, dated 20001127, produced by Compaq Computer
39  * Corporation.  This document appears to be a hastily and somewhat
40  * arbitrarlily cut-down version of a larger (and probably even more
41  * chaotic and inconsistent) Compaq internal document.  Various
42  * details were also gleaned from Compaq's "cciss" driver for Linux.
43  *
44  * We provide a shim layer between the CISS interface and CAM,
45  * offloading most of the queueing and being-a-disk chores onto CAM.
46  * Entry to the driver is via the PCI bus attachment (ciss_probe,
47  * ciss_attach, etc) and via the CAM interface (ciss_cam_action,
48  * ciss_cam_poll).  The Compaq CISS adapters are, however, poor SCSI
49  * citizens and we have to fake up some responses to get reasonable
50  * behaviour out of them.  In addition, the CISS command set is by no
51  * means adequate to support the functionality of a RAID controller,
52  * and thus the supported Compaq adapters utilise portions of the
53  * control protocol from earlier Compaq adapter families.
54  *
55  * Note that we only support the "simple" transport layer over PCI.
56  * This interface (ab)uses the I2O register set (specifically the post
57  * queues) to exchange commands with the adapter.  Other interfaces
58  * are available, but we aren't supposed to know about them, and it is
59  * dubious whether they would provide major performance improvements
60  * except under extreme load.
61  *
62  * Currently the only supported CISS adapters are the Compaq Smart
63  * Array 5* series (5300, 5i, 532).  Even with only three adapters,
64  * Compaq still manage to have interface variations.
65  *
66  *
67  * Thanks must go to Fred Harris and Darryl DeVinney at Compaq, as
68  * well as Paul Saab at Yahoo! for their assistance in making this
69  * driver happen.
70  *
71  * More thanks must go to John Cagle at HP for the countless hours
72  * spent making this driver "work" with the MSA* series storage
73  * enclosures.  Without his help (and nagging), this driver could not
74  * be used with these enclosures.
75  */
76 
77 #include <sys/param.h>
78 #include <sys/systm.h>
79 #include <sys/malloc.h>
80 #include <sys/kernel.h>
81 #include <sys/bus.h>
82 #include <sys/conf.h>
83 #include <sys/stat.h>
84 #include <sys/kthread.h>
85 #include <sys/queue.h>
86 #include <sys/sysctl.h>
87 #include <sys/device.h>
88 
89 #include <bus/cam/cam.h>
90 #include <bus/cam/cam_ccb.h>
91 #include <bus/cam/cam_periph.h>
92 #include <bus/cam/cam_sim.h>
93 #include <bus/cam/cam_xpt_sim.h>
94 #include <bus/cam/scsi/scsi_all.h>
95 #include <bus/cam/scsi/scsi_message.h>
96 
97 #include <machine/endian.h>
98 #include <sys/rman.h>
99 
100 #include <bus/pci/pcireg.h>
101 #include <bus/pci/pcivar.h>
102 
103 #include <dev/raid/ciss/cissreg.h>
104 #include <dev/raid/ciss/cissio.h>
105 #include <dev/raid/ciss/cissvar.h>
106 
107 static MALLOC_DEFINE(CISS_MALLOC_CLASS, "ciss_data",
108     "ciss internal data buffers");
109 
110 /* pci interface */
111 static int	ciss_lookup(device_t dev);
112 static int	ciss_probe(device_t dev);
113 static int	ciss_attach(device_t dev);
114 static int	ciss_detach(device_t dev);
115 static int	ciss_shutdown(device_t dev);
116 
117 /* (de)initialisation functions, control wrappers */
118 static int	ciss_init_pci(struct ciss_softc *sc);
119 static int	ciss_setup_msix(struct ciss_softc *sc);
120 static int	ciss_init_perf(struct ciss_softc *sc);
121 static int	ciss_wait_adapter(struct ciss_softc *sc);
122 static int	ciss_flush_adapter(struct ciss_softc *sc);
123 static int	ciss_init_requests(struct ciss_softc *sc);
124 static void	ciss_command_map_helper(void *arg, bus_dma_segment_t *segs,
125 					int nseg, int error);
126 static int	ciss_identify_adapter(struct ciss_softc *sc);
127 static int	ciss_init_logical(struct ciss_softc *sc);
128 static int	ciss_init_physical(struct ciss_softc *sc);
129 static int	ciss_filter_physical(struct ciss_softc *sc, struct ciss_lun_report *cll);
130 static int	ciss_identify_logical(struct ciss_softc *sc, struct ciss_ldrive *ld);
131 static int	ciss_get_ldrive_status(struct ciss_softc *sc,  struct ciss_ldrive *ld);
132 static int	ciss_update_config(struct ciss_softc *sc);
133 static int	ciss_accept_media(struct ciss_softc *sc, struct ciss_ldrive *ld);
134 static void	ciss_init_sysctl(struct ciss_softc *sc);
135 static void	ciss_soft_reset(struct ciss_softc *sc);
136 static void	ciss_free(struct ciss_softc *sc);
137 static void	ciss_spawn_notify_thread(struct ciss_softc *sc);
138 static void	ciss_kill_notify_thread(struct ciss_softc *sc);
139 
140 /* request submission/completion */
141 static int	ciss_start(struct ciss_request *cr);
142 static void	ciss_done(struct ciss_softc *sc, cr_qhead_t *qh);
143 static void	ciss_perf_done(struct ciss_softc *sc, cr_qhead_t *qh);
144 static void	ciss_intr(void *arg);
145 static void	ciss_perf_intr(void *arg);
146 static void	ciss_perf_msi_intr(void *arg);
147 static void	ciss_complete(struct ciss_softc *sc, cr_qhead_t *qh);
148 static int	_ciss_report_request(struct ciss_request *cr, int *command_status, int *scsi_status, const char *func);
149 static int	ciss_synch_request(struct ciss_request *cr, int timeout);
150 static int	ciss_poll_request(struct ciss_request *cr, int timeout);
151 static int	ciss_wait_request(struct ciss_request *cr, int timeout);
152 #if 0
153 static int	ciss_abort_request(struct ciss_request *cr);
154 #endif
155 
156 /* request queueing */
157 static int	ciss_get_request(struct ciss_softc *sc, struct ciss_request **crp);
158 static void	ciss_preen_command(struct ciss_request *cr);
159 static void 	ciss_release_request(struct ciss_request *cr);
160 
161 /* request helpers */
162 static int	ciss_get_bmic_request(struct ciss_softc *sc, struct ciss_request **crp,
163 				      int opcode, void **bufp, size_t bufsize);
164 static int	ciss_user_command(struct ciss_softc *sc, IOCTL_Command_struct *ioc);
165 
166 /* DMA map/unmap */
167 static int	ciss_map_request(struct ciss_request *cr);
168 static void	ciss_request_map_helper(void *arg, bus_dma_segment_t *segs,
169 					int nseg, int error);
170 static void	ciss_unmap_request(struct ciss_request *cr);
171 
172 /* CAM interface */
173 static int	ciss_cam_init(struct ciss_softc *sc);
174 static void	ciss_cam_rescan_target(struct ciss_softc *sc,
175 				       int bus, int target);
176 static void	ciss_cam_rescan_all(struct ciss_softc *sc);
177 static void	ciss_cam_rescan_callback(struct cam_periph *periph, union ccb *ccb);
178 static void	ciss_cam_action(struct cam_sim *sim, union ccb *ccb);
179 static int	ciss_cam_action_io(struct cam_sim *sim, struct ccb_scsiio *csio);
180 static int	ciss_cam_emulate(struct ciss_softc *sc, struct ccb_scsiio *csio);
181 static void	ciss_cam_poll(struct cam_sim *sim);
182 static void	ciss_cam_complete(struct ciss_request *cr);
183 static void	ciss_cam_complete_fixup(struct ciss_softc *sc, struct ccb_scsiio *csio);
184 static struct cam_periph *ciss_find_periph(struct ciss_softc *sc,
185 					   int bus, int target);
186 static int	ciss_name_device(struct ciss_softc *sc, int bus, int target);
187 
188 /* periodic status monitoring */
189 static void	ciss_periodic(void *arg);
190 static void	ciss_nop_complete(struct ciss_request *cr);
191 static void	ciss_disable_adapter(struct ciss_softc *sc);
192 static void	ciss_notify_event(struct ciss_softc *sc);
193 static void	ciss_notify_complete(struct ciss_request *cr);
194 static int	ciss_notify_abort(struct ciss_softc *sc);
195 static int	ciss_notify_abort_bmic(struct ciss_softc *sc);
196 static void	ciss_notify_hotplug(struct ciss_softc *sc, struct ciss_notify *cn);
197 static void	ciss_notify_logical(struct ciss_softc *sc, struct ciss_notify *cn);
198 static void	ciss_notify_physical(struct ciss_softc *sc, struct ciss_notify *cn);
199 
200 /* debugging output */
201 static void	ciss_print_request(struct ciss_request *cr);
202 static void	ciss_print_ldrive(struct ciss_softc *sc, struct ciss_ldrive *ld);
203 static const char *ciss_name_ldrive_status(int status);
204 static int	ciss_decode_ldrive_status(int status);
205 static const char *ciss_name_ldrive_org(int org);
206 static const char *ciss_name_command_status(int status);
207 
208 /*
209  * PCI bus interface.
210  */
211 static device_method_t ciss_methods[] = {
212     /* Device interface */
213     DEVMETHOD(device_probe,	ciss_probe),
214     DEVMETHOD(device_attach,	ciss_attach),
215     DEVMETHOD(device_detach,	ciss_detach),
216     DEVMETHOD(device_shutdown,	ciss_shutdown),
217     { 0, 0 }
218 };
219 
220 static driver_t ciss_pci_driver = {
221     "ciss",
222     ciss_methods,
223     sizeof(struct ciss_softc)
224 };
225 
226 static devclass_t	ciss_devclass;
227 DRIVER_MODULE(ciss, pci, ciss_pci_driver, ciss_devclass, NULL, NULL);
228 MODULE_VERSION(ciss, 1);
229 MODULE_DEPEND(ciss, cam, 1, 1, 1);
230 MODULE_DEPEND(ciss, pci, 1, 1, 1);
231 
232 /*
233  * Control device interface.
234  */
235 static d_open_t		ciss_open;
236 static d_close_t	ciss_close;
237 static d_ioctl_t	ciss_ioctl;
238 
239 static struct dev_ops ciss_ops = {
240 	{ "ciss", 0, 0 },
241 	.d_open =	ciss_open,
242 	.d_close =	ciss_close,
243 	.d_ioctl =	ciss_ioctl,
244 };
245 
246 /*
247  * This tunable can be set at boot time and controls whether physical devices
248  * that are marked hidden by the firmware should be exposed anyways.
249  */
250 static unsigned int ciss_expose_hidden_physical = 0;
251 TUNABLE_INT("hw.ciss.expose_hidden_physical", &ciss_expose_hidden_physical);
252 
253 static unsigned int ciss_nop_message_heartbeat = 0;
254 TUNABLE_INT("hw.ciss.nop_message_heartbeat", &ciss_nop_message_heartbeat);
255 
256 /*
257  * This tunable can force a particular transport to be used:
258  * <= 0 : use default
259  *    1 : force simple
260  *    2 : force performant
261  */
262 static int ciss_force_transport = 0;
263 TUNABLE_INT("hw.ciss.force_transport", &ciss_force_transport);
264 
265 /*
266  * This tunable can force a particular interrupt delivery method to be used:
267  * <= 0 : use default
268  *    1 : force INTx
269  *    2 : force MSIX
270  */
271 static int ciss_force_interrupt = 0;
272 TUNABLE_INT("hw.ciss.force_interrupt", &ciss_force_interrupt);
273 
274 /************************************************************************
275  * CISS adapters amazingly don't have a defined programming interface
276  * value.  (One could say some very despairing things about PCI and
277  * people just not getting the general idea.)  So we are forced to
278  * stick with matching against subvendor/subdevice, and thus have to
279  * be updated for every new CISS adapter that appears.
280  */
281 #define CISS_BOARD_UNKNWON	0
282 #define CISS_BOARD_SA5		1
283 #define CISS_BOARD_SA5B		2
284 #define CISS_BOARD_NOMSI	(1<<4)
285 
286 static struct
287 {
288     u_int16_t	subvendor;
289     u_int16_t	subdevice;
290     int		flags;
291     char	*desc;
292 } ciss_vendor_data[] = {
293     { 0x0e11, 0x4070, CISS_BOARD_SA5|CISS_BOARD_NOMSI,	"Compaq Smart Array 5300" },
294     { 0x0e11, 0x4080, CISS_BOARD_SA5B|CISS_BOARD_NOMSI,	"Compaq Smart Array 5i" },
295     { 0x0e11, 0x4082, CISS_BOARD_SA5B|CISS_BOARD_NOMSI,	"Compaq Smart Array 532" },
296     { 0x0e11, 0x4083, CISS_BOARD_SA5B|CISS_BOARD_NOMSI,	"HP Smart Array 5312" },
297     { 0x0e11, 0x4091, CISS_BOARD_SA5,	"HP Smart Array 6i" },
298     { 0x0e11, 0x409A, CISS_BOARD_SA5,	"HP Smart Array 641" },
299     { 0x0e11, 0x409B, CISS_BOARD_SA5,	"HP Smart Array 642" },
300     { 0x0e11, 0x409C, CISS_BOARD_SA5,	"HP Smart Array 6400" },
301     { 0x0e11, 0x409D, CISS_BOARD_SA5,	"HP Smart Array 6400 EM" },
302     { 0x103C, 0x3211, CISS_BOARD_SA5,	"HP Smart Array E200i" },
303     { 0x103C, 0x3212, CISS_BOARD_SA5,	"HP Smart Array E200" },
304     { 0x103C, 0x3213, CISS_BOARD_SA5,	"HP Smart Array E200i" },
305     { 0x103C, 0x3214, CISS_BOARD_SA5,	"HP Smart Array E200i" },
306     { 0x103C, 0x3215, CISS_BOARD_SA5,	"HP Smart Array E200i" },
307     { 0x103C, 0x3220, CISS_BOARD_SA5,	"HP Smart Array" },
308     { 0x103C, 0x3222, CISS_BOARD_SA5,	"HP Smart Array" },
309     { 0x103C, 0x3223, CISS_BOARD_SA5,	"HP Smart Array P800" },
310     { 0x103C, 0x3225, CISS_BOARD_SA5,	"HP Smart Array P600" },
311     { 0x103C, 0x3230, CISS_BOARD_SA5,	"HP Smart Array" },
312     { 0x103C, 0x3231, CISS_BOARD_SA5,	"HP Smart Array" },
313     { 0x103C, 0x3232, CISS_BOARD_SA5,	"HP Smart Array" },
314     { 0x103C, 0x3233, CISS_BOARD_SA5,	"HP Smart Array" },
315     { 0x103C, 0x3234, CISS_BOARD_SA5,	"HP Smart Array P400" },
316     { 0x103C, 0x3235, CISS_BOARD_SA5,	"HP Smart Array P400i" },
317     { 0x103C, 0x3236, CISS_BOARD_SA5,	"HP Smart Array" },
318     { 0x103C, 0x3237, CISS_BOARD_SA5,	"HP Smart Array E500" },
319     { 0x103C, 0x3238, CISS_BOARD_SA5,	"HP Smart Array" },
320     { 0x103C, 0x3239, CISS_BOARD_SA5,	"HP Smart Array" },
321     { 0x103C, 0x323A, CISS_BOARD_SA5,	"HP Smart Array" },
322     { 0x103C, 0x323B, CISS_BOARD_SA5,	"HP Smart Array" },
323     { 0x103C, 0x323C, CISS_BOARD_SA5,	"HP Smart Array" },
324     { 0x103C, 0x323D, CISS_BOARD_SA5,	"HP Smart Array P700m" },
325     { 0x103C, 0x3241, CISS_BOARD_SA5,	"HP Smart Array P212" },
326     { 0x103C, 0x3243, CISS_BOARD_SA5,	"HP Smart Array P410" },
327     { 0x103C, 0x3245, CISS_BOARD_SA5,	"HP Smart Array P410i" },
328     { 0x103C, 0x3247, CISS_BOARD_SA5,	"HP Smart Array P411" },
329     { 0x103C, 0x3249, CISS_BOARD_SA5,	"HP Smart Array P812" },
330     { 0x103C, 0x324A, CISS_BOARD_SA5,	"HP Smart Array P712m" },
331     { 0x103C, 0x324B, CISS_BOARD_SA5,	"HP Smart Array" },
332     { 0x103C, 0x3350, CISS_BOARD_SA5,   "HP Smart Array P222" },
333     { 0x103C, 0x3351, CISS_BOARD_SA5,   "HP Smart Array P420" },
334     { 0x103C, 0x3352, CISS_BOARD_SA5,   "HP Smart Array P421" },
335     { 0x103C, 0x3353, CISS_BOARD_SA5,   "HP Smart Array P822" },
336     { 0x103C, 0x3354, CISS_BOARD_SA5,   "HP Smart Array P420i" },
337     { 0x103C, 0x3355, CISS_BOARD_SA5,   "HP Smart Array P220i" },
338     { 0x103C, 0x3356, CISS_BOARD_SA5,   "HP Smart Array P721m" },
339     { 0, 0, 0, NULL }
340 };
341 
342 /************************************************************************
343  * Find a match for the device in our list of known adapters.
344  */
345 static int
346 ciss_lookup(device_t dev)
347 {
348     int 	i;
349 
350     for (i = 0; ciss_vendor_data[i].desc != NULL; i++)
351 	if ((pci_get_subvendor(dev) == ciss_vendor_data[i].subvendor) &&
352 	    (pci_get_subdevice(dev) == ciss_vendor_data[i].subdevice)) {
353 	    return(i);
354 	}
355     return(-1);
356 }
357 
358 /************************************************************************
359  * Match a known CISS adapter.
360  */
361 static int
362 ciss_probe(device_t dev)
363 {
364     int		i;
365 
366     i = ciss_lookup(dev);
367     if (i != -1) {
368 	device_set_desc(dev, ciss_vendor_data[i].desc);
369 	return(BUS_PROBE_DEFAULT);
370     }
371     return(ENOENT);
372 }
373 
374 /************************************************************************
375  * Attach the driver to this adapter.
376  */
377 static int
378 ciss_attach(device_t dev)
379 {
380     struct ciss_softc	*sc;
381     int			error;
382 
383     debug_called(1);
384 
385 #ifdef CISS_DEBUG
386     /* print structure/union sizes */
387     debug_struct(ciss_command);
388     debug_struct(ciss_header);
389     debug_union(ciss_device_address);
390     debug_struct(ciss_cdb);
391     debug_struct(ciss_report_cdb);
392     debug_struct(ciss_notify_cdb);
393     debug_struct(ciss_notify);
394     debug_struct(ciss_message_cdb);
395     debug_struct(ciss_error_info_pointer);
396     debug_struct(ciss_error_info);
397     debug_struct(ciss_sg_entry);
398     debug_struct(ciss_config_table);
399     debug_struct(ciss_bmic_cdb);
400     debug_struct(ciss_bmic_id_ldrive);
401     debug_struct(ciss_bmic_id_lstatus);
402     debug_struct(ciss_bmic_id_table);
403     debug_struct(ciss_bmic_id_pdrive);
404     debug_struct(ciss_bmic_blink_pdrive);
405     debug_struct(ciss_bmic_flush_cache);
406     debug_const(CISS_MAX_REQUESTS);
407     debug_const(CISS_MAX_LOGICAL);
408     debug_const(CISS_INTERRUPT_COALESCE_DELAY);
409     debug_const(CISS_INTERRUPT_COALESCE_COUNT);
410     debug_const(CISS_COMMAND_ALLOC_SIZE);
411     debug_const(CISS_COMMAND_SG_LENGTH);
412 
413     debug_type(cciss_pci_info_struct);
414     debug_type(cciss_coalint_struct);
415     debug_type(cciss_coalint_struct);
416     debug_type(NodeName_type);
417     debug_type(NodeName_type);
418     debug_type(Heartbeat_type);
419     debug_type(BusTypes_type);
420     debug_type(FirmwareVer_type);
421     debug_type(DriverVer_type);
422     debug_type(IOCTL_Command_struct);
423 #endif
424 
425     sc = device_get_softc(dev);
426     sc->ciss_dev = dev;
427     lockinit(&sc->ciss_lock, "cissmtx", 0, LK_CANRECURSE);
428     callout_init(&sc->ciss_periodic);
429 
430     /*
431      * Do PCI-specific init.
432      */
433     if ((error = ciss_init_pci(sc)) != 0)
434 	goto out;
435 
436     /*
437      * Initialise driver queues.
438      */
439     ciss_initq_free(sc);
440     ciss_initq_notify(sc);
441 
442     /*
443      * Initalize device sysctls.
444      */
445     ciss_init_sysctl(sc);
446 
447     /*
448      * Initialise command/request pool.
449      */
450     if ((error = ciss_init_requests(sc)) != 0)
451 	goto out;
452 
453     /*
454      * Get adapter information.
455      */
456     if ((error = ciss_identify_adapter(sc)) != 0)
457 	goto out;
458 
459     /*
460      * Find all the physical devices.
461      */
462     if ((error = ciss_init_physical(sc)) != 0)
463 	goto out;
464 
465     /*
466      * Build our private table of logical devices.
467      */
468     if ((error = ciss_init_logical(sc)) != 0)
469 	goto out;
470 
471     /*
472      * Enable interrupts so that the CAM scan can complete.
473      */
474     CISS_TL_SIMPLE_ENABLE_INTERRUPTS(sc);
475 
476     /*
477      * Initialise the CAM interface.
478      */
479     if ((error = ciss_cam_init(sc)) != 0)
480 	goto out;
481 
482     /*
483      * Start the heartbeat routine and event chain.
484      */
485     ciss_periodic(sc);
486 
487     /*
488      * Create the control device.
489      */
490     sc->ciss_dev_t = make_dev(&ciss_ops, device_get_unit(sc->ciss_dev),
491 			      UID_ROOT, GID_OPERATOR, S_IRUSR | S_IWUSR,
492 			      "ciss%d", device_get_unit(sc->ciss_dev));
493     sc->ciss_dev_t->si_drv1 = sc;
494 
495     /*
496      * The adapter is running; synchronous commands can now sleep
497      * waiting for an interrupt to signal completion.
498      */
499     sc->ciss_flags |= CISS_FLAG_RUNNING;
500 
501     ciss_spawn_notify_thread(sc);
502 
503     error = 0;
504  out:
505     if (error != 0) {
506 	/* ciss_free() expects the mutex to be held */
507 	lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
508 	ciss_free(sc);
509     }
510     return(error);
511 }
512 
513 /************************************************************************
514  * Detach the driver from this adapter.
515  */
516 static int
517 ciss_detach(device_t dev)
518 {
519     struct ciss_softc	*sc = device_get_softc(dev);
520 
521     debug_called(1);
522 
523     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
524     if (sc->ciss_flags & CISS_FLAG_CONTROL_OPEN) {
525 	lockmgr(&sc->ciss_lock, LK_RELEASE);
526 	return (EBUSY);
527     }
528 
529     /* flush adapter cache */
530     ciss_flush_adapter(sc);
531 
532     /* release all resources.  The mutex is released and freed here too. */
533     ciss_free(sc);
534 
535     return(0);
536 }
537 
538 /************************************************************************
539  * Prepare adapter for system shutdown.
540  */
541 static int
542 ciss_shutdown(device_t dev)
543 {
544     struct ciss_softc	*sc = device_get_softc(dev);
545 
546     debug_called(1);
547 
548     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
549     /* flush adapter cache */
550     ciss_flush_adapter(sc);
551 
552     if (sc->ciss_soft_reset)
553 	ciss_soft_reset(sc);
554     lockmgr(&sc->ciss_lock, LK_RELEASE);
555 
556     return(0);
557 }
558 
559 static void
560 ciss_init_sysctl(struct ciss_softc *sc)
561 {
562     sysctl_ctx_init(&sc->ciss_sysctl_ctx);
563     sc->ciss_sysctl_tree = SYSCTL_ADD_NODE(&sc->ciss_sysctl_ctx,
564 	SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
565 	device_get_nameunit(sc->ciss_dev), CTLFLAG_RD, 0, "");
566     SYSCTL_ADD_INT(&sc->ciss_sysctl_ctx,
567 	SYSCTL_CHILDREN(sc->ciss_sysctl_tree),
568 	OID_AUTO, "soft_reset", CTLFLAG_RW, &sc->ciss_soft_reset, 0, "");
569 }
570 
571 /************************************************************************
572  * Perform PCI-specific attachment actions.
573  */
574 static int
575 ciss_init_pci(struct ciss_softc *sc)
576 {
577     uintptr_t		cbase, csize, cofs;
578     uint32_t		method, supported_methods;
579     int			error, sqmask, i;
580     void		*intr;
581     int			use_msi;
582     u_int		irq_flags;
583 
584     debug_called(1);
585 
586     /*
587      * Work out adapter type.
588      */
589     i = ciss_lookup(sc->ciss_dev);
590     if (i < 0) {
591 	ciss_printf(sc, "unknown adapter type\n");
592 	return (ENXIO);
593     }
594 
595     if (ciss_vendor_data[i].flags & CISS_BOARD_SA5) {
596 	sqmask = CISS_TL_SIMPLE_INTR_OPQ_SA5;
597     } else if (ciss_vendor_data[i].flags & CISS_BOARD_SA5B) {
598 	sqmask = CISS_TL_SIMPLE_INTR_OPQ_SA5B;
599     } else {
600 	/*
601 	 * XXX Big hammer, masks/unmasks all possible interrupts.  This should
602 	 * work on all hardware variants.  Need to add code to handle the
603 	 * "controller crashed" interupt bit that this unmasks.
604 	 */
605 	sqmask = ~0;
606     }
607 
608     /*
609      * Allocate register window first (we need this to find the config
610      * struct).
611      */
612     error = ENXIO;
613     sc->ciss_regs_rid = CISS_TL_SIMPLE_BAR_REGS;
614     if ((sc->ciss_regs_resource =
615 	 bus_alloc_resource_any(sc->ciss_dev, SYS_RES_MEMORY,
616 				&sc->ciss_regs_rid, RF_ACTIVE)) == NULL) {
617 	ciss_printf(sc, "can't allocate register window\n");
618 	return(ENXIO);
619     }
620     sc->ciss_regs_bhandle = rman_get_bushandle(sc->ciss_regs_resource);
621     sc->ciss_regs_btag = rman_get_bustag(sc->ciss_regs_resource);
622 
623     /*
624      * Find the BAR holding the config structure.  If it's not the one
625      * we already mapped for registers, map it too.
626      */
627     sc->ciss_cfg_rid = CISS_TL_SIMPLE_READ(sc, CISS_TL_SIMPLE_CFG_BAR) & 0xffff;
628     if (sc->ciss_cfg_rid != sc->ciss_regs_rid) {
629 	if ((sc->ciss_cfg_resource =
630 	     bus_alloc_resource_any(sc->ciss_dev, SYS_RES_MEMORY,
631 				    &sc->ciss_cfg_rid, RF_ACTIVE)) == NULL) {
632 	    ciss_printf(sc, "can't allocate config window\n");
633 	    return(ENXIO);
634 	}
635 	cbase = (uintptr_t)rman_get_virtual(sc->ciss_cfg_resource);
636 	csize = rman_get_end(sc->ciss_cfg_resource) -
637 	    rman_get_start(sc->ciss_cfg_resource) + 1;
638     } else {
639 	cbase = (uintptr_t)rman_get_virtual(sc->ciss_regs_resource);
640 	csize = rman_get_end(sc->ciss_regs_resource) -
641 	    rman_get_start(sc->ciss_regs_resource) + 1;
642     }
643     cofs = CISS_TL_SIMPLE_READ(sc, CISS_TL_SIMPLE_CFG_OFF);
644 
645     /*
646      * Use the base/size/offset values we just calculated to
647      * sanity-check the config structure.  If it's OK, point to it.
648      */
649     if ((cofs + sizeof(struct ciss_config_table)) > csize) {
650 	ciss_printf(sc, "config table outside window\n");
651 	return(ENXIO);
652     }
653     sc->ciss_cfg = (struct ciss_config_table *)(cbase + cofs);
654     debug(1, "config struct at %p", sc->ciss_cfg);
655 
656     /*
657      * Calculate the number of request structures/commands we are
658      * going to provide for this adapter.
659      */
660     sc->ciss_max_requests = min(CISS_MAX_REQUESTS, sc->ciss_cfg->max_outstanding_commands);
661 
662     /*
663      * Validate the config structure.  If we supported other transport
664      * methods, we could select amongst them at this point in time.
665      */
666     if (strncmp(sc->ciss_cfg->signature, "CISS", 4)) {
667 	ciss_printf(sc, "config signature mismatch (got '%c%c%c%c')\n",
668 		    sc->ciss_cfg->signature[0], sc->ciss_cfg->signature[1],
669 		    sc->ciss_cfg->signature[2], sc->ciss_cfg->signature[3]);
670 	return(ENXIO);
671     }
672 
673     /*
674      * Select the mode of operation, prefer Performant.
675      */
676     if (!(sc->ciss_cfg->supported_methods &
677 	(CISS_TRANSPORT_METHOD_SIMPLE | CISS_TRANSPORT_METHOD_PERF))) {
678 	ciss_printf(sc, "No supported transport layers: 0x%x\n",
679 	    sc->ciss_cfg->supported_methods);
680     }
681 
682     switch (ciss_force_transport) {
683     case 1:
684 	supported_methods = CISS_TRANSPORT_METHOD_SIMPLE;
685 	break;
686     case 2:
687 	supported_methods = CISS_TRANSPORT_METHOD_PERF;
688 	break;
689     default:
690 	supported_methods = sc->ciss_cfg->supported_methods;
691 	break;
692     }
693 
694 setup:
695     if ((supported_methods & CISS_TRANSPORT_METHOD_PERF) != 0) {
696 	method = CISS_TRANSPORT_METHOD_PERF;
697 	sc->ciss_perf = (struct ciss_perf_config *)(cbase + cofs +
698 	    sc->ciss_cfg->transport_offset);
699 	if (ciss_init_perf(sc)) {
700 	    supported_methods &= ~method;
701 	    goto setup;
702 	}
703     } else if (supported_methods & CISS_TRANSPORT_METHOD_SIMPLE) {
704 	method = CISS_TRANSPORT_METHOD_SIMPLE;
705     } else {
706 	ciss_printf(sc, "No supported transport methods: 0x%x\n",
707 	    sc->ciss_cfg->supported_methods);
708 	return(ENXIO);
709     }
710 
711     /*
712      * Tell it we're using the low 4GB of RAM.  Set the default interrupt
713      * coalescing options.
714      */
715     sc->ciss_cfg->requested_method = method;
716     sc->ciss_cfg->command_physlimit = 0;
717     sc->ciss_cfg->interrupt_coalesce_delay = CISS_INTERRUPT_COALESCE_DELAY;
718     sc->ciss_cfg->interrupt_coalesce_count = CISS_INTERRUPT_COALESCE_COUNT;
719 
720 #ifdef __i386__
721     sc->ciss_cfg->host_driver |= CISS_DRIVER_SCSI_PREFETCH;
722 #endif
723 
724     if (ciss_update_config(sc)) {
725 	ciss_printf(sc, "adapter refuses to accept config update (IDBR 0x%x)\n",
726 		    CISS_TL_SIMPLE_READ(sc, CISS_TL_SIMPLE_IDBR));
727 	return(ENXIO);
728     }
729     if ((sc->ciss_cfg->active_method & method) == 0) {
730 	supported_methods &= ~method;
731 	if (supported_methods == 0) {
732 	    ciss_printf(sc, "adapter refuses to go into available transports "
733 		"mode (0x%x, 0x%x)\n", supported_methods,
734 		sc->ciss_cfg->active_method);
735 	    return(ENXIO);
736 	} else
737 	    goto setup;
738     }
739 
740     /*
741      * Wait for the adapter to come ready.
742      */
743     if ((error = ciss_wait_adapter(sc)) != 0)
744 	return(error);
745 
746     /* Prepare to possibly use MSIX and/or PERFORMANT interrupts.  Normal
747      * interrupts have a rid of 0, this will be overridden if MSIX is used.
748      */
749     sc->ciss_irq_rid[0] = 0;
750     if (method == CISS_TRANSPORT_METHOD_PERF) {
751 	ciss_printf(sc, "PERFORMANT Transport\n");
752 	if ((ciss_force_interrupt != 1) && (ciss_setup_msix(sc) == 0)) {
753 	    intr = ciss_perf_msi_intr;
754 	} else {
755 	    intr = ciss_perf_intr;
756 	}
757 	/* XXX The docs say that the 0x01 bit is only for SAS controllers.
758 	 * Unfortunately, there is no good way to know if this is a SAS
759 	 * controller.  Hopefully enabling this bit universally will work OK.
760 	 * It seems to work fine for SA6i controllers.
761 	 */
762 	sc->ciss_interrupt_mask = CISS_TL_PERF_INTR_OPQ | CISS_TL_PERF_INTR_MSI;
763 
764     } else {
765 	ciss_printf(sc, "SIMPLE Transport\n");
766 	/* MSIX doesn't seem to work in SIMPLE mode, only enable if it forced */
767 	if (ciss_force_interrupt == 2)
768 	    /* If this fails, we automatically revert to INTx */
769 	    ciss_setup_msix(sc);
770 	sc->ciss_perf = NULL;
771 	intr = ciss_intr;
772 	sc->ciss_interrupt_mask = sqmask;
773     }
774     /*
775      * Turn off interrupts before we go routing anything.
776      */
777     CISS_TL_SIMPLE_DISABLE_INTERRUPTS(sc);
778 
779     /*
780      * Allocate and set up our interrupt.
781      */
782 #ifdef __DragonFly__ /* DragonFly specific MSI setup */
783     use_msi = (intr == ciss_perf_msi_intr);
784 #endif
785     sc->ciss_irq_rid[0] = 0;
786     sc->ciss_irq_type = pci_alloc_1intr(sc->ciss_dev, use_msi,
787 	&sc->ciss_irq_rid[0], &irq_flags);
788     if ((sc->ciss_irq_resource =
789 	 bus_alloc_resource_any(sc->ciss_dev, SYS_RES_IRQ, &sc->ciss_irq_rid[0],
790 				irq_flags)) == NULL) {
791 	ciss_printf(sc, "can't allocate interrupt\n");
792 	return(ENXIO);
793     }
794 
795     if (bus_setup_intr(sc->ciss_dev, sc->ciss_irq_resource,
796 		       INTR_MPSAFE, intr, sc,
797 		       &sc->ciss_intr, NULL)) {
798 	ciss_printf(sc, "can't set up interrupt\n");
799 	return(ENXIO);
800     }
801 
802     /*
803      * Allocate the parent bus DMA tag appropriate for our PCI
804      * interface.
805      *
806      * Note that "simple" adapters can only address within a 32-bit
807      * span.
808      */
809     if (bus_dma_tag_create(NULL,			/* PCI parent */
810 			   1, 0, 			/* alignment, boundary */
811 			   BUS_SPACE_MAXADDR,		/* lowaddr */
812 			   BUS_SPACE_MAXADDR, 		/* highaddr */
813 			   NULL, NULL, 			/* filter, filterarg */
814 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsize */
815 			   CISS_MAX_SG_ELEMENTS,	/* nsegments */
816 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
817 			   0,				/* flags */
818 			   &sc->ciss_parent_dmat)) {
819 	ciss_printf(sc, "can't allocate parent DMA tag\n");
820 	return(ENOMEM);
821     }
822 
823     /*
824      * Create DMA tag for mapping buffers into adapter-addressable
825      * space.
826      */
827     if (bus_dma_tag_create(sc->ciss_parent_dmat, 	/* parent */
828 			   1, 0, 			/* alignment, boundary */
829 			   BUS_SPACE_MAXADDR,		/* lowaddr */
830 			   BUS_SPACE_MAXADDR, 		/* highaddr */
831 			   NULL, NULL, 			/* filter, filterarg */
832 			   MAXBSIZE, CISS_MAX_SG_ELEMENTS,	/* maxsize, nsegments */
833 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
834 			   BUS_DMA_ALLOCNOW,		/* flags */
835 			   &sc->ciss_buffer_dmat)) {
836 	ciss_printf(sc, "can't allocate buffer DMA tag\n");
837 	return(ENOMEM);
838     }
839     return(0);
840 }
841 
842 /************************************************************************
843  * Setup MSI/MSIX operation (Performant only)
844  * Four interrupts are available, but we only use 1 right now.  If MSI-X
845  * isn't avaialble, try using MSI instead.
846  */
847 static int
848 ciss_setup_msix(struct ciss_softc *sc)
849 {
850     int val, i;
851 
852     /* Weed out devices that don't actually support MSI */
853     i = ciss_lookup(sc->ciss_dev);
854     if (ciss_vendor_data[i].flags & CISS_BOARD_NOMSI)
855 	return (EINVAL);
856 
857 #if 0 /* XXX swildner */
858     /*
859      * Only need to use the minimum number of MSI vectors, as the driver
860      * doesn't support directed MSIX interrupts.
861      */
862     val = pci_msix_count(sc->ciss_dev);
863     if (val < CISS_MSI_COUNT) {
864 	val = pci_msi_count(sc->ciss_dev);
865 	device_printf(sc->ciss_dev, "got %d MSI messages]\n", val);
866 	if (val < CISS_MSI_COUNT)
867 	    return (EINVAL);
868     }
869     val = MIN(val, CISS_MSI_COUNT);
870     if (pci_alloc_msix(sc->ciss_dev, &val) != 0) {
871 	if (pci_alloc_msi(sc->ciss_dev, &val) != 0)
872 	    return (EINVAL);
873     }
874 #endif
875 
876     val = 1;
877     sc->ciss_msi = val;
878     if (bootverbose)
879 	ciss_printf(sc, "Using %d MSIX interrupt%s\n", val,
880 	    (val != 1) ? "s" : "");
881 
882     for (i = 0; i < val; i++)
883 	sc->ciss_irq_rid[i] = i + 1;
884 
885     return (0);
886 
887 }
888 
889 /************************************************************************
890  * Setup the Performant structures.
891  */
892 static int
893 ciss_init_perf(struct ciss_softc *sc)
894 {
895     struct ciss_perf_config *pc = sc->ciss_perf;
896     int reply_size;
897 
898     /*
899      * Create the DMA tag for the reply queue.
900      */
901     reply_size = sizeof(uint64_t) * sc->ciss_max_requests;
902     if (bus_dma_tag_create(sc->ciss_parent_dmat,	/* parent */
903 			   1, 0, 			/* alignment, boundary */
904 			   BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
905 			   BUS_SPACE_MAXADDR, 		/* highaddr */
906 			   NULL, NULL, 			/* filter, filterarg */
907 			   reply_size, 1,		/* maxsize, nsegments */
908 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
909 			   0,				/* flags */
910 			   &sc->ciss_reply_dmat)) {
911 	ciss_printf(sc, "can't allocate reply DMA tag\n");
912 	return(ENOMEM);
913     }
914     /*
915      * Allocate memory and make it available for DMA.
916      */
917     if (bus_dmamem_alloc(sc->ciss_reply_dmat, (void **)&sc->ciss_reply,
918 			 BUS_DMA_NOWAIT, &sc->ciss_reply_map)) {
919 	ciss_printf(sc, "can't allocate reply memory\n");
920 	return(ENOMEM);
921     }
922     bus_dmamap_load(sc->ciss_reply_dmat, sc->ciss_reply_map, sc->ciss_reply,
923 		    reply_size, ciss_command_map_helper, &sc->ciss_reply_phys, 0);
924     bzero(sc->ciss_reply, reply_size);
925 
926     sc->ciss_cycle = 0x1;
927     sc->ciss_rqidx = 0;
928 
929     /*
930      * Preload the fetch table with common command sizes.  This allows the
931      * hardware to not waste bus cycles for typical i/o commands, but also not
932      * tax the driver to be too exact in choosing sizes.  The table is optimized
933      * for page-aligned i/o's, but since most i/o comes from the various pagers,
934      * it's a reasonable assumption to make.
935      */
936     pc->fetch_count[CISS_SG_FETCH_NONE] = (sizeof(struct ciss_command) + 15) / 16;
937     pc->fetch_count[CISS_SG_FETCH_1] =
938 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 1 + 15) / 16;
939     pc->fetch_count[CISS_SG_FETCH_2] =
940 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 2 + 15) / 16;
941     pc->fetch_count[CISS_SG_FETCH_4] =
942 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 4 + 15) / 16;
943     pc->fetch_count[CISS_SG_FETCH_8] =
944 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 8 + 15) / 16;
945     pc->fetch_count[CISS_SG_FETCH_16] =
946 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 16 + 15) / 16;
947     pc->fetch_count[CISS_SG_FETCH_32] =
948 	(sizeof(struct ciss_command) + sizeof(struct ciss_sg_entry) * 32 + 15) / 16;
949     pc->fetch_count[CISS_SG_FETCH_MAX] = (CISS_COMMAND_ALLOC_SIZE + 15) / 16;
950 
951     pc->rq_size = sc->ciss_max_requests; /* XXX less than the card supports? */
952     pc->rq_count = 1;	/* XXX Hardcode for a single queue */
953     pc->rq_bank_hi = 0;
954     pc->rq_bank_lo = 0;
955     pc->rq[0].rq_addr_hi = 0x0;
956     pc->rq[0].rq_addr_lo = sc->ciss_reply_phys;
957 
958     return(0);
959 }
960 
961 /************************************************************************
962  * Wait for the adapter to come ready.
963  */
964 static int
965 ciss_wait_adapter(struct ciss_softc *sc)
966 {
967     int		i;
968 
969     debug_called(1);
970 
971     /*
972      * Wait for the adapter to come ready.
973      */
974     if (!(sc->ciss_cfg->active_method & CISS_TRANSPORT_METHOD_READY)) {
975 	ciss_printf(sc, "waiting for adapter to come ready...\n");
976 	for (i = 0; !(sc->ciss_cfg->active_method & CISS_TRANSPORT_METHOD_READY); i++) {
977 	    DELAY(1000000);	/* one second */
978 	    if (i > 30) {
979 		ciss_printf(sc, "timed out waiting for adapter to come ready\n");
980 		return(EIO);
981 	    }
982 	}
983     }
984     return(0);
985 }
986 
987 /************************************************************************
988  * Flush the adapter cache.
989  */
990 static int
991 ciss_flush_adapter(struct ciss_softc *sc)
992 {
993     struct ciss_request			*cr;
994     struct ciss_bmic_flush_cache	*cbfc;
995     int					error, command_status;
996 
997     debug_called(1);
998 
999     cr = NULL;
1000     cbfc = NULL;
1001 
1002     /*
1003      * Build a BMIC request to flush the cache.  We don't disable
1004      * it, as we may be going to do more I/O (eg. we are emulating
1005      * the Synchronise Cache command).
1006      */
1007     cbfc = kmalloc(sizeof(*cbfc), CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1008     if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_FLUSH_CACHE,
1009 				       (void **)&cbfc, sizeof(*cbfc))) != 0)
1010 	goto out;
1011 
1012     /*
1013      * Submit the request and wait for it to complete.
1014      */
1015     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1016 	ciss_printf(sc, "error sending BMIC FLUSH_CACHE command (%d)\n", error);
1017 	goto out;
1018     }
1019 
1020     /*
1021      * Check response.
1022      */
1023     ciss_report_request(cr, &command_status, NULL);
1024     switch(command_status) {
1025     case CISS_CMD_STATUS_SUCCESS:
1026 	break;
1027     default:
1028 	ciss_printf(sc, "error flushing cache (%s)\n",
1029 		    ciss_name_command_status(command_status));
1030 	error = EIO;
1031 	goto out;
1032     }
1033 
1034 out:
1035     if (cbfc != NULL)
1036 	kfree(cbfc, CISS_MALLOC_CLASS);
1037     if (cr != NULL)
1038 	ciss_release_request(cr);
1039     return(error);
1040 }
1041 
1042 static void
1043 ciss_soft_reset(struct ciss_softc *sc)
1044 {
1045     struct ciss_request		*cr = NULL;
1046     struct ciss_command		*cc;
1047     int				i, error = 0;
1048 
1049     for (i = 0; i < sc->ciss_max_logical_bus; i++) {
1050 	/* only reset proxy controllers */
1051 	if (sc->ciss_controllers[i].physical.bus == 0)
1052 	    continue;
1053 
1054 	if ((error = ciss_get_request(sc, &cr)) != 0)
1055 	    break;
1056 
1057 	if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_SOFT_RESET,
1058 					   NULL, 0)) != 0)
1059 	    break;
1060 
1061 	cc = cr->cr_cc;
1062 	cc->header.address = sc->ciss_controllers[i];
1063 
1064 	if ((error = ciss_synch_request(cr, 60 * 1000)) != 0)
1065 	    break;
1066 
1067 	ciss_release_request(cr);
1068     }
1069 
1070     if (error)
1071 	ciss_printf(sc, "error resetting controller (%d)\n", error);
1072 
1073     if (cr != NULL)
1074 	ciss_release_request(cr);
1075 }
1076 
1077 /************************************************************************
1078  * Allocate memory for the adapter command structures, initialise
1079  * the request structures.
1080  *
1081  * Note that the entire set of commands are allocated in a single
1082  * contiguous slab.
1083  */
1084 static int
1085 ciss_init_requests(struct ciss_softc *sc)
1086 {
1087     struct ciss_request	*cr;
1088     int			i;
1089 
1090     debug_called(1);
1091 
1092     if (bootverbose)
1093 	ciss_printf(sc, "using %d of %d available commands\n",
1094 		    sc->ciss_max_requests, sc->ciss_cfg->max_outstanding_commands);
1095 
1096     /*
1097      * Create the DMA tag for commands.
1098      */
1099     if (bus_dma_tag_create(sc->ciss_parent_dmat,	/* parent */
1100 			   32, 0, 			/* alignment, boundary */
1101 			   BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
1102 			   BUS_SPACE_MAXADDR, 		/* highaddr */
1103 			   NULL, NULL, 			/* filter, filterarg */
1104 			   CISS_COMMAND_ALLOC_SIZE *
1105 			   sc->ciss_max_requests, 1,	/* maxsize, nsegments */
1106 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
1107 			   0,				/* flags */
1108 			   &sc->ciss_command_dmat)) {
1109 	ciss_printf(sc, "can't allocate command DMA tag\n");
1110 	return(ENOMEM);
1111     }
1112     /*
1113      * Allocate memory and make it available for DMA.
1114      */
1115     if (bus_dmamem_alloc(sc->ciss_command_dmat, (void **)&sc->ciss_command,
1116 			 BUS_DMA_NOWAIT, &sc->ciss_command_map)) {
1117 	ciss_printf(sc, "can't allocate command memory\n");
1118 	return(ENOMEM);
1119     }
1120     bus_dmamap_load(sc->ciss_command_dmat, sc->ciss_command_map,sc->ciss_command,
1121 		    CISS_COMMAND_ALLOC_SIZE * sc->ciss_max_requests,
1122 		    ciss_command_map_helper, &sc->ciss_command_phys, 0);
1123     bzero(sc->ciss_command, CISS_COMMAND_ALLOC_SIZE * sc->ciss_max_requests);
1124 
1125     /*
1126      * Set up the request and command structures, push requests onto
1127      * the free queue.
1128      */
1129     for (i = 1; i < sc->ciss_max_requests; i++) {
1130 	cr = &sc->ciss_request[i];
1131 	cr->cr_sc = sc;
1132 	cr->cr_tag = i;
1133 	cr->cr_cc = (struct ciss_command *)((uintptr_t)sc->ciss_command +
1134 	    CISS_COMMAND_ALLOC_SIZE * i);
1135 	cr->cr_ccphys = sc->ciss_command_phys + CISS_COMMAND_ALLOC_SIZE * i;
1136 	bus_dmamap_create(sc->ciss_buffer_dmat, 0, &cr->cr_datamap);
1137 	ciss_enqueue_free(cr);
1138     }
1139     return(0);
1140 }
1141 
1142 static void
1143 ciss_command_map_helper(void *arg, bus_dma_segment_t *segs, int nseg, int error)
1144 {
1145     uint32_t *addr;
1146 
1147     addr = arg;
1148     *addr = segs[0].ds_addr;
1149 }
1150 
1151 /************************************************************************
1152  * Identify the adapter, print some information about it.
1153  */
1154 static int
1155 ciss_identify_adapter(struct ciss_softc *sc)
1156 {
1157     struct ciss_request	*cr;
1158     int			error, command_status;
1159 
1160     debug_called(1);
1161 
1162     cr = NULL;
1163 
1164     /*
1165      * Get a request, allocate storage for the adapter data.
1166      */
1167     if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_ID_CTLR,
1168 				       (void **)&sc->ciss_id,
1169 				       sizeof(*sc->ciss_id))) != 0)
1170 	goto out;
1171 
1172     /*
1173      * Submit the request and wait for it to complete.
1174      */
1175     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1176 	ciss_printf(sc, "error sending BMIC ID_CTLR command (%d)\n", error);
1177 	goto out;
1178     }
1179 
1180     /*
1181      * Check response.
1182      */
1183     ciss_report_request(cr, &command_status, NULL);
1184     switch(command_status) {
1185     case CISS_CMD_STATUS_SUCCESS:		/* buffer right size */
1186 	break;
1187     case CISS_CMD_STATUS_DATA_UNDERRUN:
1188     case CISS_CMD_STATUS_DATA_OVERRUN:
1189 	ciss_printf(sc, "data over/underrun reading adapter information\n");
1190     default:
1191 	ciss_printf(sc, "error reading adapter information (%s)\n",
1192 		    ciss_name_command_status(command_status));
1193 	error = EIO;
1194 	goto out;
1195     }
1196 
1197     /* sanity-check reply */
1198     if (!sc->ciss_id->big_map_supported) {
1199 	ciss_printf(sc, "adapter does not support BIG_MAP\n");
1200 	error = ENXIO;
1201 	goto out;
1202     }
1203 
1204 #if 0
1205     /* XXX later revisions may not need this */
1206     sc->ciss_flags |= CISS_FLAG_FAKE_SYNCH;
1207 #endif
1208 
1209     /* XXX only really required for old 5300 adapters? */
1210     sc->ciss_flags |= CISS_FLAG_BMIC_ABORT;
1211 
1212     /* print information */
1213     if (bootverbose) {
1214 #if 0	/* XXX proxy volumes??? */
1215 	ciss_printf(sc, "  %d logical drive%s configured\n",
1216 		    sc->ciss_id->configured_logical_drives,
1217 		    (sc->ciss_id->configured_logical_drives == 1) ? "" : "s");
1218 #endif
1219 	ciss_printf(sc, "  firmware %4.4s\n", sc->ciss_id->running_firmware_revision);
1220 	ciss_printf(sc, "  %d SCSI channels\n", sc->ciss_id->scsi_bus_count);
1221 
1222 	ciss_printf(sc, "  signature '%.4s'\n", sc->ciss_cfg->signature);
1223 	ciss_printf(sc, "  valence %d\n", sc->ciss_cfg->valence);
1224 	ciss_printf(sc, "  supported I/O methods 0x%b\n",
1225 		    sc->ciss_cfg->supported_methods,
1226 		    "\20\1READY\2simple\3performant\4MEMQ\n");
1227 	ciss_printf(sc, "  active I/O method 0x%b\n",
1228 		    sc->ciss_cfg->active_method, "\20\2simple\3performant\4MEMQ\n");
1229 	ciss_printf(sc, "  4G page base 0x%08x\n",
1230 		    sc->ciss_cfg->command_physlimit);
1231 	ciss_printf(sc, "  interrupt coalesce delay %dus\n",
1232 		    sc->ciss_cfg->interrupt_coalesce_delay);
1233 	ciss_printf(sc, "  interrupt coalesce count %d\n",
1234 		    sc->ciss_cfg->interrupt_coalesce_count);
1235 	ciss_printf(sc, "  max outstanding commands %d\n",
1236 		    sc->ciss_cfg->max_outstanding_commands);
1237 	ciss_printf(sc, "  bus types 0x%b\n", sc->ciss_cfg->bus_types,
1238 		    "\20\1ultra2\2ultra3\10fibre1\11fibre2\n");
1239 	ciss_printf(sc, "  server name '%.16s'\n", sc->ciss_cfg->server_name);
1240 	ciss_printf(sc, "  heartbeat 0x%x\n", sc->ciss_cfg->heartbeat);
1241     }
1242 
1243 out:
1244     if (error) {
1245 	if (sc->ciss_id != NULL) {
1246 	    kfree(sc->ciss_id, CISS_MALLOC_CLASS);
1247 	    sc->ciss_id = NULL;
1248 	}
1249     }
1250     if (cr != NULL)
1251 	ciss_release_request(cr);
1252     return(error);
1253 }
1254 
1255 /************************************************************************
1256  * Helper routine for generating a list of logical and physical luns.
1257  */
1258 static struct ciss_lun_report *
1259 ciss_report_luns(struct ciss_softc *sc, int opcode, int nunits)
1260 {
1261     struct ciss_request		*cr;
1262     struct ciss_command		*cc;
1263     struct ciss_report_cdb	*crc;
1264     struct ciss_lun_report	*cll;
1265     int				command_status;
1266     int				report_size;
1267     int				error = 0;
1268 
1269     debug_called(1);
1270 
1271     cr = NULL;
1272     cll = NULL;
1273 
1274     /*
1275      * Get a request, allocate storage for the address list.
1276      */
1277     if ((error = ciss_get_request(sc, &cr)) != 0)
1278 	goto out;
1279     report_size = sizeof(*cll) + nunits * sizeof(union ciss_device_address);
1280     cll = kmalloc(report_size, CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1281 
1282     /*
1283      * Build the Report Logical/Physical LUNs command.
1284      */
1285     cc = cr->cr_cc;
1286     cr->cr_data = cll;
1287     cr->cr_length = report_size;
1288     cr->cr_flags = CISS_REQ_DATAIN;
1289 
1290     cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
1291     cc->header.address.physical.bus = 0;
1292     cc->header.address.physical.target = 0;
1293     cc->cdb.cdb_length = sizeof(*crc);
1294     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
1295     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
1296     cc->cdb.direction = CISS_CDB_DIRECTION_READ;
1297     cc->cdb.timeout = 30;	/* XXX better suggestions? */
1298 
1299     crc = (struct ciss_report_cdb *)&(cc->cdb.cdb[0]);
1300     bzero(crc, sizeof(*crc));
1301     crc->opcode = opcode;
1302     crc->length = htonl(report_size);			/* big-endian field */
1303     cll->list_size = htonl(report_size - sizeof(*cll));	/* big-endian field */
1304 
1305     /*
1306      * Submit the request and wait for it to complete.  (timeout
1307      * here should be much greater than above)
1308      */
1309     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1310 	ciss_printf(sc, "error sending %d LUN command (%d)\n", opcode, error);
1311 	goto out;
1312     }
1313 
1314     /*
1315      * Check response.  Note that data over/underrun is OK.
1316      */
1317     ciss_report_request(cr, &command_status, NULL);
1318     switch(command_status) {
1319     case CISS_CMD_STATUS_SUCCESS:	/* buffer right size */
1320     case CISS_CMD_STATUS_DATA_UNDERRUN:	/* buffer too large, not bad */
1321 	break;
1322     case CISS_CMD_STATUS_DATA_OVERRUN:
1323 	ciss_printf(sc, "WARNING: more units than driver limit (%d)\n",
1324 		    CISS_MAX_LOGICAL);
1325 	break;
1326     default:
1327 	ciss_printf(sc, "error detecting logical drive configuration (%s)\n",
1328 		    ciss_name_command_status(command_status));
1329 	error = EIO;
1330 	goto out;
1331     }
1332     ciss_release_request(cr);
1333     cr = NULL;
1334 
1335 out:
1336     if (cr != NULL)
1337 	ciss_release_request(cr);
1338     if (error && cll != NULL) {
1339 	kfree(cll, CISS_MALLOC_CLASS);
1340 	cll = NULL;
1341     }
1342     return(cll);
1343 }
1344 
1345 /************************************************************************
1346  * Find logical drives on the adapter.
1347  */
1348 static int
1349 ciss_init_logical(struct ciss_softc *sc)
1350 {
1351     struct ciss_lun_report	*cll;
1352     int				error = 0, i, j;
1353     int				ndrives;
1354 
1355     debug_called(1);
1356 
1357     cll = ciss_report_luns(sc, CISS_OPCODE_REPORT_LOGICAL_LUNS,
1358 			   CISS_MAX_LOGICAL);
1359     if (cll == NULL) {
1360 	error = ENXIO;
1361 	goto out;
1362     }
1363 
1364     /* sanity-check reply */
1365     ndrives = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
1366     if ((ndrives < 0) || (ndrives > CISS_MAX_LOGICAL)) {
1367 	ciss_printf(sc, "adapter claims to report absurd number of logical drives (%d > %d)\n",
1368 		    ndrives, CISS_MAX_LOGICAL);
1369 	error = ENXIO;
1370 	goto out;
1371     }
1372 
1373     /*
1374      * Save logical drive information.
1375      */
1376     if (bootverbose) {
1377 	ciss_printf(sc, "%d logical drive%s\n",
1378 	    ndrives, (ndrives > 1 || ndrives == 0) ? "s" : "");
1379     }
1380 
1381     sc->ciss_logical =
1382 	kmalloc(sc->ciss_max_logical_bus * sizeof(struct ciss_ldrive *),
1383 		CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1384 
1385     for (i = 0; i <= sc->ciss_max_logical_bus; i++) {
1386 	sc->ciss_logical[i] =
1387 	    kmalloc(CISS_MAX_LOGICAL * sizeof(struct ciss_ldrive),
1388 		    CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1389 
1390 	for (j = 0; j < CISS_MAX_LOGICAL; j++)
1391 	    sc->ciss_logical[i][j].cl_status = CISS_LD_NONEXISTENT;
1392     }
1393 
1394 
1395     for (i = 0; i < CISS_MAX_LOGICAL; i++) {
1396 	if (i < ndrives) {
1397 	    struct ciss_ldrive	*ld;
1398 	    int			bus, target;
1399 
1400 	    bus		= CISS_LUN_TO_BUS(cll->lun[i].logical.lun);
1401 	    target	= CISS_LUN_TO_TARGET(cll->lun[i].logical.lun);
1402 	    ld		= &sc->ciss_logical[bus][target];
1403 
1404 	    ld->cl_address	= cll->lun[i];
1405 	    ld->cl_controller	= &sc->ciss_controllers[bus];
1406 	    if (ciss_identify_logical(sc, ld) != 0)
1407 		continue;
1408 	    /*
1409 	     * If the drive has had media exchanged, we should bring it online.
1410 	     */
1411 	    if (ld->cl_lstatus->media_exchanged)
1412 		ciss_accept_media(sc, ld);
1413 
1414 	}
1415     }
1416 
1417  out:
1418     if (cll != NULL)
1419 	kfree(cll, CISS_MALLOC_CLASS);
1420     return(error);
1421 }
1422 
1423 static int
1424 ciss_init_physical(struct ciss_softc *sc)
1425 {
1426     struct ciss_lun_report	*cll;
1427     int				error = 0, i;
1428     int				nphys;
1429     int				bus;
1430 
1431     debug_called(1);
1432 
1433     bus = 0;
1434 
1435     cll = ciss_report_luns(sc, CISS_OPCODE_REPORT_PHYSICAL_LUNS,
1436 			   CISS_MAX_PHYSICAL);
1437     if (cll == NULL) {
1438 	error = ENXIO;
1439 	goto out;
1440     }
1441 
1442     nphys = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
1443 
1444     if (bootverbose) {
1445 	ciss_printf(sc, "%d physical device%s\n",
1446 	    nphys, (nphys > 1 || nphys == 0) ? "s" : "");
1447     }
1448 
1449     /*
1450      * Figure out the bus mapping.
1451      * Logical buses include both the local logical bus for local arrays and
1452      * proxy buses for remote arrays.  Physical buses are numbered by the
1453      * controller and represent physical buses that hold physical devices.
1454      * We shift these bus numbers so that everything fits into a single flat
1455      * numbering space for CAM.  Logical buses occupy the first 32 CAM bus
1456      * numbers, and the physical bus numbers are shifted to be above that.
1457      * This results in the various driver arrays being indexed as follows:
1458      *
1459      * ciss_controllers[] - indexed by logical bus
1460      * ciss_cam_sim[]     - indexed by both logical and physical, with physical
1461      *                      being shifted by 32.
1462      * ciss_logical[][]   - indexed by logical bus
1463      * ciss_physical[][]  - indexed by physical bus
1464      *
1465      * XXX This is getting more and more hackish.  CISS really doesn't play
1466      *     well with a standard SCSI model; devices are addressed via magic
1467      *     cookies, not via b/t/l addresses.  Since there is no way to store
1468      *     the cookie in the CAM device object, we have to keep these lookup
1469      *     tables handy so that the devices can be found quickly at the cost
1470      *     of wasting memory and having a convoluted lookup scheme.  This
1471      *     driver should probably be converted to block interface.
1472      */
1473     /*
1474      * If the L2 and L3 SCSI addresses are 0, this signifies a proxy
1475      * controller. A proxy controller is another physical controller
1476      * behind the primary PCI controller. We need to know about this
1477      * so that BMIC commands can be properly targeted.  There can be
1478      * proxy controllers attached to a single PCI controller, so
1479      * find the highest numbered one so the array can be properly
1480      * sized.
1481      */
1482     sc->ciss_max_logical_bus = 1;
1483     for (i = 0; i < nphys; i++) {
1484 	if (cll->lun[i].physical.extra_address == 0) {
1485 	    bus = cll->lun[i].physical.bus;
1486 	    sc->ciss_max_logical_bus = max(sc->ciss_max_logical_bus, bus) + 1;
1487 	} else {
1488 	    bus = CISS_EXTRA_BUS2(cll->lun[i].physical.extra_address);
1489 	    sc->ciss_max_physical_bus = max(sc->ciss_max_physical_bus, bus);
1490 	}
1491     }
1492 
1493     sc->ciss_controllers =
1494 	kmalloc(sc->ciss_max_logical_bus * sizeof (union ciss_device_address),
1495 		CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1496 
1497     /* setup a map of controller addresses */
1498     for (i = 0; i < nphys; i++) {
1499 	if (cll->lun[i].physical.extra_address == 0) {
1500 	    sc->ciss_controllers[cll->lun[i].physical.bus] = cll->lun[i];
1501 	}
1502     }
1503 
1504     sc->ciss_physical =
1505 	kmalloc(sc->ciss_max_physical_bus * sizeof(struct ciss_pdrive *),
1506 		CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1507 
1508     for (i = 0; i < sc->ciss_max_physical_bus; i++) {
1509 	sc->ciss_physical[i] =
1510 	    kmalloc(sizeof(struct ciss_pdrive) * CISS_MAX_PHYSTGT,
1511 		    CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
1512     }
1513 
1514     ciss_filter_physical(sc, cll);
1515 
1516 out:
1517     if (cll != NULL)
1518 	kfree(cll, CISS_MALLOC_CLASS);
1519 
1520     return(error);
1521 }
1522 
1523 static int
1524 ciss_filter_physical(struct ciss_softc *sc, struct ciss_lun_report *cll)
1525 {
1526     u_int32_t ea;
1527     int i, nphys;
1528     int	bus, target;
1529 
1530     nphys = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
1531     for (i = 0; i < nphys; i++) {
1532 	if (cll->lun[i].physical.extra_address == 0)
1533 	    continue;
1534 
1535 	/*
1536 	 * Filter out devices that we don't want.  Level 3 LUNs could
1537 	 * probably be supported, but the docs don't give enough of a
1538 	 * hint to know how.
1539 	 *
1540 	 * The mode field of the physical address is likely set to have
1541 	 * hard disks masked out.  Honor it unless the user has overridden
1542 	 * us with the tunable.  We also munge the inquiry data for these
1543 	 * disks so that they only show up as passthrough devices.  Keeping
1544 	 * them visible in this fashion is useful for doing things like
1545 	 * flashing firmware.
1546 	 */
1547 	ea = cll->lun[i].physical.extra_address;
1548 	if ((CISS_EXTRA_BUS3(ea) != 0) || (CISS_EXTRA_TARGET3(ea) != 0) ||
1549 	    (CISS_EXTRA_MODE2(ea) == 0x3))
1550 	    continue;
1551 	if ((ciss_expose_hidden_physical == 0) &&
1552 	   (cll->lun[i].physical.mode == CISS_HDR_ADDRESS_MODE_MASK_PERIPHERAL))
1553 	    continue;
1554 
1555 	/*
1556 	 * Note: CISS firmware numbers physical busses starting at '1', not
1557 	 *       '0'.  This numbering is internal to the firmware and is only
1558 	 *       used as a hint here.
1559 	 */
1560 	bus = CISS_EXTRA_BUS2(ea) - 1;
1561 	target = CISS_EXTRA_TARGET2(ea);
1562 	sc->ciss_physical[bus][target].cp_address = cll->lun[i];
1563 	sc->ciss_physical[bus][target].cp_online = 1;
1564     }
1565 
1566     return (0);
1567 }
1568 
1569 static int
1570 ciss_inquiry_logical(struct ciss_softc *sc, struct ciss_ldrive *ld)
1571 {
1572     struct ciss_request			*cr;
1573     struct ciss_command			*cc;
1574     struct scsi_inquiry			*inq;
1575     int					error;
1576     int					command_status;
1577 
1578     cr = NULL;
1579 
1580     bzero(&ld->cl_geometry, sizeof(ld->cl_geometry));
1581 
1582     if ((error = ciss_get_request(sc, &cr)) != 0)
1583 	goto out;
1584 
1585     cc = cr->cr_cc;
1586     cr->cr_data = &ld->cl_geometry;
1587     cr->cr_length = sizeof(ld->cl_geometry);
1588     cr->cr_flags = CISS_REQ_DATAIN;
1589 
1590     cc->header.address = ld->cl_address;
1591     cc->cdb.cdb_length = 6;
1592     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
1593     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
1594     cc->cdb.direction = CISS_CDB_DIRECTION_READ;
1595     cc->cdb.timeout = 30;
1596 
1597     inq = (struct scsi_inquiry *)&(cc->cdb.cdb[0]);
1598     inq->opcode = INQUIRY;
1599     inq->byte2 = SI_EVPD;
1600     inq->page_code = CISS_VPD_LOGICAL_DRIVE_GEOMETRY;
1601     inq->length = sizeof(ld->cl_geometry);
1602 
1603     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1604 	ciss_printf(sc, "error getting geometry (%d)\n", error);
1605 	goto out;
1606     }
1607 
1608     ciss_report_request(cr, &command_status, NULL);
1609     switch(command_status) {
1610     case CISS_CMD_STATUS_SUCCESS:
1611     case CISS_CMD_STATUS_DATA_UNDERRUN:
1612 	break;
1613     case CISS_CMD_STATUS_DATA_OVERRUN:
1614 	ciss_printf(sc, "WARNING: Data overrun\n");
1615 	break;
1616     default:
1617 	ciss_printf(sc, "Error detecting logical drive geometry (%s)\n",
1618 		    ciss_name_command_status(command_status));
1619 	break;
1620     }
1621 
1622 out:
1623     if (cr != NULL)
1624 	ciss_release_request(cr);
1625     return(error);
1626 }
1627 /************************************************************************
1628  * Identify a logical drive, initialise state related to it.
1629  */
1630 static int
1631 ciss_identify_logical(struct ciss_softc *sc, struct ciss_ldrive *ld)
1632 {
1633     struct ciss_request		*cr;
1634     struct ciss_command		*cc;
1635     struct ciss_bmic_cdb	*cbc;
1636     int				error, command_status;
1637 
1638     debug_called(1);
1639 
1640     cr = NULL;
1641 
1642     /*
1643      * Build a BMIC request to fetch the drive ID.
1644      */
1645     if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_ID_LDRIVE,
1646 				       (void **)&ld->cl_ldrive,
1647 				       sizeof(*ld->cl_ldrive))) != 0)
1648 	goto out;
1649     cc = cr->cr_cc;
1650     cc->header.address = *ld->cl_controller;	/* target controller */
1651     cbc = (struct ciss_bmic_cdb *)&(cc->cdb.cdb[0]);
1652     cbc->log_drive = CISS_LUN_TO_TARGET(ld->cl_address.logical.lun);
1653 
1654     /*
1655      * Submit the request and wait for it to complete.
1656      */
1657     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1658 	ciss_printf(sc, "error sending BMIC LDRIVE command (%d)\n", error);
1659 	goto out;
1660     }
1661 
1662     /*
1663      * Check response.
1664      */
1665     ciss_report_request(cr, &command_status, NULL);
1666     switch(command_status) {
1667     case CISS_CMD_STATUS_SUCCESS:		/* buffer right size */
1668 	break;
1669     case CISS_CMD_STATUS_DATA_UNDERRUN:
1670     case CISS_CMD_STATUS_DATA_OVERRUN:
1671 	ciss_printf(sc, "data over/underrun reading logical drive ID\n");
1672     default:
1673 	ciss_printf(sc, "error reading logical drive ID (%s)\n",
1674 		    ciss_name_command_status(command_status));
1675 	error = EIO;
1676 	goto out;
1677     }
1678     ciss_release_request(cr);
1679     cr = NULL;
1680 
1681     /*
1682      * Build a CISS BMIC command to get the logical drive status.
1683      */
1684     if ((error = ciss_get_ldrive_status(sc, ld)) != 0)
1685 	goto out;
1686 
1687     /*
1688      * Get the logical drive geometry.
1689      */
1690     if ((error = ciss_inquiry_logical(sc, ld)) != 0)
1691 	goto out;
1692 
1693     /*
1694      * Print the drive's basic characteristics.
1695      */
1696     if (bootverbose) {
1697 	ciss_printf(sc, "logical drive (b%dt%d): %s, %dMB ",
1698 		    CISS_LUN_TO_BUS(ld->cl_address.logical.lun),
1699 		    CISS_LUN_TO_TARGET(ld->cl_address.logical.lun),
1700 		    ciss_name_ldrive_org(ld->cl_ldrive->fault_tolerance),
1701 		    ((ld->cl_ldrive->blocks_available / (1024 * 1024)) *
1702 		     ld->cl_ldrive->block_size));
1703 
1704 	ciss_print_ldrive(sc, ld);
1705     }
1706 out:
1707     if (error != 0) {
1708 	/* make the drive not-exist */
1709 	ld->cl_status = CISS_LD_NONEXISTENT;
1710 	if (ld->cl_ldrive != NULL) {
1711 	    kfree(ld->cl_ldrive, CISS_MALLOC_CLASS);
1712 	    ld->cl_ldrive = NULL;
1713 	}
1714 	if (ld->cl_lstatus != NULL) {
1715 	    kfree(ld->cl_lstatus, CISS_MALLOC_CLASS);
1716 	    ld->cl_lstatus = NULL;
1717 	}
1718     }
1719     if (cr != NULL)
1720 	ciss_release_request(cr);
1721 
1722     return(error);
1723 }
1724 
1725 /************************************************************************
1726  * Get status for a logical drive.
1727  *
1728  * XXX should we also do this in response to Test Unit Ready?
1729  */
1730 static int
1731 ciss_get_ldrive_status(struct ciss_softc *sc,  struct ciss_ldrive *ld)
1732 {
1733     struct ciss_request		*cr;
1734     struct ciss_command		*cc;
1735     struct ciss_bmic_cdb	*cbc;
1736     int				error, command_status;
1737 
1738     /*
1739      * Build a CISS BMIC command to get the logical drive status.
1740      */
1741     if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_ID_LSTATUS,
1742 				       (void **)&ld->cl_lstatus,
1743 				       sizeof(*ld->cl_lstatus))) != 0)
1744 	goto out;
1745     cc = cr->cr_cc;
1746     cc->header.address = *ld->cl_controller;	/* target controller */
1747     cbc = (struct ciss_bmic_cdb *)&(cc->cdb.cdb[0]);
1748     cbc->log_drive = CISS_LUN_TO_TARGET(ld->cl_address.logical.lun);
1749 
1750     /*
1751      * Submit the request and wait for it to complete.
1752      */
1753     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1754 	ciss_printf(sc, "error sending BMIC LSTATUS command (%d)\n", error);
1755 	goto out;
1756     }
1757 
1758     /*
1759      * Check response.
1760      */
1761     ciss_report_request(cr, &command_status, NULL);
1762     switch(command_status) {
1763     case CISS_CMD_STATUS_SUCCESS:		/* buffer right size */
1764 	break;
1765     case CISS_CMD_STATUS_DATA_UNDERRUN:
1766     case CISS_CMD_STATUS_DATA_OVERRUN:
1767 	ciss_printf(sc, "data over/underrun reading logical drive status\n");
1768     default:
1769 	ciss_printf(sc, "error reading logical drive status (%s)\n",
1770 		    ciss_name_command_status(command_status));
1771 	error = EIO;
1772 	goto out;
1773     }
1774 
1775     /*
1776      * Set the drive's summary status based on the returned status.
1777      *
1778      * XXX testing shows that a failed JBOD drive comes back at next
1779      * boot in "queued for expansion" mode.  WTF?
1780      */
1781     ld->cl_status = ciss_decode_ldrive_status(ld->cl_lstatus->status);
1782 
1783 out:
1784     if (cr != NULL)
1785 	ciss_release_request(cr);
1786     return(error);
1787 }
1788 
1789 /************************************************************************
1790  * Notify the adapter of a config update.
1791  */
1792 static int
1793 ciss_update_config(struct ciss_softc *sc)
1794 {
1795     int		i;
1796 
1797     debug_called(1);
1798 
1799     CISS_TL_SIMPLE_WRITE(sc, CISS_TL_SIMPLE_IDBR, CISS_TL_SIMPLE_IDBR_CFG_TABLE);
1800     for (i = 0; i < 1000; i++) {
1801 	if (!(CISS_TL_SIMPLE_READ(sc, CISS_TL_SIMPLE_IDBR) &
1802 	      CISS_TL_SIMPLE_IDBR_CFG_TABLE)) {
1803 	    return(0);
1804 	}
1805 	DELAY(1000);
1806     }
1807     return(1);
1808 }
1809 
1810 /************************************************************************
1811  * Accept new media into a logical drive.
1812  *
1813  * XXX The drive has previously been offline; it would be good if we
1814  *     could make sure it's not open right now.
1815  */
1816 static int
1817 ciss_accept_media(struct ciss_softc *sc, struct ciss_ldrive *ld)
1818 {
1819     struct ciss_request		*cr;
1820     struct ciss_command		*cc;
1821     struct ciss_bmic_cdb	*cbc;
1822     int				command_status;
1823     int				error = 0, ldrive;
1824 
1825     ldrive = CISS_LUN_TO_TARGET(ld->cl_address.logical.lun);
1826 
1827     debug(0, "bringing logical drive %d back online");
1828 
1829     /*
1830      * Build a CISS BMIC command to bring the drive back online.
1831      */
1832     if ((error = ciss_get_bmic_request(sc, &cr, CISS_BMIC_ACCEPT_MEDIA,
1833 				       NULL, 0)) != 0)
1834 	goto out;
1835     cc = cr->cr_cc;
1836     cc->header.address = *ld->cl_controller;	/* target controller */
1837     cbc = (struct ciss_bmic_cdb *)&(cc->cdb.cdb[0]);
1838     cbc->log_drive = ldrive;
1839 
1840     /*
1841      * Submit the request and wait for it to complete.
1842      */
1843     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
1844 	ciss_printf(sc, "error sending BMIC ACCEPT MEDIA command (%d)\n", error);
1845 	goto out;
1846     }
1847 
1848     /*
1849      * Check response.
1850      */
1851     ciss_report_request(cr, &command_status, NULL);
1852     switch(command_status) {
1853     case CISS_CMD_STATUS_SUCCESS:		/* all OK */
1854 	/* we should get a logical drive status changed event here */
1855 	break;
1856     default:
1857 	ciss_printf(cr->cr_sc, "error accepting media into failed logical drive (%s)\n",
1858 		    ciss_name_command_status(command_status));
1859 	break;
1860     }
1861 
1862 out:
1863     if (cr != NULL)
1864 	ciss_release_request(cr);
1865     return(error);
1866 }
1867 
1868 /************************************************************************
1869  * Release adapter resources.
1870  */
1871 static void
1872 ciss_free(struct ciss_softc *sc)
1873 {
1874     struct ciss_request *cr;
1875     int			i, j;
1876 
1877     debug_called(1);
1878 
1879     /* we're going away */
1880     sc->ciss_flags |= CISS_FLAG_ABORTING;
1881 
1882     /* terminate the periodic heartbeat routine */
1883     callout_stop(&sc->ciss_periodic);
1884 
1885     /* cancel the Event Notify chain */
1886     ciss_notify_abort(sc);
1887 
1888     ciss_kill_notify_thread(sc);
1889 
1890     /* disconnect from CAM */
1891     if (sc->ciss_cam_sim) {
1892 	for (i = 0; i < sc->ciss_max_logical_bus; i++) {
1893 	    if (sc->ciss_cam_sim[i]) {
1894 		xpt_bus_deregister(cam_sim_path(sc->ciss_cam_sim[i]));
1895 		cam_sim_free(sc->ciss_cam_sim[i]);
1896 	    }
1897 	}
1898 	for (i = CISS_PHYSICAL_BASE; i < sc->ciss_max_physical_bus +
1899 	     CISS_PHYSICAL_BASE; i++) {
1900 	    if (sc->ciss_cam_sim[i]) {
1901 		xpt_bus_deregister(cam_sim_path(sc->ciss_cam_sim[i]));
1902 		cam_sim_free(sc->ciss_cam_sim[i]);
1903 	    }
1904 	}
1905 	kfree(sc->ciss_cam_sim, CISS_MALLOC_CLASS);
1906     }
1907     if (sc->ciss_cam_devq)
1908 	cam_simq_release(sc->ciss_cam_devq);
1909 
1910     /* remove the control device */
1911     lockmgr(&sc->ciss_lock, LK_RELEASE);
1912     if (sc->ciss_dev_t != NULL)
1913 	destroy_dev(sc->ciss_dev_t);
1914 
1915     /* Final cleanup of the callout. */
1916 #if 0 /* XXX swildner callout_drain */
1917     callout_drain(&sc->ciss_periodic);
1918 #else
1919     callout_stop(&sc->ciss_periodic);
1920 #endif
1921     lockuninit(&sc->ciss_lock);
1922 
1923     /* free the controller data */
1924     if (sc->ciss_id != NULL)
1925 	kfree(sc->ciss_id, CISS_MALLOC_CLASS);
1926 
1927     /* release I/O resources */
1928     if (sc->ciss_regs_resource != NULL)
1929 	bus_release_resource(sc->ciss_dev, SYS_RES_MEMORY,
1930 			     sc->ciss_regs_rid, sc->ciss_regs_resource);
1931     if (sc->ciss_cfg_resource != NULL)
1932 	bus_release_resource(sc->ciss_dev, SYS_RES_MEMORY,
1933 			     sc->ciss_cfg_rid, sc->ciss_cfg_resource);
1934     if (sc->ciss_intr != NULL)
1935 	bus_teardown_intr(sc->ciss_dev, sc->ciss_irq_resource, sc->ciss_intr);
1936     if (sc->ciss_irq_resource != NULL)
1937 	bus_release_resource(sc->ciss_dev, SYS_RES_IRQ,
1938 			     sc->ciss_irq_rid[0], sc->ciss_irq_resource);
1939     if (sc->ciss_irq_type == PCI_INTR_TYPE_MSI)
1940 	pci_release_msi(sc->ciss_dev);
1941 
1942     while ((cr = ciss_dequeue_free(sc)) != NULL)
1943 	bus_dmamap_destroy(sc->ciss_buffer_dmat, cr->cr_datamap);
1944     if (sc->ciss_buffer_dmat)
1945 	bus_dma_tag_destroy(sc->ciss_buffer_dmat);
1946 
1947     /* destroy command memory and DMA tag */
1948     if (sc->ciss_command != NULL) {
1949 	bus_dmamap_unload(sc->ciss_command_dmat, sc->ciss_command_map);
1950 	bus_dmamem_free(sc->ciss_command_dmat, sc->ciss_command, sc->ciss_command_map);
1951     }
1952     if (sc->ciss_command_dmat)
1953 	bus_dma_tag_destroy(sc->ciss_command_dmat);
1954 
1955     if (sc->ciss_reply) {
1956 	bus_dmamap_unload(sc->ciss_reply_dmat, sc->ciss_reply_map);
1957 	bus_dmamem_free(sc->ciss_reply_dmat, sc->ciss_reply, sc->ciss_reply_map);
1958     }
1959     if (sc->ciss_reply_dmat)
1960 	bus_dma_tag_destroy(sc->ciss_reply_dmat);
1961 
1962     /* destroy DMA tags */
1963     if (sc->ciss_parent_dmat)
1964 	bus_dma_tag_destroy(sc->ciss_parent_dmat);
1965     if (sc->ciss_logical) {
1966 	for (i = 0; i <= sc->ciss_max_logical_bus; i++) {
1967 	    for (j = 0; j < CISS_MAX_LOGICAL; j++) {
1968 		if (sc->ciss_logical[i][j].cl_ldrive)
1969 		    kfree(sc->ciss_logical[i][j].cl_ldrive, CISS_MALLOC_CLASS);
1970 		if (sc->ciss_logical[i][j].cl_lstatus)
1971 		    kfree(sc->ciss_logical[i][j].cl_lstatus, CISS_MALLOC_CLASS);
1972 	    }
1973 	    kfree(sc->ciss_logical[i], CISS_MALLOC_CLASS);
1974 	}
1975 	kfree(sc->ciss_logical, CISS_MALLOC_CLASS);
1976     }
1977 
1978     if (sc->ciss_physical) {
1979 	for (i = 0; i < sc->ciss_max_physical_bus; i++)
1980 	    kfree(sc->ciss_physical[i], CISS_MALLOC_CLASS);
1981 	kfree(sc->ciss_physical, CISS_MALLOC_CLASS);
1982     }
1983 
1984     if (sc->ciss_controllers)
1985 	kfree(sc->ciss_controllers, CISS_MALLOC_CLASS);
1986 
1987     sysctl_ctx_free(&sc->ciss_sysctl_ctx);
1988 }
1989 
1990 /************************************************************************
1991  * Give a command to the adapter.
1992  *
1993  * Note that this uses the simple transport layer directly.  If we
1994  * want to add support for other layers, we'll need a switch of some
1995  * sort.
1996  *
1997  * Note that the simple transport layer has no way of refusing a
1998  * command; we only have as many request structures as the adapter
1999  * supports commands, so we don't have to check (this presumes that
2000  * the adapter can handle commands as fast as we throw them at it).
2001  */
2002 static int
2003 ciss_start(struct ciss_request *cr)
2004 {
2005     struct ciss_command	*cc;	/* XXX debugging only */
2006     int			error;
2007 
2008     cc = cr->cr_cc;
2009     debug(2, "post command %d tag %d ", cr->cr_tag, cc->header.host_tag);
2010 
2011     /*
2012      * Map the request's data.
2013      */
2014     if ((error = ciss_map_request(cr)))
2015 	return(error);
2016 
2017 #if 0
2018     ciss_print_request(cr);
2019 #endif
2020 
2021     return(0);
2022 }
2023 
2024 /************************************************************************
2025  * Fetch completed request(s) from the adapter, queue them for
2026  * completion handling.
2027  *
2028  * Note that this uses the simple transport layer directly.  If we
2029  * want to add support for other layers, we'll need a switch of some
2030  * sort.
2031  *
2032  * Note that the simple transport mechanism does not require any
2033  * reentrancy protection; the OPQ read is atomic.  If there is a
2034  * chance of a race with something else that might move the request
2035  * off the busy list, then we will have to lock against that
2036  * (eg. timeouts, etc.)
2037  */
2038 static void
2039 ciss_done(struct ciss_softc *sc, cr_qhead_t *qh)
2040 {
2041     struct ciss_request	*cr;
2042     struct ciss_command	*cc;
2043     u_int32_t		tag, index;
2044 
2045     debug_called(3);
2046 
2047     /*
2048      * Loop quickly taking requests from the adapter and moving them
2049      * to the completed queue.
2050      */
2051     for (;;) {
2052 
2053 	tag = CISS_TL_SIMPLE_FETCH_CMD(sc);
2054 	if (tag == CISS_TL_SIMPLE_OPQ_EMPTY)
2055 	    break;
2056 	index = tag >> 2;
2057 	debug(2, "completed command %d%s", index,
2058 	      (tag & CISS_HDR_HOST_TAG_ERROR) ? " with error" : "");
2059 	if (index >= sc->ciss_max_requests) {
2060 	    ciss_printf(sc, "completed invalid request %d (0x%x)\n", index, tag);
2061 	    continue;
2062 	}
2063 	cr = &(sc->ciss_request[index]);
2064 	cc = cr->cr_cc;
2065 	cc->header.host_tag = tag;	/* not updated by adapter */
2066 	ciss_enqueue_complete(cr, qh);
2067     }
2068 
2069 }
2070 
2071 static void
2072 ciss_perf_done(struct ciss_softc *sc, cr_qhead_t *qh)
2073 {
2074     struct ciss_request	*cr;
2075     struct ciss_command	*cc;
2076     u_int32_t		tag, index;
2077 
2078     debug_called(3);
2079 
2080     /*
2081      * Loop quickly taking requests from the adapter and moving them
2082      * to the completed queue.
2083      */
2084     for (;;) {
2085 	tag = sc->ciss_reply[sc->ciss_rqidx];
2086 	if ((tag & CISS_CYCLE_MASK) != sc->ciss_cycle)
2087 	    break;
2088 	index = tag >> 2;
2089 	debug(2, "completed command %d%s\n", index,
2090 	      (tag & CISS_HDR_HOST_TAG_ERROR) ? " with error" : "");
2091 	if (index < sc->ciss_max_requests) {
2092 	    cr = &(sc->ciss_request[index]);
2093 	    cc = cr->cr_cc;
2094 	    cc->header.host_tag = tag;	/* not updated by adapter */
2095 	    ciss_enqueue_complete(cr, qh);
2096 	} else {
2097 	    ciss_printf(sc, "completed invalid request %d (0x%x)\n", index, tag);
2098 	}
2099 	if (++sc->ciss_rqidx == sc->ciss_max_requests) {
2100 	    sc->ciss_rqidx = 0;
2101 	    sc->ciss_cycle ^= 1;
2102 	}
2103     }
2104 
2105 }
2106 
2107 /************************************************************************
2108  * Take an interrupt from the adapter.
2109  */
2110 static void
2111 ciss_intr(void *arg)
2112 {
2113     cr_qhead_t qh;
2114     struct ciss_softc	*sc = (struct ciss_softc *)arg;
2115 
2116     /*
2117      * The only interrupt we recognise indicates that there are
2118      * entries in the outbound post queue.
2119      */
2120     STAILQ_INIT(&qh);
2121     ciss_done(sc, &qh);
2122     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2123     ciss_complete(sc, &qh);
2124     lockmgr(&sc->ciss_lock, LK_RELEASE);
2125 }
2126 
2127 static void
2128 ciss_perf_intr(void *arg)
2129 {
2130     struct ciss_softc	*sc = (struct ciss_softc *)arg;
2131 
2132     /* Clear the interrupt and flush the bridges.  Docs say that the flush
2133      * needs to be done twice, which doesn't seem right.
2134      */
2135     CISS_TL_PERF_CLEAR_INT(sc);
2136     CISS_TL_PERF_FLUSH_INT(sc);
2137 
2138     ciss_perf_msi_intr(sc);
2139 }
2140 
2141 static void
2142 ciss_perf_msi_intr(void *arg)
2143 {
2144     cr_qhead_t qh;
2145     struct ciss_softc	*sc = (struct ciss_softc *)arg;
2146 
2147     STAILQ_INIT(&qh);
2148     ciss_perf_done(sc, &qh);
2149     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2150     ciss_complete(sc, &qh);
2151     lockmgr(&sc->ciss_lock, LK_RELEASE);
2152 }
2153 
2154 
2155 /************************************************************************
2156  * Process completed requests.
2157  *
2158  * Requests can be completed in three fashions:
2159  *
2160  * - by invoking a callback function (cr_complete is non-null)
2161  * - by waking up a sleeper (cr_flags has CISS_REQ_SLEEP set)
2162  * - by clearing the CISS_REQ_POLL flag in interrupt/timeout context
2163  */
2164 static void
2165 ciss_complete(struct ciss_softc *sc, cr_qhead_t *qh)
2166 {
2167     struct ciss_request	*cr;
2168 
2169     debug_called(2);
2170 
2171     /*
2172      * Loop taking requests off the completed queue and performing
2173      * completion processing on them.
2174      */
2175     for (;;) {
2176 	if ((cr = ciss_dequeue_complete(sc, qh)) == NULL)
2177 	    break;
2178 	ciss_unmap_request(cr);
2179 
2180 	if ((cr->cr_flags & CISS_REQ_BUSY) == 0)
2181 	    ciss_printf(sc, "WARNING: completing non-busy request\n");
2182 	cr->cr_flags &= ~CISS_REQ_BUSY;
2183 
2184 	/*
2185 	 * If the request has a callback, invoke it.
2186 	 */
2187 	if (cr->cr_complete != NULL) {
2188 	    cr->cr_complete(cr);
2189 	    continue;
2190 	}
2191 
2192 	/*
2193 	 * If someone is sleeping on this request, wake them up.
2194 	 */
2195 	if (cr->cr_flags & CISS_REQ_SLEEP) {
2196 	    cr->cr_flags &= ~CISS_REQ_SLEEP;
2197 	    wakeup(cr);
2198 	    continue;
2199 	}
2200 
2201 	/*
2202 	 * If someone is polling this request for completion, signal.
2203 	 */
2204 	if (cr->cr_flags & CISS_REQ_POLL) {
2205 	    cr->cr_flags &= ~CISS_REQ_POLL;
2206 	    continue;
2207 	}
2208 
2209 	/*
2210 	 * Give up and throw the request back on the free queue.  This
2211 	 * should never happen; resources will probably be lost.
2212 	 */
2213 	ciss_printf(sc, "WARNING: completed command with no submitter\n");
2214 	ciss_enqueue_free(cr);
2215     }
2216 }
2217 
2218 /************************************************************************
2219  * Report on the completion status of a request, and pass back SCSI
2220  * and command status values.
2221  */
2222 static int
2223 _ciss_report_request(struct ciss_request *cr, int *command_status, int *scsi_status, const char *func)
2224 {
2225     struct ciss_command		*cc;
2226     struct ciss_error_info	*ce;
2227 
2228     debug_called(2);
2229 
2230     cc = cr->cr_cc;
2231     ce = (struct ciss_error_info *)&(cc->sg[0]);
2232 
2233     /*
2234      * We don't consider data under/overrun an error for the Report
2235      * Logical/Physical LUNs commands.
2236      */
2237     if ((cc->header.host_tag & CISS_HDR_HOST_TAG_ERROR) &&
2238 	((ce->command_status == CISS_CMD_STATUS_DATA_OVERRUN) ||
2239 	 (ce->command_status == CISS_CMD_STATUS_DATA_UNDERRUN)) &&
2240 	((cc->cdb.cdb[0] == CISS_OPCODE_REPORT_LOGICAL_LUNS) ||
2241 	 (cc->cdb.cdb[0] == CISS_OPCODE_REPORT_PHYSICAL_LUNS) ||
2242 	 (cc->cdb.cdb[0] == INQUIRY))) {
2243 	cc->header.host_tag &= ~CISS_HDR_HOST_TAG_ERROR;
2244 	debug(2, "ignoring irrelevant under/overrun error");
2245     }
2246 
2247     /*
2248      * Check the command's error bit, if clear, there's no status and
2249      * everything is OK.
2250      */
2251     if (!(cc->header.host_tag & CISS_HDR_HOST_TAG_ERROR)) {
2252 	if (scsi_status != NULL)
2253 	    *scsi_status = SCSI_STATUS_OK;
2254 	if (command_status != NULL)
2255 	    *command_status = CISS_CMD_STATUS_SUCCESS;
2256 	return(0);
2257     } else {
2258 	if (command_status != NULL)
2259 	    *command_status = ce->command_status;
2260 	if (scsi_status != NULL) {
2261 	    if (ce->command_status == CISS_CMD_STATUS_TARGET_STATUS) {
2262 		*scsi_status = ce->scsi_status;
2263 	    } else {
2264 		*scsi_status = -1;
2265 	    }
2266 	}
2267 	if (bootverbose)
2268 	    ciss_printf(cr->cr_sc, "command status 0x%x (%s) scsi status 0x%x\n",
2269 			ce->command_status, ciss_name_command_status(ce->command_status),
2270 			ce->scsi_status);
2271 	if (ce->command_status == CISS_CMD_STATUS_INVALID_COMMAND) {
2272 	    ciss_printf(cr->cr_sc, "invalid command, offense size %d at %d, value 0x%x, function %s\n",
2273 			ce->additional_error_info.invalid_command.offense_size,
2274 			ce->additional_error_info.invalid_command.offense_offset,
2275 			ce->additional_error_info.invalid_command.offense_value,
2276 			func);
2277 	}
2278     }
2279 #if 0
2280     ciss_print_request(cr);
2281 #endif
2282     return(1);
2283 }
2284 
2285 /************************************************************************
2286  * Issue a request and don't return until it's completed.
2287  *
2288  * Depending on adapter status, we may poll or sleep waiting for
2289  * completion.
2290  */
2291 static int
2292 ciss_synch_request(struct ciss_request *cr, int timeout)
2293 {
2294     if (cr->cr_sc->ciss_flags & CISS_FLAG_RUNNING) {
2295 	return(ciss_wait_request(cr, timeout));
2296     } else {
2297 	return(ciss_poll_request(cr, timeout));
2298     }
2299 }
2300 
2301 /************************************************************************
2302  * Issue a request and poll for completion.
2303  *
2304  * Timeout in milliseconds.
2305  */
2306 static int
2307 ciss_poll_request(struct ciss_request *cr, int timeout)
2308 {
2309     cr_qhead_t qh;
2310     struct ciss_softc *sc;
2311     int		error;
2312 
2313     debug_called(2);
2314 
2315     STAILQ_INIT(&qh);
2316     sc = cr->cr_sc;
2317     cr->cr_flags |= CISS_REQ_POLL;
2318     if ((error = ciss_start(cr)) != 0)
2319 	return(error);
2320 
2321     do {
2322 	if (sc->ciss_perf)
2323 	    ciss_perf_done(sc, &qh);
2324 	else
2325 	    ciss_done(sc, &qh);
2326 	ciss_complete(sc, &qh);
2327 	if (!(cr->cr_flags & CISS_REQ_POLL))
2328 	    return(0);
2329 	DELAY(1000);
2330     } while (timeout-- >= 0);
2331     return(EWOULDBLOCK);
2332 }
2333 
2334 /************************************************************************
2335  * Issue a request and sleep waiting for completion.
2336  *
2337  * Timeout in milliseconds.  Note that a spurious wakeup will reset
2338  * the timeout.
2339  */
2340 static int
2341 ciss_wait_request(struct ciss_request *cr, int timeout)
2342 {
2343     int		error;
2344 
2345     debug_called(2);
2346 
2347     cr->cr_flags |= CISS_REQ_SLEEP;
2348     if ((error = ciss_start(cr)) != 0)
2349 	return(error);
2350 
2351     while ((cr->cr_flags & CISS_REQ_SLEEP) && (error != EWOULDBLOCK)) {
2352 	error = lksleep(cr, &cr->cr_sc->ciss_lock, 0, "cissREQ", (timeout * hz) / 1000);
2353     }
2354     return(error);
2355 }
2356 
2357 #if 0
2358 /************************************************************************
2359  * Abort a request.  Note that a potential exists here to race the
2360  * request being completed; the caller must deal with this.
2361  */
2362 static int
2363 ciss_abort_request(struct ciss_request *ar)
2364 {
2365     struct ciss_request		*cr;
2366     struct ciss_command		*cc;
2367     struct ciss_message_cdb	*cmc;
2368     int				error;
2369 
2370     debug_called(1);
2371 
2372     /* get a request */
2373     if ((error = ciss_get_request(ar->cr_sc, &cr)) != 0)
2374 	return(error);
2375 
2376     /* build the abort command */
2377     cc = cr->cr_cc;
2378     cc->header.address.mode.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;	/* addressing? */
2379     cc->header.address.physical.target = 0;
2380     cc->header.address.physical.bus = 0;
2381     cc->cdb.cdb_length = sizeof(*cmc);
2382     cc->cdb.type = CISS_CDB_TYPE_MESSAGE;
2383     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
2384     cc->cdb.direction = CISS_CDB_DIRECTION_NONE;
2385     cc->cdb.timeout = 30;
2386 
2387     cmc = (struct ciss_message_cdb *)&(cc->cdb.cdb[0]);
2388     cmc->opcode = CISS_OPCODE_MESSAGE_ABORT;
2389     cmc->type = CISS_MESSAGE_ABORT_TASK;
2390     cmc->abort_tag = ar->cr_tag;	/* endianness?? */
2391 
2392     /*
2393      * Send the request and wait for a response.  If we believe we
2394      * aborted the request OK, clear the flag that indicates it's
2395      * running.
2396      */
2397     error = ciss_synch_request(cr, 35 * 1000);
2398     if (!error)
2399 	error = ciss_report_request(cr, NULL, NULL);
2400     ciss_release_request(cr);
2401 
2402     return(error);
2403 }
2404 #endif
2405 
2406 
2407 /************************************************************************
2408  * Fetch and initialise a request
2409  */
2410 static int
2411 ciss_get_request(struct ciss_softc *sc, struct ciss_request **crp)
2412 {
2413     struct ciss_request *cr;
2414 
2415     debug_called(2);
2416 
2417     /*
2418      * Get a request and clean it up.
2419      */
2420     if ((cr = ciss_dequeue_free(sc)) == NULL)
2421 	return(ENOMEM);
2422 
2423     cr->cr_data = NULL;
2424     cr->cr_flags = 0;
2425     cr->cr_complete = NULL;
2426     cr->cr_private = NULL;
2427     cr->cr_sg_tag = CISS_SG_MAX;	/* Backstop to prevent accidents */
2428 
2429     ciss_preen_command(cr);
2430     *crp = cr;
2431     return(0);
2432 }
2433 
2434 static void
2435 ciss_preen_command(struct ciss_request *cr)
2436 {
2437     struct ciss_command	*cc;
2438     u_int32_t		cmdphys;
2439 
2440     /*
2441      * Clean up the command structure.
2442      *
2443      * Note that we set up the error_info structure here, since the
2444      * length can be overwritten by any command.
2445      */
2446     cc = cr->cr_cc;
2447     cc->header.sg_in_list = 0;		/* kinda inefficient this way */
2448     cc->header.sg_total = 0;
2449     cc->header.host_tag = cr->cr_tag << 2;
2450     cc->header.host_tag_zeroes = 0;
2451     cmdphys = cr->cr_ccphys;
2452     cc->error_info.error_info_address = cmdphys + sizeof(struct ciss_command);
2453     cc->error_info.error_info_length = CISS_COMMAND_ALLOC_SIZE - sizeof(struct ciss_command);
2454 }
2455 
2456 /************************************************************************
2457  * Release a request to the free list.
2458  */
2459 static void
2460 ciss_release_request(struct ciss_request *cr)
2461 {
2462     debug_called(2);
2463 
2464     /* release the request to the free queue */
2465     ciss_requeue_free(cr);
2466 }
2467 
2468 /************************************************************************
2469  * Allocate a request that will be used to send a BMIC command.  Do some
2470  * of the common setup here to avoid duplicating it everywhere else.
2471  */
2472 static int
2473 ciss_get_bmic_request(struct ciss_softc *sc, struct ciss_request **crp,
2474 		      int opcode, void **bufp, size_t bufsize)
2475 {
2476     struct ciss_request		*cr;
2477     struct ciss_command		*cc;
2478     struct ciss_bmic_cdb	*cbc;
2479     void			*buf;
2480     int				error;
2481     int				dataout;
2482 
2483     debug_called(2);
2484 
2485     cr = NULL;
2486     buf = NULL;
2487 
2488     /*
2489      * Get a request.
2490      */
2491     if ((error = ciss_get_request(sc, &cr)) != 0)
2492 	goto out;
2493 
2494     /*
2495      * Allocate data storage if requested, determine the data direction.
2496      */
2497     dataout = 0;
2498     if ((bufsize > 0) && (bufp != NULL)) {
2499 	if (*bufp == NULL) {
2500 	    buf = kmalloc(bufsize, CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
2501 	} else {
2502 	    buf = *bufp;
2503 	    dataout = 1;	/* we are given a buffer, so we are writing */
2504 	}
2505     }
2506 
2507     /*
2508      * Build a CISS BMIC command to get the logical drive ID.
2509      */
2510     cr->cr_data = buf;
2511     cr->cr_length = bufsize;
2512     if (!dataout)
2513 	cr->cr_flags = CISS_REQ_DATAIN;
2514 
2515     cc = cr->cr_cc;
2516     cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
2517     cc->header.address.physical.bus = 0;
2518     cc->header.address.physical.target = 0;
2519     cc->cdb.cdb_length = sizeof(*cbc);
2520     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
2521     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
2522     cc->cdb.direction = dataout ? CISS_CDB_DIRECTION_WRITE : CISS_CDB_DIRECTION_READ;
2523     cc->cdb.timeout = 0;
2524 
2525     cbc = (struct ciss_bmic_cdb *)&(cc->cdb.cdb[0]);
2526     bzero(cbc, sizeof(*cbc));
2527     cbc->opcode = dataout ? CISS_ARRAY_CONTROLLER_WRITE : CISS_ARRAY_CONTROLLER_READ;
2528     cbc->bmic_opcode = opcode;
2529     cbc->size = htons((u_int16_t)bufsize);
2530 
2531 out:
2532     if (error) {
2533 	if (cr != NULL)
2534 	    ciss_release_request(cr);
2535     } else {
2536 	*crp = cr;
2537 	if ((bufp != NULL) && (*bufp == NULL) && (buf != NULL))
2538 	    *bufp = buf;
2539     }
2540     return(error);
2541 }
2542 
2543 /************************************************************************
2544  * Handle a command passed in from userspace.
2545  */
2546 static int
2547 ciss_user_command(struct ciss_softc *sc, IOCTL_Command_struct *ioc)
2548 {
2549     struct ciss_request		*cr;
2550     struct ciss_command		*cc;
2551     struct ciss_error_info	*ce;
2552     int				error = 0;
2553 
2554     debug_called(1);
2555 
2556     cr = NULL;
2557 
2558     /*
2559      * Get a request.
2560      */
2561     while (ciss_get_request(sc, &cr) != 0)
2562 	lksleep(sc, &sc->ciss_lock, 0, "cissREQ", hz);
2563     cc = cr->cr_cc;
2564 
2565     /*
2566      * Allocate an in-kernel databuffer if required, copy in user data.
2567      */
2568     lockmgr(&sc->ciss_lock, LK_RELEASE);
2569     cr->cr_length = ioc->buf_size;
2570     if (ioc->buf_size > 0) {
2571 	cr->cr_data = kmalloc(ioc->buf_size, CISS_MALLOC_CLASS, M_WAITOK);
2572 	if ((error = copyin(ioc->buf, cr->cr_data, ioc->buf_size))) {
2573 	    debug(0, "copyin: bad data buffer %p/%d", ioc->buf, ioc->buf_size);
2574 	    goto out_unlocked;
2575 	}
2576     }
2577 
2578     /*
2579      * Build the request based on the user command.
2580      */
2581     bcopy(&ioc->LUN_info, &cc->header.address, sizeof(cc->header.address));
2582     bcopy(&ioc->Request, &cc->cdb, sizeof(cc->cdb));
2583 
2584     /* XXX anything else to populate here? */
2585     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2586 
2587     /*
2588      * Run the command.
2589      */
2590     if ((error = ciss_synch_request(cr, 60 * 1000))) {
2591 	debug(0, "request failed - %d", error);
2592 	goto out;
2593     }
2594 
2595     /*
2596      * Check to see if the command succeeded.
2597      */
2598     ce = (struct ciss_error_info *)&(cc->sg[0]);
2599     if ((cc->header.host_tag & CISS_HDR_HOST_TAG_ERROR) == 0)
2600 	bzero(ce, sizeof(*ce));
2601 
2602     /*
2603      * Copy the results back to the user.
2604      */
2605     bcopy(ce, &ioc->error_info, sizeof(*ce));
2606     lockmgr(&sc->ciss_lock, LK_RELEASE);
2607     if ((ioc->buf_size > 0) &&
2608 	(error = copyout(cr->cr_data, ioc->buf, ioc->buf_size))) {
2609 	debug(0, "copyout: bad data buffer %p/%d", ioc->buf, ioc->buf_size);
2610 	goto out_unlocked;
2611     }
2612 
2613     /* done OK */
2614     error = 0;
2615 
2616 out_unlocked:
2617     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2618 
2619 out:
2620     if ((cr != NULL) && (cr->cr_data != NULL))
2621 	kfree(cr->cr_data, CISS_MALLOC_CLASS);
2622     if (cr != NULL)
2623 	ciss_release_request(cr);
2624     return(error);
2625 }
2626 
2627 /************************************************************************
2628  * Map a request into bus-visible space, initialise the scatter/gather
2629  * list.
2630  */
2631 static int
2632 ciss_map_request(struct ciss_request *cr)
2633 {
2634     struct ciss_softc	*sc;
2635     int			error = 0;
2636 
2637     debug_called(2);
2638 
2639     sc = cr->cr_sc;
2640 
2641     /* check that mapping is necessary */
2642     if (cr->cr_flags & CISS_REQ_MAPPED)
2643 	return(0);
2644 
2645     cr->cr_flags |= CISS_REQ_MAPPED;
2646 
2647     bus_dmamap_sync(sc->ciss_command_dmat, sc->ciss_command_map,
2648 		    BUS_DMASYNC_PREWRITE);
2649 
2650     if (cr->cr_data != NULL) {
2651 	error = bus_dmamap_load(sc->ciss_buffer_dmat, cr->cr_datamap,
2652 				cr->cr_data, cr->cr_length,
2653 				ciss_request_map_helper, cr, 0);
2654 	if (error != 0)
2655 	    return (error);
2656     } else {
2657 	/*
2658 	 * Post the command to the adapter.
2659 	 */
2660 	cr->cr_sg_tag = CISS_SG_NONE;
2661 	cr->cr_flags |= CISS_REQ_BUSY;
2662 	if (sc->ciss_perf)
2663 	    CISS_TL_PERF_POST_CMD(sc, cr);
2664 	else
2665 	    CISS_TL_SIMPLE_POST_CMD(sc, cr->cr_ccphys);
2666     }
2667 
2668     return(0);
2669 }
2670 
2671 static void
2672 ciss_request_map_helper(void *arg, bus_dma_segment_t *segs, int nseg, int error)
2673 {
2674     struct ciss_command	*cc;
2675     struct ciss_request *cr;
2676     struct ciss_softc	*sc;
2677     int			i;
2678 
2679     debug_called(2);
2680 
2681     cr = (struct ciss_request *)arg;
2682     sc = cr->cr_sc;
2683     cc = cr->cr_cc;
2684 
2685     for (i = 0; i < nseg; i++) {
2686 	cc->sg[i].address = segs[i].ds_addr;
2687 	cc->sg[i].length = segs[i].ds_len;
2688 	cc->sg[i].extension = 0;
2689     }
2690     /* we leave the s/g table entirely within the command */
2691     cc->header.sg_in_list = nseg;
2692     cc->header.sg_total = nseg;
2693 
2694     if (cr->cr_flags & CISS_REQ_DATAIN)
2695 	bus_dmamap_sync(sc->ciss_buffer_dmat, cr->cr_datamap, BUS_DMASYNC_PREREAD);
2696     if (cr->cr_flags & CISS_REQ_DATAOUT)
2697 	bus_dmamap_sync(sc->ciss_buffer_dmat, cr->cr_datamap, BUS_DMASYNC_PREWRITE);
2698 
2699     if (nseg == 0)
2700 	cr->cr_sg_tag = CISS_SG_NONE;
2701     else if (nseg == 1)
2702 	cr->cr_sg_tag = CISS_SG_1;
2703     else if (nseg == 2)
2704 	cr->cr_sg_tag = CISS_SG_2;
2705     else if (nseg <= 4)
2706 	cr->cr_sg_tag = CISS_SG_4;
2707     else if (nseg <= 8)
2708 	cr->cr_sg_tag = CISS_SG_8;
2709     else if (nseg <= 16)
2710 	cr->cr_sg_tag = CISS_SG_16;
2711     else if (nseg <= 32)
2712 	cr->cr_sg_tag = CISS_SG_32;
2713     else
2714 	cr->cr_sg_tag = CISS_SG_MAX;
2715 
2716     /*
2717      * Post the command to the adapter.
2718      */
2719     cr->cr_flags |= CISS_REQ_BUSY;
2720     if (sc->ciss_perf)
2721 	CISS_TL_PERF_POST_CMD(sc, cr);
2722     else
2723 	CISS_TL_SIMPLE_POST_CMD(sc, cr->cr_ccphys);
2724 }
2725 
2726 /************************************************************************
2727  * Unmap a request from bus-visible space.
2728  */
2729 static void
2730 ciss_unmap_request(struct ciss_request *cr)
2731 {
2732     struct ciss_softc	*sc;
2733 
2734     debug_called(2);
2735 
2736     sc = cr->cr_sc;
2737 
2738     /* check that unmapping is necessary */
2739     if ((cr->cr_flags & CISS_REQ_MAPPED) == 0)
2740 	return;
2741 
2742     bus_dmamap_sync(sc->ciss_command_dmat, sc->ciss_command_map,
2743 		    BUS_DMASYNC_POSTWRITE);
2744 
2745     if (cr->cr_data == NULL)
2746 	goto out;
2747 
2748     if (cr->cr_flags & CISS_REQ_DATAIN)
2749 	bus_dmamap_sync(sc->ciss_buffer_dmat, cr->cr_datamap, BUS_DMASYNC_POSTREAD);
2750     if (cr->cr_flags & CISS_REQ_DATAOUT)
2751 	bus_dmamap_sync(sc->ciss_buffer_dmat, cr->cr_datamap, BUS_DMASYNC_POSTWRITE);
2752 
2753     bus_dmamap_unload(sc->ciss_buffer_dmat, cr->cr_datamap);
2754 out:
2755     cr->cr_flags &= ~CISS_REQ_MAPPED;
2756 }
2757 
2758 /************************************************************************
2759  * Attach the driver to CAM.
2760  *
2761  * We put all the logical drives on a single SCSI bus.
2762  */
2763 static int
2764 ciss_cam_init(struct ciss_softc *sc)
2765 {
2766     int			i, maxbus;
2767 
2768     debug_called(1);
2769 
2770     /*
2771      * Allocate a devq.  We can reuse this for the masked physical
2772      * devices if we decide to export these as well.
2773      */
2774     if ((sc->ciss_cam_devq = cam_simq_alloc(sc->ciss_max_requests - 2)) == NULL) {
2775 	ciss_printf(sc, "can't allocate CAM SIM queue\n");
2776 	return(ENOMEM);
2777     }
2778 
2779     /*
2780      * Create a SIM.
2781      *
2782      * This naturally wastes a bit of memory.  The alternative is to allocate
2783      * and register each bus as it is found, and then track them on a linked
2784      * list.  Unfortunately, the driver has a few places where it needs to
2785      * look up the SIM based solely on bus number, and it's unclear whether
2786      * a list traversal would work for these situations.
2787      */
2788     maxbus = max(sc->ciss_max_logical_bus, sc->ciss_max_physical_bus +
2789 		 CISS_PHYSICAL_BASE);
2790     sc->ciss_cam_sim = kmalloc(maxbus * sizeof(struct cam_sim*),
2791 			       CISS_MALLOC_CLASS, M_INTWAIT | M_ZERO);
2792 
2793     for (i = 0; i < sc->ciss_max_logical_bus; i++) {
2794 	if ((sc->ciss_cam_sim[i] = cam_sim_alloc(ciss_cam_action, ciss_cam_poll,
2795 						 "ciss", sc,
2796 						 device_get_unit(sc->ciss_dev),
2797 						 &sc->ciss_lock,
2798 						 2,
2799 						 sc->ciss_max_requests - 2,
2800 						 sc->ciss_cam_devq)) == NULL) {
2801 	    ciss_printf(sc, "can't allocate CAM SIM for controller %d\n", i);
2802 	    return(ENOMEM);
2803 	}
2804 
2805 	/*
2806 	 * Register bus with this SIM.
2807 	 */
2808 	lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2809 	if (i == 0 || sc->ciss_controllers[i].physical.bus != 0) {
2810 	    if (xpt_bus_register(sc->ciss_cam_sim[i], i) != 0) {
2811 		ciss_printf(sc, "can't register SCSI bus %d\n", i);
2812 		lockmgr(&sc->ciss_lock, LK_RELEASE);
2813 		return (ENXIO);
2814 	    }
2815 	}
2816 	lockmgr(&sc->ciss_lock, LK_RELEASE);
2817     }
2818 
2819     for (i = CISS_PHYSICAL_BASE; i < sc->ciss_max_physical_bus +
2820 	 CISS_PHYSICAL_BASE; i++) {
2821 	if ((sc->ciss_cam_sim[i] = cam_sim_alloc(ciss_cam_action, ciss_cam_poll,
2822 						 "ciss", sc,
2823 						 device_get_unit(sc->ciss_dev),
2824 						 &sc->ciss_lock, 1,
2825 						 sc->ciss_max_requests - 2,
2826 						 sc->ciss_cam_devq)) == NULL) {
2827 	    ciss_printf(sc, "can't allocate CAM SIM for controller %d\n", i);
2828 	    return (ENOMEM);
2829 	}
2830 
2831 	lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
2832 	if (xpt_bus_register(sc->ciss_cam_sim[i], i) != 0) {
2833 	    ciss_printf(sc, "can't register SCSI bus %d\n", i);
2834 	    lockmgr(&sc->ciss_lock, LK_RELEASE);
2835 	    return (ENXIO);
2836 	}
2837 	lockmgr(&sc->ciss_lock, LK_RELEASE);
2838     }
2839 
2840     /*
2841      * Initiate a rescan of the bus.
2842      */
2843     ciss_cam_rescan_all(sc);
2844 
2845     return(0);
2846 }
2847 
2848 /************************************************************************
2849  * Initiate a rescan of the 'logical devices' SIM
2850  */
2851 static void
2852 ciss_cam_rescan_target(struct ciss_softc *sc, int bus, int target)
2853 {
2854     union ccb		*ccb;
2855 
2856     debug_called(1);
2857 
2858     ccb = kmalloc(sizeof(union ccb), M_TEMP, M_WAITOK | M_ZERO);
2859 
2860     if (xpt_create_path(&ccb->ccb_h.path, xpt_periph,
2861 	    cam_sim_path(sc->ciss_cam_sim[bus]),
2862 	    target, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
2863 	ciss_printf(sc, "rescan failed (can't create path)\n");
2864 	kfree(ccb, M_TEMP);
2865 	return;
2866     }
2867 
2868     xpt_setup_ccb(&ccb->ccb_h, ccb->ccb_h.path, 5/*priority (low)*/);
2869     ccb->ccb_h.func_code = XPT_SCAN_BUS;
2870     ccb->ccb_h.cbfcnp = ciss_cam_rescan_callback;
2871     ccb->crcn.flags = CAM_FLAG_NONE;
2872     xpt_action(ccb);
2873 
2874     /* scan is now in progress */
2875 }
2876 
2877 static void
2878 ciss_cam_rescan_all(struct ciss_softc *sc)
2879 {
2880     int i;
2881 
2882     /* Rescan the logical buses */
2883     for (i = 0; i < sc->ciss_max_logical_bus; i++)
2884 	ciss_cam_rescan_target(sc, i, CAM_TARGET_WILDCARD);
2885     /* Rescan the physical buses */
2886     for (i = CISS_PHYSICAL_BASE; i < sc->ciss_max_physical_bus +
2887 	 CISS_PHYSICAL_BASE; i++)
2888 	ciss_cam_rescan_target(sc, i, CAM_TARGET_WILDCARD);
2889 }
2890 
2891 static void
2892 ciss_cam_rescan_callback(struct cam_periph *periph, union ccb *ccb)
2893 {
2894     xpt_free_path(ccb->ccb_h.path);
2895     kfree(ccb, M_TEMP);
2896 }
2897 
2898 /************************************************************************
2899  * Handle requests coming from CAM
2900  */
2901 static void
2902 ciss_cam_action(struct cam_sim *sim, union ccb *ccb)
2903 {
2904     struct ciss_softc	*sc;
2905     struct ccb_scsiio	*csio;
2906     int			bus, target;
2907     int			physical;
2908 
2909     sc = cam_sim_softc(sim);
2910     bus = cam_sim_bus(sim);
2911     csio = (struct ccb_scsiio *)&ccb->csio;
2912     target = csio->ccb_h.target_id;
2913     physical = CISS_IS_PHYSICAL(bus);
2914 
2915     switch (ccb->ccb_h.func_code) {
2916 
2917 	/* perform SCSI I/O */
2918     case XPT_SCSI_IO:
2919 	if (!ciss_cam_action_io(sim, csio))
2920 	    return;
2921 	break;
2922 
2923 	/* perform geometry calculations */
2924     case XPT_CALC_GEOMETRY:
2925     {
2926 	struct ccb_calc_geometry	*ccg = &ccb->ccg;
2927 	struct ciss_ldrive		*ld;
2928 
2929 	debug(1, "XPT_CALC_GEOMETRY %d:%d:%d", cam_sim_bus(sim), ccb->ccb_h.target_id, ccb->ccb_h.target_lun);
2930 
2931 	ld = NULL;
2932 	if (!physical)
2933 	    ld = &sc->ciss_logical[bus][target];
2934 
2935 	/*
2936 	 * Use the cached geometry settings unless the fault tolerance
2937 	 * is invalid.
2938 	 */
2939 	if (physical || ld->cl_geometry.fault_tolerance == 0xFF) {
2940 	    u_int32_t			secs_per_cylinder;
2941 
2942 	    ccg->heads = 255;
2943 	    ccg->secs_per_track = 32;
2944 	    secs_per_cylinder = ccg->heads * ccg->secs_per_track;
2945 	    ccg->cylinders = ccg->volume_size / secs_per_cylinder;
2946 	} else {
2947 	    ccg->heads = ld->cl_geometry.heads;
2948 	    ccg->secs_per_track = ld->cl_geometry.sectors;
2949 	    ccg->cylinders = ntohs(ld->cl_geometry.cylinders);
2950 	}
2951 	ccb->ccb_h.status = CAM_REQ_CMP;
2952         break;
2953     }
2954 
2955 	/* handle path attribute inquiry */
2956     case XPT_PATH_INQ:
2957     {
2958 	struct ccb_pathinq	*cpi = &ccb->cpi;
2959 
2960 	debug(1, "XPT_PATH_INQ %d:%d:%d", cam_sim_bus(sim), ccb->ccb_h.target_id, ccb->ccb_h.target_lun);
2961 
2962 	cpi->version_num = 1;
2963 	cpi->hba_inquiry = PI_TAG_ABLE;	/* XXX is this correct? */
2964 	cpi->target_sprt = 0;
2965 	cpi->hba_misc = 0;
2966 	cpi->max_target = CISS_MAX_LOGICAL;
2967 	cpi->max_lun = 0;		/* 'logical drive' channel only */
2968 	cpi->initiator_id = CISS_MAX_LOGICAL;
2969 	strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
2970         strncpy(cpi->hba_vid, "msmith@freebsd.org", HBA_IDLEN);
2971         strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
2972         cpi->unit_number = cam_sim_unit(sim);
2973         cpi->bus_id = cam_sim_bus(sim);
2974 	cpi->base_transfer_speed = 132 * 1024;	/* XXX what to set this to? */
2975 	cpi->transport = XPORT_SPI;
2976 	cpi->transport_version = 2;
2977 	cpi->protocol = PROTO_SCSI;
2978 	cpi->protocol_version = SCSI_REV_2;
2979 #if 0 /* XXX swildner */
2980 	cpi->maxio = (CISS_MAX_SG_ELEMENTS - 1) * PAGE_SIZE;
2981 #endif
2982 	ccb->ccb_h.status = CAM_REQ_CMP;
2983 	break;
2984     }
2985 
2986     case XPT_GET_TRAN_SETTINGS:
2987     {
2988 	struct ccb_trans_settings	*cts = &ccb->cts;
2989 	int				bus, target;
2990 	struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi;
2991 	struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi;
2992 
2993 	bus = cam_sim_bus(sim);
2994 	target = cts->ccb_h.target_id;
2995 
2996 	debug(1, "XPT_GET_TRAN_SETTINGS %d:%d", bus, target);
2997 	/* disconnect always OK */
2998 	cts->protocol = PROTO_SCSI;
2999 	cts->protocol_version = SCSI_REV_2;
3000 	cts->transport = XPORT_SPI;
3001 	cts->transport_version = 2;
3002 
3003 	spi->valid = CTS_SPI_VALID_DISC;
3004 	spi->flags = CTS_SPI_FLAGS_DISC_ENB;
3005 
3006 	scsi->valid = CTS_SCSI_VALID_TQ;
3007 	scsi->flags = CTS_SCSI_FLAGS_TAG_ENB;
3008 
3009 	cts->ccb_h.status = CAM_REQ_CMP;
3010 	break;
3011     }
3012 
3013     default:		/* we can't do this */
3014 	debug(1, "unspported func_code = 0x%x", ccb->ccb_h.func_code);
3015 	ccb->ccb_h.status = CAM_REQ_INVALID;
3016 	break;
3017     }
3018 
3019     xpt_done(ccb);
3020 }
3021 
3022 /************************************************************************
3023  * Handle a CAM SCSI I/O request.
3024  */
3025 static int
3026 ciss_cam_action_io(struct cam_sim *sim, struct ccb_scsiio *csio)
3027 {
3028     struct ciss_softc	*sc;
3029     int			bus, target;
3030     struct ciss_request	*cr;
3031     struct ciss_command	*cc;
3032     int			error;
3033 
3034     sc = cam_sim_softc(sim);
3035     bus = cam_sim_bus(sim);
3036     target = csio->ccb_h.target_id;
3037 
3038     debug(2, "XPT_SCSI_IO %d:%d:%d", bus, target, csio->ccb_h.target_lun);
3039 
3040     /* check that the CDB pointer is not to a physical address */
3041     if ((csio->ccb_h.flags & CAM_CDB_POINTER) && (csio->ccb_h.flags & CAM_CDB_PHYS)) {
3042 	debug(3, "  CDB pointer is to physical address");
3043 	csio->ccb_h.status = CAM_REQ_CMP_ERR;
3044     }
3045 
3046     /* if there is data transfer, it must be to/from a virtual address */
3047     if ((csio->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
3048 	if (csio->ccb_h.flags & CAM_DATA_PHYS) {		/* we can't map it */
3049 	    debug(3, "  data pointer is to physical address");
3050 	    csio->ccb_h.status = CAM_REQ_CMP_ERR;
3051 	}
3052 	if (csio->ccb_h.flags & CAM_SCATTER_VALID) {	/* we want to do the s/g setup */
3053 	    debug(3, "  data has premature s/g setup");
3054 	    csio->ccb_h.status = CAM_REQ_CMP_ERR;
3055 	}
3056     }
3057 
3058     /* abandon aborted ccbs or those that have failed validation */
3059     if ((csio->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) {
3060 	debug(3, "abandoning CCB due to abort/validation failure");
3061 	return(EINVAL);
3062     }
3063 
3064     /* handle emulation of some SCSI commands ourself */
3065     if (ciss_cam_emulate(sc, csio))
3066 	return(0);
3067 
3068     /*
3069      * Get a request to manage this command.  If we can't, return the
3070      * ccb, freeze the queue and flag so that we unfreeze it when a
3071      * request completes.
3072      */
3073     if ((error = ciss_get_request(sc, &cr)) != 0) {
3074 	xpt_freeze_simq(sim, 1);
3075 	sc->ciss_flags |= CISS_FLAG_BUSY;
3076 	csio->ccb_h.status |= CAM_REQUEUE_REQ;
3077 	return(error);
3078     }
3079 
3080     /*
3081      * Build the command.
3082      */
3083     cc = cr->cr_cc;
3084     cr->cr_data = csio->data_ptr;
3085     cr->cr_length = csio->dxfer_len;
3086     cr->cr_complete = ciss_cam_complete;
3087     cr->cr_private = csio;
3088 
3089     /*
3090      * Target the right logical volume.
3091      */
3092     if (CISS_IS_PHYSICAL(bus))
3093 	cc->header.address =
3094 	    sc->ciss_physical[CISS_CAM_TO_PBUS(bus)][target].cp_address;
3095     else
3096 	cc->header.address =
3097 	    sc->ciss_logical[bus][target].cl_address;
3098     cc->cdb.cdb_length = csio->cdb_len;
3099     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
3100     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;	/* XXX ordered tags? */
3101     if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) {
3102 	cr->cr_flags = CISS_REQ_DATAOUT;
3103 	cc->cdb.direction = CISS_CDB_DIRECTION_WRITE;
3104     } else if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
3105 	cr->cr_flags = CISS_REQ_DATAIN;
3106 	cc->cdb.direction = CISS_CDB_DIRECTION_READ;
3107     } else {
3108 	cr->cr_flags = 0;
3109 	cc->cdb.direction = CISS_CDB_DIRECTION_NONE;
3110     }
3111     cc->cdb.timeout = (csio->ccb_h.timeout / 1000) + 1;
3112     if (csio->ccb_h.flags & CAM_CDB_POINTER) {
3113 	bcopy(csio->cdb_io.cdb_ptr, &cc->cdb.cdb[0], csio->cdb_len);
3114     } else {
3115 	bcopy(csio->cdb_io.cdb_bytes, &cc->cdb.cdb[0], csio->cdb_len);
3116     }
3117 
3118     /*
3119      * Submit the request to the adapter.
3120      *
3121      * Note that this may fail if we're unable to map the request (and
3122      * if we ever learn a transport layer other than simple, may fail
3123      * if the adapter rejects the command).
3124      */
3125     if ((error = ciss_start(cr)) != 0) {
3126 	xpt_freeze_simq(sim, 1);
3127 	csio->ccb_h.status |= CAM_RELEASE_SIMQ;
3128 	if (error == EINPROGRESS) {
3129 	    error = 0;
3130 	} else {
3131 	    csio->ccb_h.status |= CAM_REQUEUE_REQ;
3132 	    ciss_release_request(cr);
3133 	}
3134 	return(error);
3135     }
3136 
3137     return(0);
3138 }
3139 
3140 /************************************************************************
3141  * Emulate SCSI commands the adapter doesn't handle as we might like.
3142  */
3143 static int
3144 ciss_cam_emulate(struct ciss_softc *sc, struct ccb_scsiio *csio)
3145 {
3146     int		bus, target;
3147 
3148     target = csio->ccb_h.target_id;
3149     bus = cam_sim_bus(xpt_path_sim(csio->ccb_h.path));
3150 
3151     if (CISS_IS_PHYSICAL(bus)) {
3152 	if (sc->ciss_physical[CISS_CAM_TO_PBUS(bus)][target].cp_online != 1) {
3153 	    csio->ccb_h.status |= CAM_SEL_TIMEOUT;
3154 	    xpt_done((union ccb *)csio);
3155 	    return(1);
3156 	} else
3157 	    return(0);
3158     }
3159 
3160     /*
3161      * Handle requests for volumes that don't exist or are not online.
3162      * A selection timeout is slightly better than an illegal request.
3163      * Other errors might be better.
3164      */
3165     if (sc->ciss_logical[bus][target].cl_status != CISS_LD_ONLINE) {
3166 	csio->ccb_h.status |= CAM_SEL_TIMEOUT;
3167 	xpt_done((union ccb *)csio);
3168 	return(1);
3169     }
3170 
3171     /* if we have to fake Synchronise Cache */
3172     if (sc->ciss_flags & CISS_FLAG_FAKE_SYNCH) {
3173 	/*
3174 	 * If this is a Synchronise Cache command, typically issued when
3175 	 * a device is closed, flush the adapter and complete now.
3176 	 */
3177 	if (((csio->ccb_h.flags & CAM_CDB_POINTER) ?
3178 	     *(u_int8_t *)csio->cdb_io.cdb_ptr : csio->cdb_io.cdb_bytes[0]) == SYNCHRONIZE_CACHE) {
3179 	    ciss_flush_adapter(sc);
3180 	    csio->ccb_h.status |= CAM_REQ_CMP;
3181 	    xpt_done((union ccb *)csio);
3182 	    return(1);
3183 	}
3184     }
3185 
3186     return(0);
3187 }
3188 
3189 /************************************************************************
3190  * Check for possibly-completed commands.
3191  */
3192 static void
3193 ciss_cam_poll(struct cam_sim *sim)
3194 {
3195     cr_qhead_t qh;
3196     struct ciss_softc	*sc = cam_sim_softc(sim);
3197 
3198     debug_called(2);
3199 
3200     STAILQ_INIT(&qh);
3201     if (sc->ciss_perf)
3202 	ciss_perf_done(sc, &qh);
3203     else
3204 	ciss_done(sc, &qh);
3205     ciss_complete(sc, &qh);
3206 }
3207 
3208 /************************************************************************
3209  * Handle completion of a command - pass results back through the CCB
3210  */
3211 static void
3212 ciss_cam_complete(struct ciss_request *cr)
3213 {
3214     struct ciss_softc		*sc;
3215     struct ciss_command		*cc;
3216     struct ciss_error_info	*ce;
3217     struct ccb_scsiio		*csio;
3218     int				scsi_status;
3219     int				command_status;
3220 
3221     debug_called(2);
3222 
3223     sc = cr->cr_sc;
3224     cc = cr->cr_cc;
3225     ce = (struct ciss_error_info *)&(cc->sg[0]);
3226     csio = (struct ccb_scsiio *)cr->cr_private;
3227 
3228     /*
3229      * Extract status values from request.
3230      */
3231     ciss_report_request(cr, &command_status, &scsi_status);
3232     csio->scsi_status = scsi_status;
3233 
3234     /*
3235      * Handle specific SCSI status values.
3236      */
3237     switch(scsi_status) {
3238 	/* no status due to adapter error */
3239     case -1:
3240 	debug(0, "adapter error");
3241 	csio->ccb_h.status |= CAM_REQ_CMP_ERR;
3242 	break;
3243 
3244 	/* no status due to command completed OK */
3245     case SCSI_STATUS_OK:		/* CISS_SCSI_STATUS_GOOD */
3246 	debug(2, "SCSI_STATUS_OK");
3247 	csio->ccb_h.status |= CAM_REQ_CMP;
3248 	break;
3249 
3250 	/* check condition, sense data included */
3251     case SCSI_STATUS_CHECK_COND:	/* CISS_SCSI_STATUS_CHECK_CONDITION */
3252 	debug(0, "SCSI_STATUS_CHECK_COND  sense size %d  resid %d\n",
3253 	      ce->sense_length, ce->residual_count);
3254 	bzero(&csio->sense_data, SSD_FULL_SIZE);
3255 	bcopy(&ce->sense_info[0], &csio->sense_data, ce->sense_length);
3256 	if (csio->sense_len > ce->sense_length)
3257 		csio->sense_resid = csio->sense_len - ce->sense_length;
3258 	else
3259 		csio->sense_resid = 0;
3260 	csio->resid = ce->residual_count;
3261 	csio->ccb_h.status |= CAM_SCSI_STATUS_ERROR | CAM_AUTOSNS_VALID;
3262 #ifdef CISS_DEBUG
3263 	{
3264 	    struct scsi_sense_data	*sns = (struct scsi_sense_data *)&ce->sense_info[0];
3265 	    debug(0, "sense key %x", scsi_get_sense_key(sns, csio->sense_len -
3266 		  csio->sense_resid, /*show_errors*/ 1));
3267 	}
3268 #endif
3269 	break;
3270 
3271     case SCSI_STATUS_BUSY:		/* CISS_SCSI_STATUS_BUSY */
3272 	debug(0, "SCSI_STATUS_BUSY");
3273 	csio->ccb_h.status |= CAM_SCSI_BUSY;
3274 	break;
3275 
3276     default:
3277 	debug(0, "unknown status 0x%x", csio->scsi_status);
3278 	csio->ccb_h.status |= CAM_REQ_CMP_ERR;
3279 	break;
3280     }
3281 
3282     /* handle post-command fixup */
3283     ciss_cam_complete_fixup(sc, csio);
3284 
3285     ciss_release_request(cr);
3286     if (sc->ciss_flags & CISS_FLAG_BUSY) {
3287 	sc->ciss_flags &= ~CISS_FLAG_BUSY;
3288 	if (csio->ccb_h.status & CAM_RELEASE_SIMQ)
3289 	    xpt_release_simq(xpt_path_sim(csio->ccb_h.path), 0);
3290 	else
3291 	    csio->ccb_h.status |= CAM_RELEASE_SIMQ;
3292     }
3293     xpt_done((union ccb *)csio);
3294 }
3295 
3296 /********************************************************************************
3297  * Fix up the result of some commands here.
3298  */
3299 static void
3300 ciss_cam_complete_fixup(struct ciss_softc *sc, struct ccb_scsiio *csio)
3301 {
3302     struct scsi_inquiry_data	*inq;
3303     struct ciss_ldrive		*cl;
3304     uint8_t			*cdb;
3305     int				bus, target;
3306 
3307     cdb = (csio->ccb_h.flags & CAM_CDB_POINTER) ?
3308 	 (uint8_t *)csio->cdb_io.cdb_ptr : csio->cdb_io.cdb_bytes;
3309     if (cdb[0] == INQUIRY &&
3310 	(cdb[1] & SI_EVPD) == 0 &&
3311 	(csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN &&
3312 	csio->dxfer_len >= SHORT_INQUIRY_LENGTH) {
3313 
3314 	inq = (struct scsi_inquiry_data *)csio->data_ptr;
3315 	target = csio->ccb_h.target_id;
3316 	bus = cam_sim_bus(xpt_path_sim(csio->ccb_h.path));
3317 
3318 	/*
3319 	 * Don't let hard drives be seen by the DA driver.  They will still be
3320 	 * attached by the PASS driver.
3321 	 */
3322 	if (CISS_IS_PHYSICAL(bus)) {
3323 	    if (SID_TYPE(inq) == T_DIRECT)
3324 		inq->device = (inq->device & 0xe0) | T_NODEVICE;
3325 	    return;
3326 	}
3327 
3328 	cl = &sc->ciss_logical[bus][target];
3329 
3330 	padstr(inq->vendor, "COMPAQ", 8);
3331 	padstr(inq->product, ciss_name_ldrive_org(cl->cl_ldrive->fault_tolerance), 8);
3332 	padstr(inq->revision, ciss_name_ldrive_status(cl->cl_lstatus->status), 16);
3333     }
3334 }
3335 
3336 
3337 /********************************************************************************
3338  * Find a peripheral attached at (target)
3339  */
3340 static struct cam_periph *
3341 ciss_find_periph(struct ciss_softc *sc, int bus, int target)
3342 {
3343     struct cam_periph	*periph;
3344     struct cam_path	*path;
3345     int			status;
3346 
3347     status = xpt_create_path(&path, NULL, cam_sim_path(sc->ciss_cam_sim[bus]),
3348 			     target, 0);
3349     if (status == CAM_REQ_CMP) {
3350 	periph = cam_periph_find(path, NULL);
3351 	xpt_free_path(path);
3352     } else {
3353 	periph = NULL;
3354     }
3355     return(periph);
3356 }
3357 
3358 /********************************************************************************
3359  * Name the device at (target)
3360  *
3361  * XXX is this strictly correct?
3362  */
3363 static int
3364 ciss_name_device(struct ciss_softc *sc, int bus, int target)
3365 {
3366     struct cam_periph	*periph;
3367 
3368     if (CISS_IS_PHYSICAL(bus))
3369 	return (0);
3370     if ((periph = ciss_find_periph(sc, bus, target)) != NULL) {
3371 	ksprintf(sc->ciss_logical[bus][target].cl_name, "%s%d",
3372 		periph->periph_name, periph->unit_number);
3373 	return(0);
3374     }
3375     sc->ciss_logical[bus][target].cl_name[0] = 0;
3376     return(ENOENT);
3377 }
3378 
3379 /************************************************************************
3380  * Periodic status monitoring.
3381  */
3382 static void
3383 ciss_periodic(void *arg)
3384 {
3385     struct ciss_softc	*sc = (struct ciss_softc *)arg;
3386     struct ciss_request	*cr = NULL;
3387     struct ciss_command	*cc = NULL;
3388     int			error = 0;
3389 
3390     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
3391     debug_called(1);
3392 
3393     /*
3394      * Check the adapter heartbeat.
3395      */
3396     if (sc->ciss_cfg->heartbeat == sc->ciss_heartbeat) {
3397 	sc->ciss_heart_attack++;
3398 	debug(0, "adapter heart attack in progress 0x%x/%d",
3399 	      sc->ciss_heartbeat, sc->ciss_heart_attack);
3400 	if (sc->ciss_heart_attack == 3) {
3401 	    ciss_printf(sc, "ADAPTER HEARTBEAT FAILED\n");
3402 	    ciss_disable_adapter(sc);
3403 	    lockmgr(&sc->ciss_lock, LK_RELEASE);
3404 	    return;
3405 	}
3406     } else {
3407 	sc->ciss_heartbeat = sc->ciss_cfg->heartbeat;
3408 	sc->ciss_heart_attack = 0;
3409 	debug(3, "new heartbeat 0x%x", sc->ciss_heartbeat);
3410     }
3411 
3412     /*
3413      * Send the NOP message and wait for a response.
3414      */
3415     if (ciss_nop_message_heartbeat != 0 && (error = ciss_get_request(sc, &cr)) == 0) {
3416 	cc = cr->cr_cc;
3417 	cr->cr_complete = ciss_nop_complete;
3418 	cc->cdb.cdb_length = 1;
3419 	cc->cdb.type = CISS_CDB_TYPE_MESSAGE;
3420 	cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
3421 	cc->cdb.direction = CISS_CDB_DIRECTION_WRITE;
3422 	cc->cdb.timeout = 0;
3423 	cc->cdb.cdb[0] = CISS_OPCODE_MESSAGE_NOP;
3424 
3425 	if ((error = ciss_start(cr)) != 0) {
3426 	    ciss_printf(sc, "SENDING NOP MESSAGE FAILED\n");
3427 	}
3428     }
3429 
3430     /*
3431      * If the notify event request has died for some reason, or has
3432      * not started yet, restart it.
3433      */
3434     if (!(sc->ciss_flags & CISS_FLAG_NOTIFY_OK)) {
3435 	debug(0, "(re)starting Event Notify chain");
3436 	ciss_notify_event(sc);
3437     }
3438     lockmgr(&sc->ciss_lock, LK_RELEASE);
3439 
3440     /*
3441      * Reschedule.
3442      */
3443     callout_reset(&sc->ciss_periodic, CISS_HEARTBEAT_RATE * hz, ciss_periodic, sc);
3444 }
3445 
3446 static void
3447 ciss_nop_complete(struct ciss_request *cr)
3448 {
3449     struct ciss_softc		*sc;
3450     static int			first_time = 1;
3451 
3452     sc = cr->cr_sc;
3453     if (ciss_report_request(cr, NULL, NULL) != 0) {
3454 	if (first_time == 1) {
3455 	    first_time = 0;
3456 	    ciss_printf(sc, "SENDING NOP MESSAGE FAILED (not logging anymore)\n");
3457 	}
3458     }
3459 
3460     ciss_release_request(cr);
3461 }
3462 
3463 /************************************************************************
3464  * Disable the adapter.
3465  *
3466  * The all requests in completed queue is failed with hardware error.
3467  * This will cause failover in a multipath configuration.
3468  */
3469 static void
3470 ciss_disable_adapter(struct ciss_softc *sc)
3471 {
3472     cr_qhead_t			qh;
3473     struct ciss_request		*cr;
3474     struct ciss_command		*cc;
3475     struct ciss_error_info	*ce;
3476     int				i;
3477 
3478     CISS_TL_SIMPLE_DISABLE_INTERRUPTS(sc);
3479     pci_disable_busmaster(sc->ciss_dev);
3480     sc->ciss_flags &= ~CISS_FLAG_RUNNING;
3481 
3482     for (i = 1; i < sc->ciss_max_requests; i++) {
3483 	cr = &sc->ciss_request[i];
3484 	if ((cr->cr_flags & CISS_REQ_BUSY) == 0)
3485 	    continue;
3486 
3487 	cc = cr->cr_cc;
3488 	ce = (struct ciss_error_info *)&(cc->sg[0]);
3489 	ce->command_status = CISS_CMD_STATUS_HARDWARE_ERROR;
3490 	ciss_enqueue_complete(cr, &qh);
3491     }
3492 
3493     for (;;) {
3494 	if ((cr = ciss_dequeue_complete(sc, &qh)) == NULL)
3495 	    break;
3496 
3497 	/*
3498 	 * If the request has a callback, invoke it.
3499 	 */
3500 	if (cr->cr_complete != NULL) {
3501 	    cr->cr_complete(cr);
3502 	    continue;
3503 	}
3504 
3505 	/*
3506 	 * If someone is sleeping on this request, wake them up.
3507 	 */
3508 	if (cr->cr_flags & CISS_REQ_SLEEP) {
3509 	    cr->cr_flags &= ~CISS_REQ_SLEEP;
3510 	    wakeup(cr);
3511 	    continue;
3512 	}
3513     }
3514 }
3515 
3516 /************************************************************************
3517  * Request a notification response from the adapter.
3518  *
3519  * If (cr) is NULL, this is the first request of the adapter, so
3520  * reset the adapter's message pointer and start with the oldest
3521  * message available.
3522  */
3523 static void
3524 ciss_notify_event(struct ciss_softc *sc)
3525 {
3526     struct ciss_request		*cr;
3527     struct ciss_command		*cc;
3528     struct ciss_notify_cdb	*cnc;
3529     int				error;
3530 
3531     debug_called(1);
3532 
3533     cr = sc->ciss_periodic_notify;
3534 
3535     /* get a request if we don't already have one */
3536     if (cr == NULL) {
3537 	if ((error = ciss_get_request(sc, &cr)) != 0) {
3538 	    debug(0, "can't get notify event request");
3539 	    goto out;
3540 	}
3541 	sc->ciss_periodic_notify = cr;
3542 	cr->cr_complete = ciss_notify_complete;
3543 	debug(1, "acquired request %d", cr->cr_tag);
3544     }
3545 
3546     /*
3547      * Get a databuffer if we don't already have one, note that the
3548      * adapter command wants a larger buffer than the actual
3549      * structure.
3550      */
3551     if (cr->cr_data == NULL) {
3552 	cr->cr_data = kmalloc(CISS_NOTIFY_DATA_SIZE, CISS_MALLOC_CLASS, M_INTWAIT);
3553 	cr->cr_length = CISS_NOTIFY_DATA_SIZE;
3554     }
3555 
3556     /* re-setup the request's command (since we never release it) XXX overkill*/
3557     ciss_preen_command(cr);
3558 
3559     /* (re)build the notify event command */
3560     cc = cr->cr_cc;
3561     cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
3562     cc->header.address.physical.bus = 0;
3563     cc->header.address.physical.target = 0;
3564 
3565     cc->cdb.cdb_length = sizeof(*cnc);
3566     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
3567     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
3568     cc->cdb.direction = CISS_CDB_DIRECTION_READ;
3569     cc->cdb.timeout = 0;	/* no timeout, we hope */
3570 
3571     cnc = (struct ciss_notify_cdb *)&(cc->cdb.cdb[0]);
3572     bzero(cr->cr_data, CISS_NOTIFY_DATA_SIZE);
3573     cnc->opcode = CISS_OPCODE_READ;
3574     cnc->command = CISS_COMMAND_NOTIFY_ON_EVENT;
3575     cnc->timeout = 0;		/* no timeout, we hope */
3576     cnc->synchronous = 0;
3577     cnc->ordered = 0;
3578     cnc->seek_to_oldest = 0;
3579     if ((sc->ciss_flags & CISS_FLAG_RUNNING) == 0)
3580 	cnc->new_only = 1;
3581     else
3582 	cnc->new_only = 0;
3583     cnc->length = htonl(CISS_NOTIFY_DATA_SIZE);
3584 
3585     /* submit the request */
3586     error = ciss_start(cr);
3587 
3588  out:
3589     if (error) {
3590 	if (cr != NULL) {
3591 	    if (cr->cr_data != NULL)
3592 		kfree(cr->cr_data, CISS_MALLOC_CLASS);
3593 	    ciss_release_request(cr);
3594 	}
3595 	sc->ciss_periodic_notify = NULL;
3596 	debug(0, "can't submit notify event request");
3597 	sc->ciss_flags &= ~CISS_FLAG_NOTIFY_OK;
3598     } else {
3599 	debug(1, "notify event submitted");
3600 	sc->ciss_flags |= CISS_FLAG_NOTIFY_OK;
3601     }
3602 }
3603 
3604 static void
3605 ciss_notify_complete(struct ciss_request *cr)
3606 {
3607     struct ciss_notify	*cn;
3608     struct ciss_softc	*sc;
3609     int			scsi_status;
3610     int			command_status;
3611     debug_called(1);
3612 
3613     cn = (struct ciss_notify *)cr->cr_data;
3614     sc = cr->cr_sc;
3615 
3616     /*
3617      * Report request results, decode status.
3618      */
3619     ciss_report_request(cr, &command_status, &scsi_status);
3620 
3621     /*
3622      * Abort the chain on a fatal error.
3623      *
3624      * XXX which of these are actually errors?
3625      */
3626     if ((command_status != CISS_CMD_STATUS_SUCCESS) &&
3627 	(command_status != CISS_CMD_STATUS_TARGET_STATUS) &&
3628 	(command_status != CISS_CMD_STATUS_TIMEOUT)) {	/* XXX timeout? */
3629 	ciss_printf(sc, "fatal error in Notify Event request (%s)\n",
3630 		    ciss_name_command_status(command_status));
3631 	ciss_release_request(cr);
3632 	sc->ciss_flags &= ~CISS_FLAG_NOTIFY_OK;
3633 	return;
3634     }
3635 
3636     /*
3637      * If the adapter gave us a text message, print it.
3638      */
3639     if (cn->message[0] != 0)
3640 	ciss_printf(sc, "*** %.80s\n", cn->message);
3641 
3642     debug(0, "notify event class %d subclass %d detail %d",
3643 		cn->class, cn->subclass, cn->detail);
3644 
3645     /*
3646      * If the response indicates that the notifier has been aborted,
3647      * release the notifier command.
3648      */
3649     if ((cn->class == CISS_NOTIFY_NOTIFIER) &&
3650 	(cn->subclass == CISS_NOTIFY_NOTIFIER_STATUS) &&
3651 	(cn->detail == 1)) {
3652 	debug(0, "notifier exiting");
3653 	sc->ciss_flags &= ~CISS_FLAG_NOTIFY_OK;
3654 	ciss_release_request(cr);
3655 	sc->ciss_periodic_notify = NULL;
3656 	wakeup(&sc->ciss_periodic_notify);
3657     } else {
3658 	/* Handle notify events in a kernel thread */
3659 	ciss_enqueue_notify(cr);
3660 	sc->ciss_periodic_notify = NULL;
3661 	wakeup(&sc->ciss_periodic_notify);
3662 	wakeup(&sc->ciss_notify);
3663     }
3664     /*
3665      * Send a new notify event command, if we're not aborting.
3666      */
3667     if (!(sc->ciss_flags & CISS_FLAG_ABORTING)) {
3668 	ciss_notify_event(sc);
3669     }
3670 }
3671 
3672 /************************************************************************
3673  * Abort the Notify Event chain.
3674  *
3675  * Note that we can't just abort the command in progress; we have to
3676  * explicitly issue an Abort Notify Event command in order for the
3677  * adapter to clean up correctly.
3678  *
3679  * If we are called with CISS_FLAG_ABORTING set in the adapter softc,
3680  * the chain will not restart itself.
3681  */
3682 static int
3683 ciss_notify_abort(struct ciss_softc *sc)
3684 {
3685     struct ciss_request		*cr;
3686     struct ciss_command		*cc;
3687     struct ciss_notify_cdb	*cnc;
3688     int				error, command_status, scsi_status;
3689 
3690     debug_called(1);
3691 
3692     cr = NULL;
3693     error = 0;
3694 
3695     /* verify that there's an outstanding command */
3696     if (!(sc->ciss_flags & CISS_FLAG_NOTIFY_OK))
3697 	goto out;
3698 
3699     /* get a command to issue the abort with */
3700     if ((error = ciss_get_request(sc, &cr)))
3701 	goto out;
3702 
3703     /* get a buffer for the result */
3704     cr->cr_data = kmalloc(CISS_NOTIFY_DATA_SIZE, CISS_MALLOC_CLASS, M_INTWAIT);
3705     cr->cr_length = CISS_NOTIFY_DATA_SIZE;
3706 
3707     /* build the CDB */
3708     cc = cr->cr_cc;
3709     cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
3710     cc->header.address.physical.bus = 0;
3711     cc->header.address.physical.target = 0;
3712     cc->cdb.cdb_length = sizeof(*cnc);
3713     cc->cdb.type = CISS_CDB_TYPE_COMMAND;
3714     cc->cdb.attribute = CISS_CDB_ATTRIBUTE_SIMPLE;
3715     cc->cdb.direction = CISS_CDB_DIRECTION_READ;
3716     cc->cdb.timeout = 0;	/* no timeout, we hope */
3717 
3718     cnc = (struct ciss_notify_cdb *)&(cc->cdb.cdb[0]);
3719     bzero(cnc, sizeof(*cnc));
3720     cnc->opcode = CISS_OPCODE_WRITE;
3721     cnc->command = CISS_COMMAND_ABORT_NOTIFY;
3722     cnc->length = htonl(CISS_NOTIFY_DATA_SIZE);
3723 
3724     ciss_print_request(cr);
3725 
3726     /*
3727      * Submit the request and wait for it to complete.
3728      */
3729     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
3730 	ciss_printf(sc, "Abort Notify Event command failed (%d)\n", error);
3731 	goto out;
3732     }
3733 
3734     /*
3735      * Check response.
3736      */
3737     ciss_report_request(cr, &command_status, &scsi_status);
3738     switch(command_status) {
3739     case CISS_CMD_STATUS_SUCCESS:
3740 	break;
3741     case CISS_CMD_STATUS_INVALID_COMMAND:
3742 	/*
3743 	 * Some older adapters don't support the CISS version of this
3744 	 * command.  Fall back to using the BMIC version.
3745 	 */
3746 	error = ciss_notify_abort_bmic(sc);
3747 	if (error != 0)
3748 	    goto out;
3749 	break;
3750 
3751     case CISS_CMD_STATUS_TARGET_STATUS:
3752 	/*
3753 	 * This can happen if the adapter thinks there wasn't an outstanding
3754 	 * Notify Event command but we did.  We clean up here.
3755 	 */
3756 	if (scsi_status == CISS_SCSI_STATUS_CHECK_CONDITION) {
3757 	    if (sc->ciss_periodic_notify != NULL)
3758 		ciss_release_request(sc->ciss_periodic_notify);
3759 	    error = 0;
3760 	    goto out;
3761 	}
3762 	/* FALLTHROUGH */
3763 
3764     default:
3765 	ciss_printf(sc, "Abort Notify Event command failed (%s)\n",
3766 		    ciss_name_command_status(command_status));
3767 	error = EIO;
3768 	goto out;
3769     }
3770 
3771     /*
3772      * Sleep waiting for the notifier command to complete.  Note
3773      * that if it doesn't, we may end up in a bad situation, since
3774      * the adapter may deliver it later.  Also note that the adapter
3775      * requires the Notify Event command to be cancelled in order to
3776      * maintain internal bookkeeping.
3777      */
3778     while (sc->ciss_periodic_notify != NULL) {
3779 	error = lksleep(&sc->ciss_periodic_notify, &sc->ciss_lock, 0, "cissNEA", hz * 5);
3780 	if (error == EWOULDBLOCK) {
3781 	    ciss_printf(sc, "Notify Event command failed to abort, adapter may wedge.\n");
3782 	    break;
3783 	}
3784     }
3785 
3786  out:
3787     /* release the cancel request */
3788     if (cr != NULL) {
3789 	if (cr->cr_data != NULL)
3790 	    kfree(cr->cr_data, CISS_MALLOC_CLASS);
3791 	ciss_release_request(cr);
3792     }
3793     if (error == 0)
3794 	sc->ciss_flags &= ~CISS_FLAG_NOTIFY_OK;
3795     return(error);
3796 }
3797 
3798 /************************************************************************
3799  * Abort the Notify Event chain using a BMIC command.
3800  */
3801 static int
3802 ciss_notify_abort_bmic(struct ciss_softc *sc)
3803 {
3804     struct ciss_request			*cr;
3805     int					error, command_status;
3806 
3807     debug_called(1);
3808 
3809     cr = NULL;
3810     error = 0;
3811 
3812     /* verify that there's an outstanding command */
3813     if (!(sc->ciss_flags & CISS_FLAG_NOTIFY_OK))
3814 	goto out;
3815 
3816     /*
3817      * Build a BMIC command to cancel the Notify on Event command.
3818      *
3819      * Note that we are sending a CISS opcode here.  Odd.
3820      */
3821     if ((error = ciss_get_bmic_request(sc, &cr, CISS_COMMAND_ABORT_NOTIFY,
3822 				       NULL, 0)) != 0)
3823 	goto out;
3824 
3825     /*
3826      * Submit the request and wait for it to complete.
3827      */
3828     if ((error = ciss_synch_request(cr, 60 * 1000)) != 0) {
3829 	ciss_printf(sc, "error sending BMIC Cancel Notify on Event command (%d)\n", error);
3830 	goto out;
3831     }
3832 
3833     /*
3834      * Check response.
3835      */
3836     ciss_report_request(cr, &command_status, NULL);
3837     switch(command_status) {
3838     case CISS_CMD_STATUS_SUCCESS:
3839 	break;
3840     default:
3841 	ciss_printf(sc, "error cancelling Notify on Event (%s)\n",
3842 		    ciss_name_command_status(command_status));
3843 	error = EIO;
3844 	goto out;
3845     }
3846 
3847 out:
3848     if (cr != NULL)
3849 	ciss_release_request(cr);
3850     return(error);
3851 }
3852 
3853 /************************************************************************
3854  * Handle rescanning all the logical volumes when a notify event
3855  * causes the drives to come online or offline.
3856  */
3857 static void
3858 ciss_notify_rescan_logical(struct ciss_softc *sc)
3859 {
3860     struct ciss_lun_report      *cll;
3861     struct ciss_ldrive		*ld;
3862     int                         i, j, ndrives;
3863 
3864     /*
3865      * We must rescan all logical volumes to get the right logical
3866      * drive address.
3867      */
3868     cll = ciss_report_luns(sc, CISS_OPCODE_REPORT_LOGICAL_LUNS,
3869                            CISS_MAX_LOGICAL);
3870     if (cll == NULL)
3871         return;
3872 
3873     ndrives = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
3874 
3875     /*
3876      * Delete any of the drives which were destroyed by the
3877      * firmware.
3878      */
3879     for (i = 0; i < sc->ciss_max_logical_bus; i++) {
3880 	for (j = 0; j < CISS_MAX_LOGICAL; j++) {
3881 	    ld = &sc->ciss_logical[i][j];
3882 
3883 	    if (ld->cl_update == 0)
3884 		continue;
3885 
3886 	    if (ld->cl_status != CISS_LD_ONLINE) {
3887 		ciss_cam_rescan_target(sc, i, j);
3888 		ld->cl_update = 0;
3889 		if (ld->cl_ldrive)
3890 		    kfree(ld->cl_ldrive, CISS_MALLOC_CLASS);
3891 		if (ld->cl_lstatus)
3892 		    kfree(ld->cl_lstatus, CISS_MALLOC_CLASS);
3893 
3894 		ld->cl_ldrive = NULL;
3895 		ld->cl_lstatus = NULL;
3896 	    }
3897 	}
3898     }
3899 
3900     /*
3901      * Scan for new drives.
3902      */
3903     for (i = 0; i < ndrives; i++) {
3904 	int	bus, target;
3905 
3906 	bus 	= CISS_LUN_TO_BUS(cll->lun[i].logical.lun);
3907 	target	= CISS_LUN_TO_TARGET(cll->lun[i].logical.lun);
3908 	ld	= &sc->ciss_logical[bus][target];
3909 
3910 	if (ld->cl_update == 0)
3911 		continue;
3912 
3913 	ld->cl_update		= 0;
3914 	ld->cl_address		= cll->lun[i];
3915 	ld->cl_controller	= &sc->ciss_controllers[bus];
3916 	if (ciss_identify_logical(sc, ld) == 0) {
3917 	    ciss_cam_rescan_target(sc, bus, target);
3918 	}
3919     }
3920     kfree(cll, CISS_MALLOC_CLASS);
3921 }
3922 
3923 /************************************************************************
3924  * Handle a notify event relating to the status of a logical drive.
3925  *
3926  * XXX need to be able to defer some of these to properly handle
3927  *     calling the "ID Physical drive" command, unless the 'extended'
3928  *     drive IDs are always in BIG_MAP format.
3929  */
3930 static void
3931 ciss_notify_logical(struct ciss_softc *sc, struct ciss_notify *cn)
3932 {
3933     struct ciss_ldrive	*ld;
3934     int			ostatus, bus, target;
3935 
3936     debug_called(2);
3937 
3938     bus		= cn->device.physical.bus;
3939     target	= cn->data.logical_status.logical_drive;
3940     ld		= &sc->ciss_logical[bus][target];
3941 
3942     switch (cn->subclass) {
3943     case CISS_NOTIFY_LOGICAL_STATUS:
3944 	switch (cn->detail) {
3945 	case 0:
3946 	    ciss_name_device(sc, bus, target);
3947 	    ciss_printf(sc, "logical drive %d (%s) changed status %s->%s, spare status 0x%b\n",
3948 			cn->data.logical_status.logical_drive, ld->cl_name,
3949 			ciss_name_ldrive_status(cn->data.logical_status.previous_state),
3950 			ciss_name_ldrive_status(cn->data.logical_status.new_state),
3951 			cn->data.logical_status.spare_state,
3952 			"\20\1configured\2rebuilding\3failed\4in use\5available\n");
3953 
3954 	    /*
3955 	     * Update our idea of the drive's status.
3956 	     */
3957 	    ostatus = ciss_decode_ldrive_status(cn->data.logical_status.previous_state);
3958 	    ld->cl_status = ciss_decode_ldrive_status(cn->data.logical_status.new_state);
3959 	    if (ld->cl_lstatus != NULL)
3960 		ld->cl_lstatus->status = cn->data.logical_status.new_state;
3961 
3962 	    /*
3963 	     * Have CAM rescan the drive if its status has changed.
3964 	     */
3965 	    if (ostatus != ld->cl_status) {
3966 		ld->cl_update = 1;
3967 		ciss_notify_rescan_logical(sc);
3968 	    }
3969 
3970 	    break;
3971 
3972 	case 1:	/* logical drive has recognised new media, needs Accept Media Exchange */
3973 	    ciss_name_device(sc, bus, target);
3974 	    ciss_printf(sc, "logical drive %d (%s) media exchanged, ready to go online\n",
3975 			cn->data.logical_status.logical_drive, ld->cl_name);
3976 	    ciss_accept_media(sc, ld);
3977 
3978 	    ld->cl_update = 1;
3979 	    ld->cl_status = ciss_decode_ldrive_status(cn->data.logical_status.new_state);
3980 	    ciss_notify_rescan_logical(sc);
3981 	    break;
3982 
3983 	case 2:
3984 	case 3:
3985 	    ciss_printf(sc, "rebuild of logical drive %d (%s) failed due to %s error\n",
3986 			cn->data.rebuild_aborted.logical_drive,
3987 			ld->cl_name,
3988 			(cn->detail == 2) ? "read" : "write");
3989 	    break;
3990 	}
3991 	break;
3992 
3993     case CISS_NOTIFY_LOGICAL_ERROR:
3994 	if (cn->detail == 0) {
3995 	    ciss_printf(sc, "FATAL I/O ERROR on logical drive %d (%s), SCSI port %d ID %d\n",
3996 			cn->data.io_error.logical_drive,
3997 			ld->cl_name,
3998 			cn->data.io_error.failure_bus,
3999 			cn->data.io_error.failure_drive);
4000 	    /* XXX should we take the drive down at this point, or will we be told? */
4001 	}
4002 	break;
4003 
4004     case CISS_NOTIFY_LOGICAL_SURFACE:
4005 	if (cn->detail == 0)
4006 	    ciss_printf(sc, "logical drive %d (%s) completed consistency initialisation\n",
4007 			cn->data.consistency_completed.logical_drive,
4008 			ld->cl_name);
4009 	break;
4010     }
4011 }
4012 
4013 /************************************************************************
4014  * Handle a notify event relating to the status of a physical drive.
4015  */
4016 static void
4017 ciss_notify_physical(struct ciss_softc *sc, struct ciss_notify *cn)
4018 {
4019 }
4020 
4021 /************************************************************************
4022  * Handle a notify event relating to the status of a physical drive.
4023  */
4024 static void
4025 ciss_notify_hotplug(struct ciss_softc *sc, struct ciss_notify *cn)
4026 {
4027     struct ciss_lun_report *cll = NULL;
4028     int bus, target;
4029 
4030     switch (cn->subclass) {
4031     case CISS_NOTIFY_HOTPLUG_PHYSICAL:
4032     case CISS_NOTIFY_HOTPLUG_NONDISK:
4033 	bus = CISS_BIG_MAP_BUS(sc, cn->data.drive.big_physical_drive_number);
4034 	target =
4035 	    CISS_BIG_MAP_TARGET(sc, cn->data.drive.big_physical_drive_number);
4036 
4037 	if (cn->detail == 0) {
4038 	    /*
4039 	     * Mark the device offline so that it'll start producing selection
4040 	     * timeouts to the upper layer.
4041 	     */
4042 	    if ((bus >= 0) && (target >= 0))
4043 		sc->ciss_physical[bus][target].cp_online = 0;
4044 	} else {
4045 	    /*
4046 	     * Rescan the physical lun list for new items
4047 	     */
4048 	    cll = ciss_report_luns(sc, CISS_OPCODE_REPORT_PHYSICAL_LUNS,
4049 				   CISS_MAX_PHYSICAL);
4050 	    if (cll == NULL) {
4051 		ciss_printf(sc, "Warning, cannot get physical lun list\n");
4052 		break;
4053 	    }
4054 	    ciss_filter_physical(sc, cll);
4055 	}
4056 	break;
4057 
4058     default:
4059 	ciss_printf(sc, "Unknown hotplug event %d\n", cn->subclass);
4060 	return;
4061     }
4062 
4063     if (cll != NULL)
4064 	kfree(cll, CISS_MALLOC_CLASS);
4065 }
4066 
4067 /************************************************************************
4068  * Handle deferred processing of notify events.  Notify events may need
4069  * sleep which is unsafe during an interrupt.
4070  */
4071 static void
4072 ciss_notify_thread(void *arg)
4073 {
4074     struct ciss_softc		*sc;
4075     struct ciss_request		*cr;
4076     struct ciss_notify		*cn;
4077 
4078     sc = (struct ciss_softc *)arg;
4079     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
4080 
4081     for (;;) {
4082 	if (STAILQ_EMPTY(&sc->ciss_notify) != 0 &&
4083 	    (sc->ciss_flags & CISS_FLAG_THREAD_SHUT) == 0) {
4084 	    lksleep(&sc->ciss_notify, &sc->ciss_lock, 0, "idle", 0);
4085 	}
4086 
4087 	if (sc->ciss_flags & CISS_FLAG_THREAD_SHUT)
4088 	    break;
4089 
4090 	cr = ciss_dequeue_notify(sc);
4091 
4092 	if (cr == NULL)
4093 		panic("cr null");
4094 	cn = (struct ciss_notify *)cr->cr_data;
4095 
4096 	switch (cn->class) {
4097 	case CISS_NOTIFY_HOTPLUG:
4098 	    ciss_notify_hotplug(sc, cn);
4099 	    break;
4100 	case CISS_NOTIFY_LOGICAL:
4101 	    ciss_notify_logical(sc, cn);
4102 	    break;
4103 	case CISS_NOTIFY_PHYSICAL:
4104 	    ciss_notify_physical(sc, cn);
4105 	    break;
4106 	}
4107 
4108 	ciss_release_request(cr);
4109 
4110     }
4111     sc->ciss_notify_thread = NULL;
4112     wakeup(&sc->ciss_notify_thread);
4113 
4114     lockmgr(&sc->ciss_lock, LK_RELEASE);
4115     kthread_exit();
4116 }
4117 
4118 /************************************************************************
4119  * Start the notification kernel thread.
4120  */
4121 static void
4122 ciss_spawn_notify_thread(struct ciss_softc *sc)
4123 {
4124 
4125     if (kthread_create((void(*)(void *))ciss_notify_thread, sc,
4126 		       &sc->ciss_notify_thread, "ciss_notify%d",
4127 		       device_get_unit(sc->ciss_dev)))
4128 	panic("Could not create notify thread\n");
4129 }
4130 
4131 /************************************************************************
4132  * Kill the notification kernel thread.
4133  */
4134 static void
4135 ciss_kill_notify_thread(struct ciss_softc *sc)
4136 {
4137 
4138     if (sc->ciss_notify_thread == NULL)
4139 	return;
4140 
4141     sc->ciss_flags |= CISS_FLAG_THREAD_SHUT;
4142     wakeup(&sc->ciss_notify);
4143     lksleep(&sc->ciss_notify_thread, &sc->ciss_lock, 0, "thtrm", 0);
4144 }
4145 
4146 /************************************************************************
4147  * Print a request.
4148  */
4149 static void
4150 ciss_print_request(struct ciss_request *cr)
4151 {
4152     struct ciss_softc	*sc;
4153     struct ciss_command	*cc;
4154     int			i;
4155 
4156     sc = cr->cr_sc;
4157     cc = cr->cr_cc;
4158 
4159     ciss_printf(sc, "REQUEST @ %p\n", cr);
4160     ciss_printf(sc, "  data %p/%d  tag %d  flags %b\n",
4161 	      cr->cr_data, cr->cr_length, cr->cr_tag, cr->cr_flags,
4162 	      "\20\1mapped\2sleep\3poll\4dataout\5datain\n");
4163     ciss_printf(sc, "  sg list/total %d/%d  host tag 0x%x\n",
4164 		cc->header.sg_in_list, cc->header.sg_total, cc->header.host_tag);
4165     switch(cc->header.address.mode.mode) {
4166     case CISS_HDR_ADDRESS_MODE_PERIPHERAL:
4167     case CISS_HDR_ADDRESS_MODE_MASK_PERIPHERAL:
4168 	ciss_printf(sc, "  physical bus %d target %d\n",
4169 		    cc->header.address.physical.bus, cc->header.address.physical.target);
4170 	break;
4171     case CISS_HDR_ADDRESS_MODE_LOGICAL:
4172 	ciss_printf(sc, "  logical unit %d\n", cc->header.address.logical.lun);
4173 	break;
4174     }
4175     ciss_printf(sc, "  %s cdb length %d type %s attribute %s\n",
4176 		(cc->cdb.direction == CISS_CDB_DIRECTION_NONE) ? "no-I/O" :
4177 		(cc->cdb.direction == CISS_CDB_DIRECTION_READ) ? "READ" :
4178 		(cc->cdb.direction == CISS_CDB_DIRECTION_WRITE) ? "WRITE" : "??",
4179 		cc->cdb.cdb_length,
4180 		(cc->cdb.type == CISS_CDB_TYPE_COMMAND) ? "command" :
4181 		(cc->cdb.type == CISS_CDB_TYPE_MESSAGE) ? "message" : "??",
4182 		(cc->cdb.attribute == CISS_CDB_ATTRIBUTE_UNTAGGED) ? "untagged" :
4183 		(cc->cdb.attribute == CISS_CDB_ATTRIBUTE_SIMPLE) ? "simple" :
4184 		(cc->cdb.attribute == CISS_CDB_ATTRIBUTE_HEAD_OF_QUEUE) ? "head-of-queue" :
4185 		(cc->cdb.attribute == CISS_CDB_ATTRIBUTE_ORDERED) ? "ordered" :
4186 		(cc->cdb.attribute == CISS_CDB_ATTRIBUTE_AUTO_CONTINGENT) ? "auto-contingent" : "??");
4187     ciss_printf(sc, "  %*D\n", cc->cdb.cdb_length, &cc->cdb.cdb[0], " ");
4188 
4189     if (cc->header.host_tag & CISS_HDR_HOST_TAG_ERROR) {
4190 	/* XXX print error info */
4191     } else {
4192 	/* since we don't use chained s/g, don't support it here */
4193 	for (i = 0; i < cc->header.sg_in_list; i++) {
4194 	    if ((i % 4) == 0)
4195 		ciss_printf(sc, "   ");
4196 	    kprintf("0x%08x/%d ", (u_int32_t)cc->sg[i].address, cc->sg[i].length);
4197 	    if ((((i + 1) % 4) == 0) || (i == (cc->header.sg_in_list - 1)))
4198 		kprintf("\n");
4199 	}
4200     }
4201 }
4202 
4203 /************************************************************************
4204  * Print information about the status of a logical drive.
4205  */
4206 static void
4207 ciss_print_ldrive(struct ciss_softc *sc, struct ciss_ldrive *ld)
4208 {
4209     int		bus, target, i;
4210 
4211     if (ld->cl_lstatus == NULL) {
4212 	kprintf("does not exist\n");
4213 	return;
4214     }
4215 
4216     /* print drive status */
4217     switch(ld->cl_lstatus->status) {
4218     case CISS_LSTATUS_OK:
4219 	kprintf("online\n");
4220 	break;
4221     case CISS_LSTATUS_INTERIM_RECOVERY:
4222 	kprintf("in interim recovery mode\n");
4223 	break;
4224     case CISS_LSTATUS_READY_RECOVERY:
4225 	kprintf("ready to begin recovery\n");
4226 	break;
4227     case CISS_LSTATUS_RECOVERING:
4228 	bus = CISS_BIG_MAP_BUS(sc, ld->cl_lstatus->drive_rebuilding);
4229 	target = CISS_BIG_MAP_BUS(sc, ld->cl_lstatus->drive_rebuilding);
4230 	kprintf("being recovered, working on physical drive %d.%d, %u blocks remaining\n",
4231 	       bus, target, ld->cl_lstatus->blocks_to_recover);
4232 	break;
4233     case CISS_LSTATUS_EXPANDING:
4234 	kprintf("being expanded, %u blocks remaining\n",
4235 	       ld->cl_lstatus->blocks_to_recover);
4236 	break;
4237     case CISS_LSTATUS_QUEUED_FOR_EXPANSION:
4238 	kprintf("queued for expansion\n");
4239 	break;
4240     case CISS_LSTATUS_FAILED:
4241 	kprintf("queued for expansion\n");
4242 	break;
4243     case CISS_LSTATUS_WRONG_PDRIVE:
4244 	kprintf("wrong physical drive inserted\n");
4245 	break;
4246     case CISS_LSTATUS_MISSING_PDRIVE:
4247 	kprintf("missing a needed physical drive\n");
4248 	break;
4249     case CISS_LSTATUS_BECOMING_READY:
4250 	kprintf("becoming ready\n");
4251 	break;
4252     }
4253 
4254     /* print failed physical drives */
4255     for (i = 0; i < CISS_BIG_MAP_ENTRIES / 8; i++) {
4256 	bus = CISS_BIG_MAP_BUS(sc, ld->cl_lstatus->drive_failure_map[i]);
4257 	target = CISS_BIG_MAP_TARGET(sc, ld->cl_lstatus->drive_failure_map[i]);
4258 	if (bus == -1)
4259 	    continue;
4260 	ciss_printf(sc, "physical drive %d:%d (%x) failed\n", bus, target,
4261 		    ld->cl_lstatus->drive_failure_map[i]);
4262     }
4263 }
4264 
4265 #ifdef CISS_DEBUG
4266 /************************************************************************
4267  * Print information about the controller/driver.
4268  */
4269 static void
4270 ciss_print_adapter(struct ciss_softc *sc)
4271 {
4272     int		i, j;
4273 
4274     ciss_printf(sc, "ADAPTER:\n");
4275     for (i = 0; i < CISSQ_COUNT; i++) {
4276 	ciss_printf(sc, "%s     %d/%d\n",
4277 	    i == 0 ? "free" :
4278 	    i == 1 ? "busy" : "complete",
4279 	    sc->ciss_qstat[i].q_length,
4280 	    sc->ciss_qstat[i].q_max);
4281     }
4282     ciss_printf(sc, "max_requests %d\n", sc->ciss_max_requests);
4283     ciss_printf(sc, "flags %b\n", sc->ciss_flags,
4284 	"\20\1notify_ok\2control_open\3aborting\4running\21fake_synch\22bmic_abort\n");
4285 
4286     for (i = 0; i < sc->ciss_max_logical_bus; i++) {
4287 	for (j = 0; j < CISS_MAX_LOGICAL; j++) {
4288 	    ciss_printf(sc, "LOGICAL DRIVE %d:  ", i);
4289 	    ciss_print_ldrive(sc, &sc->ciss_logical[i][j]);
4290 	}
4291     }
4292 
4293     /* XXX Should physical drives be printed out here? */
4294 
4295     for (i = 1; i < sc->ciss_max_requests; i++)
4296 	ciss_print_request(sc->ciss_request + i);
4297 }
4298 
4299 /* DDB hook */
4300 static void
4301 ciss_print0(void)
4302 {
4303     struct ciss_softc	*sc;
4304 
4305     sc = devclass_get_softc(devclass_find("ciss"), 0);
4306     if (sc == NULL) {
4307 	kprintf("no ciss controllers\n");
4308     } else {
4309 	ciss_print_adapter(sc);
4310     }
4311 }
4312 #endif
4313 
4314 /************************************************************************
4315  * Return a name for a logical drive status value.
4316  */
4317 static const char *
4318 ciss_name_ldrive_status(int status)
4319 {
4320     switch (status) {
4321     case CISS_LSTATUS_OK:
4322 	return("OK");
4323     case CISS_LSTATUS_FAILED:
4324 	return("failed");
4325     case CISS_LSTATUS_NOT_CONFIGURED:
4326 	return("not configured");
4327     case CISS_LSTATUS_INTERIM_RECOVERY:
4328 	return("interim recovery");
4329     case CISS_LSTATUS_READY_RECOVERY:
4330 	return("ready for recovery");
4331     case CISS_LSTATUS_RECOVERING:
4332 	return("recovering");
4333     case CISS_LSTATUS_WRONG_PDRIVE:
4334 	return("wrong physical drive inserted");
4335     case CISS_LSTATUS_MISSING_PDRIVE:
4336 	return("missing physical drive");
4337     case CISS_LSTATUS_EXPANDING:
4338 	return("expanding");
4339     case CISS_LSTATUS_BECOMING_READY:
4340 	return("becoming ready");
4341     case CISS_LSTATUS_QUEUED_FOR_EXPANSION:
4342 	return("queued for expansion");
4343     }
4344     return("unknown status");
4345 }
4346 
4347 /************************************************************************
4348  * Return an online/offline/nonexistent value for a logical drive
4349  * status value.
4350  */
4351 static int
4352 ciss_decode_ldrive_status(int status)
4353 {
4354     switch(status) {
4355     case CISS_LSTATUS_NOT_CONFIGURED:
4356 	return(CISS_LD_NONEXISTENT);
4357 
4358     case CISS_LSTATUS_OK:
4359     case CISS_LSTATUS_INTERIM_RECOVERY:
4360     case CISS_LSTATUS_READY_RECOVERY:
4361     case CISS_LSTATUS_RECOVERING:
4362     case CISS_LSTATUS_EXPANDING:
4363     case CISS_LSTATUS_QUEUED_FOR_EXPANSION:
4364 	return(CISS_LD_ONLINE);
4365 
4366     case CISS_LSTATUS_FAILED:
4367     case CISS_LSTATUS_WRONG_PDRIVE:
4368     case CISS_LSTATUS_MISSING_PDRIVE:
4369     case CISS_LSTATUS_BECOMING_READY:
4370     default:
4371 	return(CISS_LD_OFFLINE);
4372     }
4373 }
4374 
4375 
4376 /************************************************************************
4377  * Return a name for a logical drive's organisation.
4378  */
4379 static const char *
4380 ciss_name_ldrive_org(int org)
4381 {
4382     switch(org) {
4383     case CISS_LDRIVE_RAID0:
4384 	return("RAID 0");
4385     case CISS_LDRIVE_RAID1:
4386 	return("RAID 1(1+0)");
4387     case CISS_LDRIVE_RAID4:
4388 	return("RAID 4");
4389     case CISS_LDRIVE_RAID5:
4390 	return("RAID 5");
4391     case CISS_LDRIVE_RAID51:
4392 	return("RAID 5+1");
4393     case CISS_LDRIVE_RAIDADG:
4394 	return("RAID ADG");
4395     }
4396     return("unknown");
4397 }
4398 
4399 /************************************************************************
4400  * Return a name for a command status value.
4401  */
4402 static const char *
4403 ciss_name_command_status(int status)
4404 {
4405     switch(status) {
4406     case CISS_CMD_STATUS_SUCCESS:
4407 	return("success");
4408     case CISS_CMD_STATUS_TARGET_STATUS:
4409 	return("target status");
4410     case CISS_CMD_STATUS_DATA_UNDERRUN:
4411 	return("data underrun");
4412     case CISS_CMD_STATUS_DATA_OVERRUN:
4413 	return("data overrun");
4414     case CISS_CMD_STATUS_INVALID_COMMAND:
4415 	return("invalid command");
4416     case CISS_CMD_STATUS_PROTOCOL_ERROR:
4417 	return("protocol error");
4418     case CISS_CMD_STATUS_HARDWARE_ERROR:
4419 	return("hardware error");
4420     case CISS_CMD_STATUS_CONNECTION_LOST:
4421 	return("connection lost");
4422     case CISS_CMD_STATUS_ABORTED:
4423 	return("aborted");
4424     case CISS_CMD_STATUS_ABORT_FAILED:
4425 	return("abort failed");
4426     case CISS_CMD_STATUS_UNSOLICITED_ABORT:
4427 	return("unsolicited abort");
4428     case CISS_CMD_STATUS_TIMEOUT:
4429 	return("timeout");
4430     case CISS_CMD_STATUS_UNABORTABLE:
4431 	return("unabortable");
4432     }
4433     return("unknown status");
4434 }
4435 
4436 /************************************************************************
4437  * Handle an open on the control device.
4438  */
4439 static int
4440 ciss_open(struct dev_open_args *ap)
4441 {
4442     cdev_t dev = ap->a_head.a_dev;
4443     struct ciss_softc	*sc;
4444 
4445     debug_called(1);
4446 
4447     sc = (struct ciss_softc *)dev->si_drv1;
4448 
4449     /* we might want to veto if someone already has us open */
4450 
4451     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
4452     sc->ciss_flags |= CISS_FLAG_CONTROL_OPEN;
4453     lockmgr(&sc->ciss_lock, LK_RELEASE);
4454     return(0);
4455 }
4456 
4457 /************************************************************************
4458  * Handle the last close on the control device.
4459  */
4460 static int
4461 ciss_close(struct dev_close_args *ap)
4462 {
4463     cdev_t dev = ap->a_head.a_dev;
4464     struct ciss_softc	*sc;
4465 
4466     debug_called(1);
4467 
4468     sc = (struct ciss_softc *)dev->si_drv1;
4469 
4470     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
4471     sc->ciss_flags &= ~CISS_FLAG_CONTROL_OPEN;
4472     lockmgr(&sc->ciss_lock, LK_RELEASE);
4473     return (0);
4474 }
4475 
4476 /********************************************************************************
4477  * Handle adapter-specific control operations.
4478  *
4479  * Note that the API here is compatible with the Linux driver, in order to
4480  * simplify the porting of Compaq's userland tools.
4481  */
4482 static int
4483 ciss_ioctl(struct dev_ioctl_args *ap)
4484 {
4485     caddr_t addr = ap->a_data;
4486     cdev_t dev = ap->a_head.a_dev;
4487     u_long cmd = ap->a_cmd;
4488     struct ciss_softc		*sc;
4489     IOCTL_Command_struct	*ioc	= (IOCTL_Command_struct *)addr;
4490 #ifdef __x86_64__
4491     IOCTL_Command_struct32	*ioc32	= (IOCTL_Command_struct32 *)addr;
4492     IOCTL_Command_struct	ioc_swab;
4493 #endif
4494     int				error;
4495 
4496     debug_called(1);
4497 
4498     sc = (struct ciss_softc *)dev->si_drv1;
4499     error = 0;
4500     lockmgr(&sc->ciss_lock, LK_EXCLUSIVE);
4501 
4502     switch(cmd) {
4503     case CCISS_GETQSTATS:
4504     {
4505 	union ciss_statrequest *cr = (union ciss_statrequest *)addr;
4506 
4507 	switch (cr->cs_item) {
4508 	case CISSQ_FREE:
4509 	case CISSQ_NOTIFY:
4510 	    bcopy(&sc->ciss_qstat[cr->cs_item], &cr->cs_qstat,
4511 		sizeof(struct ciss_qstat));
4512 	    break;
4513 	default:
4514 	    error = ENOIOCTL;
4515 	    break;
4516 	}
4517 
4518 	break;
4519     }
4520 
4521     case CCISS_GETPCIINFO:
4522     {
4523 	cciss_pci_info_struct	*pis = (cciss_pci_info_struct *)addr;
4524 
4525 	pis->bus = pci_get_bus(sc->ciss_dev);
4526 	pis->dev_fn = pci_get_slot(sc->ciss_dev);
4527         pis->board_id = (pci_get_subvendor(sc->ciss_dev) << 16) |
4528                 pci_get_subdevice(sc->ciss_dev);
4529 
4530 	break;
4531     }
4532 
4533     case CCISS_GETINTINFO:
4534     {
4535 	cciss_coalint_struct	*cis = (cciss_coalint_struct *)addr;
4536 
4537 	cis->delay = sc->ciss_cfg->interrupt_coalesce_delay;
4538 	cis->count = sc->ciss_cfg->interrupt_coalesce_count;
4539 
4540 	break;
4541     }
4542 
4543     case CCISS_SETINTINFO:
4544     {
4545 	cciss_coalint_struct	*cis = (cciss_coalint_struct *)addr;
4546 
4547 	if ((cis->delay == 0) && (cis->count == 0)) {
4548 	    error = EINVAL;
4549 	    break;
4550 	}
4551 
4552 	/*
4553 	 * XXX apparently this is only safe if the controller is idle,
4554 	 *     we should suspend it before doing this.
4555 	 */
4556 	sc->ciss_cfg->interrupt_coalesce_delay = cis->delay;
4557 	sc->ciss_cfg->interrupt_coalesce_count = cis->count;
4558 
4559 	if (ciss_update_config(sc))
4560 	    error = EIO;
4561 
4562 	/* XXX resume the controller here */
4563 	break;
4564     }
4565 
4566     case CCISS_GETNODENAME:
4567 	bcopy(sc->ciss_cfg->server_name, (NodeName_type *)addr,
4568 	      sizeof(NodeName_type));
4569 	break;
4570 
4571     case CCISS_SETNODENAME:
4572 	bcopy((NodeName_type *)addr, sc->ciss_cfg->server_name,
4573 	      sizeof(NodeName_type));
4574 	if (ciss_update_config(sc))
4575 	    error = EIO;
4576 	break;
4577 
4578     case CCISS_GETHEARTBEAT:
4579 	*(Heartbeat_type *)addr = sc->ciss_cfg->heartbeat;
4580 	break;
4581 
4582     case CCISS_GETBUSTYPES:
4583 	*(BusTypes_type *)addr = sc->ciss_cfg->bus_types;
4584 	break;
4585 
4586     case CCISS_GETFIRMVER:
4587 	bcopy(sc->ciss_id->running_firmware_revision, (FirmwareVer_type *)addr,
4588 	      sizeof(FirmwareVer_type));
4589 	break;
4590 
4591     case CCISS_GETDRIVERVER:
4592 	*(DriverVer_type *)addr = CISS_DRIVER_VERSION;
4593 	break;
4594 
4595     case CCISS_REVALIDVOLS:
4596 	/*
4597 	 * This is a bit ugly; to do it "right" we really need
4598 	 * to find any disks that have changed, kick CAM off them,
4599 	 * then rescan only these disks.  It'd be nice if they
4600 	 * a) told us which disk(s) they were going to play with,
4601 	 * and b) which ones had arrived. 8(
4602 	 */
4603 	break;
4604 
4605 #ifdef __x86_64__
4606     case CCISS_PASSTHRU32:
4607 	ioc_swab.LUN_info	= ioc32->LUN_info;
4608 	ioc_swab.Request	= ioc32->Request;
4609 	ioc_swab.error_info	= ioc32->error_info;
4610 	ioc_swab.buf_size	= ioc32->buf_size;
4611 	ioc_swab.buf		= (u_int8_t *)(uintptr_t)ioc32->buf;
4612 	ioc			= &ioc_swab;
4613 	/* FALLTHROUGH */
4614 #endif
4615 
4616     case CCISS_PASSTHRU:
4617 	error = ciss_user_command(sc, ioc);
4618 	break;
4619 
4620     default:
4621 	debug(0, "unknown ioctl 0x%lx", cmd);
4622 
4623 	debug(1, "CCISS_GETPCIINFO:   0x%lx", CCISS_GETPCIINFO);
4624 	debug(1, "CCISS_GETINTINFO:   0x%lx", CCISS_GETINTINFO);
4625 	debug(1, "CCISS_SETINTINFO:   0x%lx", CCISS_SETINTINFO);
4626 	debug(1, "CCISS_GETNODENAME:  0x%lx", CCISS_GETNODENAME);
4627 	debug(1, "CCISS_SETNODENAME:  0x%lx", CCISS_SETNODENAME);
4628 	debug(1, "CCISS_GETHEARTBEAT: 0x%lx", CCISS_GETHEARTBEAT);
4629 	debug(1, "CCISS_GETBUSTYPES:  0x%lx", CCISS_GETBUSTYPES);
4630 	debug(1, "CCISS_GETFIRMVER:   0x%lx", CCISS_GETFIRMVER);
4631 	debug(1, "CCISS_GETDRIVERVER: 0x%lx", CCISS_GETDRIVERVER);
4632 	debug(1, "CCISS_REVALIDVOLS:  0x%lx", CCISS_REVALIDVOLS);
4633 	debug(1, "CCISS_PASSTHRU:     0x%lx", CCISS_PASSTHRU);
4634 
4635 	error = ENOIOCTL;
4636 	break;
4637     }
4638 
4639     lockmgr(&sc->ciss_lock, LK_RELEASE);
4640     return(error);
4641 }
4642