xref: /freebsd/sys/dev/firewire/sbp.c (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
1 /*
2  * Copyright (c) 1998,1999,2000,2001 Katsushi Kobayashi and Hidetosh Shimokawa
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the acknowledgement as bellow:
15  *
16  *    This product includes software developed by K. Kobayashi and H. Shimokawa
17  *
18  * 4. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  * $FreeBSD$
34  *
35  */
36 
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/module.h>
40 #include <sys/bus.h>
41 #include <sys/mbuf.h>
42 #include <sys/sysctl.h>
43 #include <machine/bus.h>
44 #include <sys/malloc.h>
45 #include <sys/devicestat.h>	/* for struct devstat */
46 
47 
48 #include <cam/cam.h>
49 #include <cam/cam_ccb.h>
50 #include <cam/cam_sim.h>
51 #include <cam/cam_xpt_sim.h>
52 #include <cam/cam_debug.h>
53 #include <cam/cam_periph.h>
54 
55 #include <cam/scsi/scsi_all.h>
56 #include <cam/scsi/scsi_message.h>
57 #include <cam/scsi/scsi_da.h>
58 
59 #include <sys/kernel.h>
60 
61 #include <vm/vm.h>
62 #include <vm/pmap.h>
63 
64 #include <dev/firewire/firewire.h>
65 #include <dev/firewire/firewirereg.h>
66 #include <dev/firewire/iec13213.h>
67 
68 #define ccb_sdev_ptr	spriv_ptr0
69 #define ccb_sbp_ptr	spriv_ptr1
70 
71 #define SBP_NUM_TARGETS 8
72 #define SBP_NUM_LUNS 8	/* limited by CAM_SCSI2_MAXLUN in cam_xpt.c */
73 #define SBP_QUEUE_LEN 4
74 #define SBP_NUM_OCB (SBP_QUEUE_LEN * SBP_NUM_TARGETS)
75 #define SBP_INITIATOR 7
76 #define SBP_ESELECT_TIMEOUT 1
77 #define SBP_BIND_HI 0x1
78 #define SBP_DEV2ADDR(u, t, l)	\
79 	((((u) & 0xff) << 16) | (((l) & 0xff) << 8) | (((t) & 0x3f) << 2))
80 #define SBP_ADDR2TRG(a)	(((a) >> 2) & 0x3f)
81 #define SBP_ADDR2LUN(a)	(((a) >> 8) & 0xff)
82 
83 #define ORB_NOTIFY	(1 << 31)
84 #define	ORB_FMT_STD	(0 << 29)
85 #define	ORB_FMT_VED	(2 << 29)
86 #define	ORB_FMT_NOP	(3 << 29)
87 #define	ORB_FMT_MSK	(3 << 29)
88 #define	ORB_EXV		(1 << 28)
89 /* */
90 #define	ORB_CMD_IN	(1 << 27)
91 /* */
92 #define	ORB_CMD_SPD(x)	((x) << 24)
93 #define	ORB_CMD_MAXP(x)	((x) << 20)
94 #define	ORB_RCN_TMO(x)	((x) << 20)
95 #define	ORB_CMD_PTBL	(1 << 19)
96 #define	ORB_CMD_PSZ(x)	((x) << 16)
97 
98 #define	ORB_FUN_LGI	(0 << 16)
99 #define	ORB_FUN_QLG	(1 << 16)
100 #define	ORB_FUN_RCN	(3 << 16)
101 #define	ORB_FUN_LGO	(7 << 16)
102 #define	ORB_FUN_ATA	(0xb << 16)
103 #define	ORB_FUN_ATS	(0xc << 16)
104 #define	ORB_FUN_LUR	(0xe << 16)
105 #define	ORB_FUN_RST	(0xf << 16)
106 #define	ORB_FUN_MSK	(0xf << 16)
107 
108 static char *orb_fun_name[] = {
109 	/* 0 */ "LOGIN",
110 	/* 1 */ "QUERY LOGINS",
111 	/* 2 */ "Reserved",
112 	/* 3 */ "RECONNECT",
113 	/* 4 */ "SET PASSWORD",
114 	/* 5 */ "Reserved",
115 	/* 6 */ "Reserved",
116 	/* 7 */ "LOGOUT",
117 	/* 8 */ "Reserved",
118 	/* 9 */ "Reserved",
119 	/* A */ "Reserved",
120 	/* B */ "ABORT TASK",
121 	/* C */ "ABORT TASK SET",
122 	/* D */ "Reserved",
123 	/* E */ "LOGICAL UNIT RESET",
124 	/* F */ "TARGET RESET"
125 };
126 
127 #define ORB_RES_CMPL 0
128 #define ORB_RES_FAIL 1
129 #define ORB_RES_ILLE 2
130 #define ORB_RES_VEND 3
131 
132 static int debug = 0;
133 static int auto_login = 1;
134 static int max_speed = 2;
135 
136 SYSCTL_DECL(_hw_firewire);
137 SYSCTL_NODE(_hw_firewire, OID_AUTO, sbp, CTLFLAG_RD, 0, "SBP-II Subsystem");
138 SYSCTL_INT(_debug, OID_AUTO, sbp_debug, CTLFLAG_RW, &debug, 0,
139 	"SBP debug flag");
140 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, auto_login, CTLFLAG_RW, &auto_login, 0,
141 	"SBP perform login automatically");
142 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, max_speed, CTLFLAG_RW, &max_speed, 0,
143 	"SBP transfer max speed");
144 
145 #define SBP_DEBUG(x)	if (debug > x) {
146 #define END_DEBUG	}
147 
148 #define NEED_RESPONSE 0
149 
150 struct ind_ptr {
151 	u_int32_t hi,lo;
152 };
153 #define SBP_IND_MAX 0x20
154 struct sbp_ocb {
155 	STAILQ_ENTRY(sbp_ocb)	ocb;
156 	union ccb	*ccb;
157 	volatile u_int32_t	orb[8];
158 	volatile struct ind_ptr  ind_ptr[SBP_IND_MAX];
159 	struct sbp_dev	*sdev;
160 	int		flags;
161 	bus_dmamap_t	dmamap;
162 };
163 #define OCB_ACT_MGM 0
164 #define OCB_ACT_CMD 1
165 #define OCB_ACT_MASK 3
166 #define OCB_RESERVED 0x10
167 #define OCB_DONE 0x20
168 
169 #define SBP_RESOURCE_SHORTAGE 0x10
170 
171 struct sbp_login_res{
172 	u_int16_t	len;
173 	u_int16_t	id;
174 	u_int16_t	res0;
175 	u_int16_t	cmd_hi;
176 	u_int32_t	cmd_lo;
177 	u_int16_t	res1;
178 	u_int16_t	recon_hold;
179 };
180 struct sbp_status{
181 	u_int8_t	len:3,
182 			dead:1,
183 			resp:2,
184 			src:2;
185 	u_int8_t	status:8;
186 	u_int16_t	orb_hi;
187 	u_int32_t	orb_lo;
188 	u_int32_t	data[6];
189 };
190 struct sbp_cmd_status{
191 #define SBP_SFMT_CURR 0
192 #define SBP_SFMT_DEFER 1
193 	u_int8_t	status:6,
194 			sfmt:2;
195 	u_int8_t	s_key:4,
196 			ill_len:1,
197 			eom:1,
198 			mark:1,
199 			valid:1;
200 	u_int8_t	s_code;
201 	u_int8_t	s_qlfr;
202 	u_int32_t	info;
203 	u_int32_t	cdb;
204 	u_int32_t	fru:8,
205 			s_keydep:24;
206 	u_int32_t	vend[2];
207 };
208 
209 struct sbp_dev{
210 #define SBP_DEV_RESET		0	/* accept login */
211 #define SBP_DEV_LOGIN		1	/* to login */
212 #define SBP_DEV_RECONN		2	/* to reconnect */
213 #define SBP_DEV_TOATTACH	3	/* to attach */
214 #define SBP_DEV_PROBE		4	/* scan lun */
215 #define SBP_DEV_ATTACHED	5	/* in operation */
216 #define SBP_DEV_DEAD		6	/* unavailable unit */
217 #define SBP_DEV_RETRY		7	/* unavailable unit */
218 	u_int8_t status;
219 	u_int8_t type;
220 	u_int16_t lun_id;
221 	struct cam_path *path;
222 	struct sbp_target *target;
223 	struct sbp_login_res login;
224 	STAILQ_HEAD(, sbp_ocb) ocbs;
225 	char vendor[32];
226 	char product[32];
227 	char revision[10];
228 };
229 
230 struct sbp_target {
231 	int target_id;
232 	int num_lun;
233 	struct sbp_dev	*luns;
234 	struct sbp_softc *sbp;
235 	struct fw_device *fwdev;
236 	u_int32_t mgm_hi, mgm_lo;
237 };
238 
239 struct sbp_softc {
240 	struct firewire_dev_comm fd;
241 	unsigned char flags;
242 	struct cam_sim  *sim;
243 	struct sbp_target targets[SBP_NUM_TARGETS];
244 	struct fw_bind fwb;
245 	STAILQ_HEAD(, sbp_ocb) free_ocbs;
246 	struct sbp_ocb *ocb;
247 	bus_dma_tag_t	dmat;
248 };
249 static void sbp_post_explore __P((void *));
250 static void sbp_recv __P((struct fw_xfer *));
251 static void sbp_login_callback __P((struct fw_xfer *));
252 static void sbp_cmd_callback __P((struct fw_xfer *));
253 static void sbp_orb_pointer __P((struct sbp_dev *, struct sbp_ocb *));
254 static void sbp_execute_ocb __P((void *,  bus_dma_segment_t *, int, int));
255 static void sbp_free_ocb __P((struct sbp_softc *, struct sbp_ocb *));
256 static void sbp_abort_ocb __P((struct sbp_ocb *, int));
257 static void sbp_abort_all_ocbs __P((struct sbp_dev *, int));
258 static struct fw_xfer * sbp_write_cmd __P((struct sbp_dev *, int, int));
259 static struct sbp_ocb * sbp_get_ocb __P((struct sbp_softc *));
260 static struct sbp_ocb * sbp_enqueue_ocb __P((struct sbp_dev *, struct sbp_ocb *));
261 static struct sbp_ocb * sbp_dequeue_ocb __P((struct sbp_dev *, u_int32_t));
262 static void sbp_detach_target __P((struct sbp_target *));
263 static void sbp_timeout __P((void *arg));
264 static void sbp_mgm_orb __P((struct sbp_dev *, int));
265 
266 MALLOC_DEFINE(M_SBP, "sbp", "SBP-II/FireWire");
267 
268 /* cam related functions */
269 static void	sbp_action(struct cam_sim *sim, union ccb *ccb);
270 static void	sbp_poll(struct cam_sim *sim);
271 static void	sbp_cam_callback(struct cam_periph *periph,
272 					union ccb *ccb);
273 static void	sbp_cam_scan_lun(struct sbp_dev *sdev);
274 
275 static char *orb_status0[] = {
276 	/* 0 */ "No additional information to report",
277 	/* 1 */ "Request type not supported",
278 	/* 2 */ "Speed not supported",
279 	/* 3 */ "Page size not supported",
280 	/* 4 */ "Access denied",
281 	/* 5 */ "Logical unit not supported",
282 	/* 6 */ "Maximum payload too small",
283 	/* 7 */ "Reserved for future standardization",
284 	/* 8 */ "Resources unavailable",
285 	/* 9 */ "Function rejected",
286 	/* A */ "Login ID not recognized",
287 	/* B */ "Dummy ORB completed",
288 	/* C */ "Request aborted",
289 	/* FF */ "Unspecified error"
290 #define MAX_ORB_STATUS0 0xd
291 };
292 
293 static char *orb_status1_object[] = {
294 	/* 0 */ "Operation request block (ORB)",
295 	/* 1 */ "Data buffer",
296 	/* 2 */ "Page table",
297 	/* 3 */ "Unable to specify"
298 };
299 
300 static char *orb_status1_serial_bus_error[] = {
301 	/* 0 */ "Missing acknowledge",
302 	/* 1 */ "Reserved; not to be used",
303 	/* 2 */ "Time-out error",
304 	/* 3 */ "Reserved; not to be used",
305 	/* 4 */ "Busy retry limit exceeded(X)",
306 	/* 5 */ "Busy retry limit exceeded(A)",
307 	/* 6 */ "Busy retry limit exceeded(B)",
308 	/* 7 */ "Reserved for future standardization",
309 	/* 8 */ "Reserved for future standardization",
310 	/* 9 */ "Reserved for future standardization",
311 	/* A */ "Reserved for future standardization",
312 	/* B */ "Tardy retry limit exceeded",
313 	/* C */ "Conflict error",
314 	/* D */ "Data error",
315 	/* E */ "Type error",
316 	/* F */ "Address error"
317 };
318 
319 static void
320 sbp_identify(driver_t *driver, device_t parent)
321 {
322 	device_t child;
323 SBP_DEBUG(0)
324 	printf("sbp_identify\n");
325 END_DEBUG
326 
327 	child = BUS_ADD_CHILD(parent, 0, "sbp", device_get_unit(parent));
328 }
329 
330 /*
331  * sbp_probe()
332  */
333 static int
334 sbp_probe(device_t dev)
335 {
336 	device_t pa;
337 
338 SBP_DEBUG(0)
339 	printf("sbp_probe\n");
340 END_DEBUG
341 
342 	pa = device_get_parent(dev);
343 	if(device_get_unit(dev) != device_get_unit(pa)){
344 		return(ENXIO);
345 	}
346 
347 	device_set_desc(dev, "SBP2/SCSI over firewire");
348 	return (0);
349 }
350 
351 static void
352 sbp_show_sdev_info(struct sbp_dev *sdev, int new)
353 {
354 	struct fw_device *fwdev;
355 
356 	printf("%s:%d:%d ",
357 		device_get_nameunit(sdev->target->sbp->fd.dev),
358 		sdev->target->target_id,
359 		sdev->lun_id
360 	);
361 	if (new == 2) {
362 		return;
363 	}
364 	fwdev = sdev->target->fwdev;
365 	printf("ordered:%d type:%d EUI:%08x%08x node:%d "
366 		"speed:%d maxrec:%d",
367 		(sdev->type & 0x40) >> 6,
368 		(sdev->type & 0x1f),
369 		fwdev->eui.hi,
370 		fwdev->eui.lo,
371 		fwdev->dst,
372 		fwdev->speed,
373 		fwdev->maxrec
374 	);
375 	if (new)
376 		printf(" new!\n");
377 	else
378 		printf("\n");
379 	sbp_show_sdev_info(sdev, 2);
380 	printf("'%s' '%s' '%s'\n", sdev->vendor, sdev->product, sdev->revision);
381 }
382 
383 static struct sbp_target *
384 sbp_alloc_target(struct sbp_softc *sbp, struct fw_device *fwdev)
385 {
386 	int i, maxlun, lun;
387 	struct sbp_target *target;
388 	struct sbp_dev *sdev;
389 	struct crom_context cc;
390 	struct csrreg *reg;
391 
392 SBP_DEBUG(1)
393 	printf("sbp_alloc_target\n");
394 END_DEBUG
395 	for (i = 0; i < SBP_NUM_TARGETS; i++)
396 		if(sbp->targets[i].fwdev == NULL) break;
397 	if (i == SBP_NUM_TARGETS) {
398 		printf("increase SBP_NUM_TARGETS!\n");
399 		return NULL;
400 	}
401 	/* new target */
402 	target = &sbp->targets[i];
403 	target->sbp = sbp;
404 	target->fwdev = fwdev;
405 	target->target_id = i;
406 	if((target->mgm_lo = getcsrdata(fwdev, 0x54)) == 0 ){
407 		/* bad target */
408 		printf("NULL management address\n");
409 		target->fwdev = NULL;
410 		return NULL;
411 	}
412 	target->mgm_hi = 0xffff;
413 	target->mgm_lo = 0xf0000000 | target->mgm_lo << 2;
414 	/* XXX num_lun may be changed. realloc luns? */
415 	crom_init_context(&cc, target->fwdev->csrrom);
416 	/* XXX shoud parse appropriate unit directories only */
417 	maxlun = -1;
418 	while (cc.depth >= 0) {
419 		reg = crom_search_key(&cc, CROM_LUN);
420 		if (reg == NULL)
421 			break;
422 		lun = reg->val & 0xff;
423 SBP_DEBUG(0)
424 		printf("target %d lun %d found\n", target->target_id, lun);
425 END_DEBUG
426 		if (maxlun < lun)
427 			maxlun = lun;
428 		crom_next(&cc);
429 	}
430 	target->num_lun = maxlun + 1;
431 	if (maxlun < 0) {
432 		printf("no lun found!\n");
433 	}
434 	target->luns = (struct sbp_dev *) malloc(
435 				sizeof(struct sbp_dev) * target->num_lun,
436 				M_SBP, M_NOWAIT | M_ZERO);
437 	for (i = 0; i < target->num_lun; i++) {
438 		sdev = &target->luns[i];
439 		sdev->lun_id = i;
440 		sdev->target = target;
441 		STAILQ_INIT(&sdev->ocbs);
442 		sdev->status = SBP_DEV_DEAD;
443 	}
444 	crom_init_context(&cc, target->fwdev->csrrom);
445 	while (cc.depth >= 0) {
446 		reg = crom_search_key(&cc, CROM_LUN);
447 		if (reg == NULL)
448 			break;
449 		lun = reg->val & 0xff;
450 		target->luns[lun].status = SBP_DEV_RESET;
451 		target->luns[lun].type = (reg->val & 0x0f00) >> 16;
452 		crom_next(&cc);
453 	}
454 	return target;
455 }
456 
457 static void
458 sbp_get_text_leaf(struct fw_device *fwdev, int key, char *buf, int len)
459 {
460 	static char *nullstr = "(null)";
461 	int i, clen, found=0;
462 	struct csrhdr *chdr;
463 	struct csrreg *creg;
464 	u_int32_t *src, *dst;
465 
466 	chdr = (struct csrhdr *)&fwdev->csrrom[0];
467 	creg = (struct csrreg *)chdr;
468 	creg += chdr->info_len;
469 	for( i = chdr->info_len + 4; i <= fwdev->rommax; i+=4){
470 		if((creg++)->key == key){
471 			found = 1;
472 			break;
473 		}
474 	}
475 	if (!found) {
476 		strncpy(buf, nullstr, len);
477 		return;
478 	}
479 	src = (u_int32_t *) creg + creg->val;
480 	clen = ((*src >> 16) - 2) * 4;
481 	src += 3;
482 	dst = (u_int32_t *) buf;
483 	if (len < clen)
484 		clen = len;
485 	for (i = 0; i < clen/4; i++)
486 		*dst++ = htonl(*src++);
487 	buf[clen] = 0;
488 }
489 
490 static void
491 sbp_probe_lun(struct sbp_dev *sdev)
492 {
493 	struct fw_device *fwdev;
494 	int rev;
495 
496 	fwdev = sdev->target->fwdev;
497 	bzero(sdev->vendor, sizeof(sdev->vendor));
498 	bzero(sdev->product, sizeof(sdev->product));
499 	sbp_get_text_leaf(fwdev, 0x03, sdev->vendor, sizeof(sdev->vendor));
500 	sbp_get_text_leaf(fwdev, 0x17, sdev->product, sizeof(sdev->product));
501 	rev = getcsrdata(sdev->target->fwdev, 0x3c);
502 	snprintf(sdev->revision, sizeof(sdev->revision), "%06x", rev);
503 }
504 static void
505 sbp_probe_target(struct sbp_target *target, int alive)
506 {
507 	struct sbp_softc *sbp;
508 	struct sbp_dev *sdev;
509 	struct firewire_comm *fc;
510 	int i;
511 
512 SBP_DEBUG(1)
513 	printf("sbp_probe_target %d\n", target->target_id);
514 	if (!alive)
515 		printf("not alive\n");
516 END_DEBUG
517 
518 	sbp = target->sbp;
519 	fc = target->sbp->fd.fc;
520 	for (i=0; i < target->num_lun; i++) {
521 		sdev = &target->luns[i];
522 		if (alive && (sdev->status != SBP_DEV_DEAD)) {
523 			if (sdev->path != NULL) {
524 				xpt_freeze_devq(sdev->path, 1);
525 			}
526 			sbp_abort_all_ocbs(sdev, CAM_REQUEUE_REQ);
527 			switch (sdev->status) {
528 			case SBP_DEV_ATTACHED:
529 				sbp_mgm_orb(sdev, ORB_FUN_RCN);
530 				break;
531 			case SBP_DEV_RETRY:
532 				sbp_probe_lun(sdev);
533 				sbp_mgm_orb(sdev, ORB_FUN_LGI);
534 				break;
535 			default:
536 				/* new or revived target */
537 				sbp_probe_lun(sdev);
538 				if (auto_login) {
539 					sdev->status = SBP_DEV_TOATTACH;
540 					sbp_mgm_orb(sdev, ORB_FUN_LGI);
541 				}
542 				break;
543 			}
544 SBP_DEBUG(0)
545 			sbp_show_sdev_info(sdev,
546 					(sdev->status == SBP_DEV_TOATTACH));
547 END_DEBUG
548 		} else {
549 			switch (sdev->status) {
550 			case SBP_DEV_ATTACHED:
551 SBP_DEBUG(0)
552 				/* the device has gone */
553 				sbp_show_sdev_info(sdev, 2);
554 				printf("lost target\n");
555 END_DEBUG
556 				if (sdev->path)
557 					xpt_freeze_devq(sdev->path, 1);
558 				sdev->status = SBP_DEV_RETRY;
559 				sbp_abort_all_ocbs(sdev, CAM_REQUEUE_REQ);
560 				break;
561 			case SBP_DEV_PROBE:
562 			case SBP_DEV_TOATTACH:
563 				sdev->status = SBP_DEV_RESET;
564 				break;
565 			case SBP_DEV_RETRY:
566 			case SBP_DEV_RESET:
567 			case SBP_DEV_DEAD:
568 				break;
569 			}
570 		}
571 	}
572 }
573 
574 #if 0
575 static void
576 sbp_release_queue(void *arg)
577 {
578 	struct sbp_softc *sbp;
579 
580 SBP_DEBUG(0)
581 	printf("sbp_release_queue\n");
582 END_DEBUG
583 	sbp = (struct sbp_softc *)arg;
584 	xpt_release_simq(sbp->sim, 1);
585 }
586 
587 static void
588 sbp_release_devq(void *arg)
589 {
590 	struct sbp_dev *sdev;
591 	int s;
592 
593 	sdev = (struct sbp_dev *)arg;
594 SBP_DEBUG(0)
595 	sbp_show_sdev_info(sdev, 2);
596 	printf("sbp_release_devq\n");
597 END_DEBUG
598 	s = splcam();
599 	xpt_release_devq(sdev->path, 1, TRUE);
600 	splx(s);
601 }
602 #endif
603 
604 static void
605 sbp_post_explore(void *arg)
606 {
607 	struct sbp_softc *sbp = (struct sbp_softc *)arg;
608 	struct sbp_target *target;
609 	struct fw_device *fwdev;
610 	int i, alive;
611 
612 SBP_DEBUG(1)
613 	printf("sbp_post_explore\n");
614 END_DEBUG
615 #if 0
616 	xpt_freeze_simq(sbp->sim, /*count*/ 1);
617 #endif
618 	/* Gabage Collection */
619 	for(i = 0 ; i < SBP_NUM_TARGETS ; i ++){
620 		target = &sbp->targets[i];
621 		for( fwdev  = TAILQ_FIRST(&sbp->fd.fc->devices);
622 			fwdev != NULL; fwdev = TAILQ_NEXT(fwdev, link)){
623 			if(target->fwdev == NULL) break;
624 			if(target->fwdev == fwdev) break;
625 		}
626 		if(fwdev == NULL){
627 			/* device has removed in lower driver */
628 			sbp_detach_target(target);
629 		}
630 	}
631 	/* traverse device list */
632 	for( fwdev  = TAILQ_FIRST(&sbp->fd.fc->devices);
633 		fwdev != NULL; fwdev = TAILQ_NEXT(fwdev, link)){
634 SBP_DEBUG(0)
635 		printf("sbp_post_explore: EUI:%08x%08x ",
636 				fwdev->eui.hi, fwdev->eui.lo);
637 		if (fwdev->status == FWDEVATTACHED) {
638 			printf("spec=%d key=%d.\n",
639 			getcsrdata(fwdev, CSRKEY_SPEC) == CSRVAL_ANSIT10,
640 			getcsrdata(fwdev, CSRKEY_VER) == CSRVAL_T10SBP2);
641 		} else {
642 			printf("not attached, state=%d.\n", fwdev->status);
643 		}
644 END_DEBUG
645 		alive = (fwdev->status == FWDEVATTACHED)
646 			&& (getcsrdata(fwdev, CSRKEY_SPEC) == CSRVAL_ANSIT10)
647 			&& (getcsrdata(fwdev, CSRKEY_VER) == CSRVAL_T10SBP2);
648 		for(i = 0 ; i < SBP_NUM_TARGETS ; i ++){
649 			target = &sbp->targets[i];
650 			if(target->fwdev == fwdev ) {
651 				/* known target */
652 				break;
653 			}
654 		}
655 		if(i == SBP_NUM_TARGETS){
656 			if (alive) {
657 				/* new target */
658 				target = sbp_alloc_target(sbp, fwdev);
659 				if (target == NULL)
660 					continue;
661 			} else {
662 				continue;
663 			}
664 		}
665 		sbp_probe_target(target, alive);
666 	}
667 #if 0
668 	timeout(sbp_release_queue, (caddr_t)sbp, bus_reset_rest * hz / 1000);
669 #endif
670 }
671 
672 #if NEED_RESPONSE
673 static void
674 sbp_loginres_callback(struct fw_xfer *xfer){
675 SBP_DEBUG(1)
676 	struct sbp_dev *sdev;
677 	sdev = (struct sbp_dev *)xfer->sc;
678 	sbp_show_sdev_info(sdev, 2);
679 	printf("sbp_loginres_callback\n");
680 END_DEBUG
681 	fw_xfer_free(xfer);
682 	return;
683 }
684 #endif
685 
686 static void
687 sbp_login_callback(struct fw_xfer *xfer)
688 {
689 SBP_DEBUG(1)
690 	struct sbp_dev *sdev;
691 	sdev = (struct sbp_dev *)xfer->sc;
692 	sbp_show_sdev_info(sdev, 2);
693 	printf("sbp_login_callback\n");
694 END_DEBUG
695 	fw_xfer_free(xfer);
696 	return;
697 }
698 
699 static void
700 sbp_cmd_callback(struct fw_xfer *xfer)
701 {
702 SBP_DEBUG(2)
703 	struct sbp_dev *sdev;
704 	sdev = (struct sbp_dev *)xfer->sc;
705 	sbp_show_sdev_info(sdev, 2);
706 	printf("sbp_cmd_callback\n");
707 END_DEBUG
708 	fw_xfer_free(xfer);
709 	return;
710 }
711 
712 static void
713 sbp_cam_callback(struct cam_periph *periph, union ccb *ccb)
714 {
715 	struct sbp_dev *sdev;
716 	sdev = (struct sbp_dev *) ccb->ccb_h.ccb_sdev_ptr;
717 SBP_DEBUG(1)
718 	sbp_show_sdev_info(sdev, 2);
719 	printf("sbp_cam_callback\n");
720 END_DEBUG
721 	sdev->status = SBP_DEV_ATTACHED;
722 	free(ccb, M_SBP);
723 }
724 
725 static void
726 sbp_cam_scan_lun(struct sbp_dev *sdev)
727 {
728 	union ccb *ccb = malloc(sizeof(union ccb), M_SBP, M_ZERO);
729 
730 SBP_DEBUG(0)
731 	sbp_show_sdev_info(sdev, 2);
732 	printf("sbp_cam_scan_lun\n");
733 END_DEBUG
734 	xpt_setup_ccb(&ccb->ccb_h, sdev->path, 5/*priority (low)*/);
735 	ccb->ccb_h.func_code = XPT_SCAN_LUN;
736 	ccb->ccb_h.cbfcnp = sbp_cam_callback;
737 	ccb->crcn.flags = CAM_FLAG_NONE;
738 	ccb->ccb_h.ccb_sdev_ptr = sdev;
739 	xpt_action(ccb);
740 
741 	/* The scan is in progress now. */
742 }
743 
744 
745 static void
746 sbp_ping_unit_callback(struct cam_periph *periph, union ccb *ccb)
747 {
748 	struct sbp_dev *sdev;
749 	sdev = (struct sbp_dev *) ccb->ccb_h.ccb_sdev_ptr;
750 SBP_DEBUG(1)
751 	sbp_show_sdev_info(sdev, 2);
752 	printf("sbp_ping_unit_callback\n");
753 END_DEBUG
754 	if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
755 		if (--ccb->ccb_h.retry_count == 0) {
756 			sbp_show_sdev_info(sdev, 2);
757 			printf("sbp_tur_callback: retry count exceeded\n");
758 			sdev->status = SBP_DEV_RETRY;
759 			free(ccb, M_SBP);
760 		} else {
761 			/* requeue */
762 			xpt_action(ccb);
763 			xpt_release_devq(sdev->path, 1, TRUE);
764 		}
765 	} else {
766 		free(ccb->csio.data_ptr, M_SBP);
767 		free(ccb, M_SBP);
768 		sdev->status = SBP_DEV_ATTACHED;
769 		xpt_release_devq(sdev->path, 1, TRUE);
770 	}
771 }
772 
773 /*
774  * XXX Some devices need to execute inquiry or read_capacity
775  * after bus_rest during busy transfer.
776  * Otherwise they return incorrect result for READ(and WRITE?)
777  * command without any SBP-II/SCSI error.
778  *
779  * e.g. Maxtor 3000XT, Yano A-dish.
780  */
781 static void
782 sbp_ping_unit(struct sbp_dev *sdev)
783 {
784 	union ccb *ccb;
785 	struct scsi_inquiry_data *inq_buf;
786 
787 	ccb = malloc(sizeof(union ccb), M_SBP, M_ZERO);
788 	inq_buf = (struct scsi_inquiry_data *)
789 			malloc(sizeof(*inq_buf), M_SBP, 0);
790 
791 SBP_DEBUG(1)
792 	sbp_show_sdev_info(sdev, 2);
793 	printf("sbp_ping_unit\n");
794 END_DEBUG
795 
796 	/*
797 	 * We need to execute this command before any other queued command.
798 	 * Make priority 0 and freeze queue after execution for retry.
799 	 * cam's scan_lun command doesn't provide this feature.
800 	 */
801 	xpt_setup_ccb(&ccb->ccb_h, sdev->path, 0/*priority (high)*/);
802 	scsi_inquiry(
803 		&ccb->csio,
804 		/*retries*/ 5,
805 		sbp_ping_unit_callback,
806 		MSG_SIMPLE_Q_TAG,
807 		(u_int8_t *)inq_buf,
808 		SHORT_INQUIRY_LENGTH,
809 		/*evpd*/FALSE,
810 		/*page_code*/0,
811 		SSD_MIN_SIZE,
812 		/*timeout*/60000
813 	);
814 	ccb->ccb_h.flags |= CAM_DEV_QFREEZE;
815 	xpt_action(ccb);
816 }
817 
818 static void
819 sbp_do_attach(struct fw_xfer *xfer)
820 {
821 	struct sbp_dev *sdev;
822 
823 	sdev = (struct sbp_dev *)xfer->sc;
824 SBP_DEBUG(0)
825 	sbp_show_sdev_info(sdev, 2);
826 	printf("sbp_do_attach\n");
827 END_DEBUG
828 	fw_xfer_free(xfer);
829 	if (sdev->path == NULL)
830 		xpt_create_path(&sdev->path, xpt_periph,
831 			cam_sim_path(sdev->target->sbp->sim),
832 			sdev->target->target_id, sdev->lun_id);
833 
834 	if (sdev->status == SBP_DEV_RETRY) {
835 		sdev->status = SBP_DEV_PROBE;
836 		sbp_ping_unit(sdev);
837 		/* freezed twice */
838 		xpt_release_devq(sdev->path, 1, TRUE);
839 	} else {
840 		sdev->status = SBP_DEV_PROBE;
841 		sbp_cam_scan_lun(sdev);
842 	}
843 	xpt_release_devq(sdev->path, 1, TRUE);
844 	return;
845 }
846 
847 static void
848 sbp_agent_reset_callback(struct fw_xfer *xfer)
849 {
850 	struct sbp_dev *sdev;
851 
852 	sdev = (struct sbp_dev *)xfer->sc;
853 SBP_DEBUG(1)
854 	sbp_show_sdev_info(sdev, 2);
855 	printf("sbp_cmd_callback\n");
856 END_DEBUG
857 	fw_xfer_free(xfer);
858 	sbp_abort_all_ocbs(sdev, CAM_REQUEUE_REQ);
859 	if (sdev->path)
860 		xpt_release_devq(sdev->path, 1, TRUE);
861 }
862 
863 static void
864 sbp_agent_reset(struct sbp_dev *sdev, int attach)
865 {
866 	struct fw_xfer *xfer;
867 	struct fw_pkt *fp;
868 
869 SBP_DEBUG(0)
870 	sbp_show_sdev_info(sdev, 2);
871 	printf("sbp_agent_reset\n");
872 END_DEBUG
873 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x04);
874 	if (xfer == NULL)
875 		return;
876 	if (attach)
877 		xfer->act.hand = sbp_do_attach;
878 	else
879 		xfer->act.hand = sbp_agent_reset_callback;
880 	fp = (struct fw_pkt *)xfer->send.buf;
881 	fp->mode.wreqq.data = htonl(0xf);
882 	fw_asyreq(xfer->fc, -1, xfer);
883 }
884 
885 static void
886 sbp_busy_timeout_callback(struct fw_xfer *xfer)
887 {
888 	struct sbp_dev *sdev;
889 
890 	sdev = (struct sbp_dev *)xfer->sc;
891 SBP_DEBUG(1)
892 	sbp_show_sdev_info(sdev, 2);
893 	printf("sbp_but_timeout_callback\n");
894 END_DEBUG
895 	fw_xfer_free(xfer);
896 	sbp_agent_reset(sdev, 1);
897 }
898 
899 static void
900 sbp_busy_timeout(struct sbp_dev *sdev)
901 {
902 	struct fw_pkt *fp;
903 	struct fw_xfer *xfer;
904 SBP_DEBUG(0)
905 	sbp_show_sdev_info(sdev, 2);
906 	printf("sbp_busy_timeout\n");
907 END_DEBUG
908 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0);
909 
910 	xfer->act.hand = sbp_busy_timeout_callback;
911 	fp = (struct fw_pkt *)xfer->send.buf;
912 	fp->mode.wreqq.dest_hi = htons(0xffff);
913 	fp->mode.wreqq.dest_lo = htonl(0xf0000000 | BUS_TIME);
914 	fp->mode.wreqq.data = htonl(0xf);
915 	fw_asyreq(xfer->fc, -1, xfer);
916 }
917 
918 #if 0
919 static void
920 sbp_reset_start(struct sbp_dev *sdev)
921 {
922 	struct fw_xfer *xfer;
923 	struct fw_pkt *fp;
924 
925 SBP_DEBUG(0)
926 	sbp_show_sdev_info(sdev, 2);
927 	printf("sbp_reset_start\n");
928 END_DEBUG
929 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0);
930 
931 	xfer->act.hand = sbp_busy_timeout;
932 	fp = (struct fw_pkt *)xfer->send.buf;
933 	fp->mode.wreqq.dest_hi = htons(0xffff);
934 	fp->mode.wreqq.dest_lo = htonl(0xf0000000 | RESET_START);
935 	fp->mode.wreqq.data = htonl(0xf);
936 	fw_asyreq(xfer->fc, -1, xfer);
937 }
938 #endif
939 
940 static void
941 sbp_orb_pointer(struct sbp_dev *sdev, struct sbp_ocb *ocb)
942 {
943 	struct fw_xfer *xfer;
944 	struct fw_pkt *fp;
945 SBP_DEBUG(2)
946 	sbp_show_sdev_info(sdev, 2);
947 	printf("sbp_orb_pointer\n");
948 END_DEBUG
949 
950 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQB, 0x08);
951 	if (xfer == NULL)
952 		return;
953 	xfer->act.hand = sbp_cmd_callback;
954 
955 	fp = (struct fw_pkt *)xfer->send.buf;
956 	fp->mode.wreqb.len = htons(8);
957 	fp->mode.wreqb.extcode = 0;
958 	fp->mode.wreqb.payload[0] =
959 		htonl(((sdev->target->sbp->fd.fc->nodeid | FWLOCALBUS )<< 16));
960 	fp->mode.wreqb.payload[1] = htonl(vtophys(&ocb->orb[0]));
961 
962 	if(fw_asyreq(xfer->fc, -1, xfer) != 0){
963 			fw_xfer_free(xfer);
964 			ocb->ccb->ccb_h.status = CAM_REQ_INVALID;
965 			xpt_done(ocb->ccb);
966 	}
967 }
968 
969 static void
970 sbp_doorbell(struct sbp_dev *sdev)
971 {
972 	struct fw_xfer *xfer;
973 	struct fw_pkt *fp;
974 SBP_DEBUG(1)
975 	sbp_show_sdev_info(sdev, 2);
976 	printf("sbp_doorbell\n");
977 END_DEBUG
978 
979 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x10);
980 	if (xfer == NULL)
981 		return;
982 	xfer->act.hand = sbp_cmd_callback;
983 	fp = (struct fw_pkt *)xfer->send.buf;
984 	fp->mode.wreqq.data = htonl(0xf);
985 	fw_asyreq(xfer->fc, -1, xfer);
986 }
987 
988 static struct fw_xfer *
989 sbp_write_cmd(struct sbp_dev *sdev, int tcode, int offset)
990 {
991 	struct fw_xfer *xfer;
992 	struct fw_pkt *fp;
993 
994 	xfer = fw_xfer_alloc();
995 	if(xfer == NULL){
996 		return NULL;
997 	}
998 	if (tcode == FWTCODE_WREQQ)
999 		xfer->send.len = 16;
1000 	else
1001 		xfer->send.len = 24;
1002 
1003 	xfer->send.buf = malloc(xfer->send.len, M_DEVBUF, M_NOWAIT);
1004 	if(xfer->send.buf == NULL){
1005 		fw_xfer_free( xfer);
1006 		return NULL;
1007 	}
1008 
1009 	xfer->send.off = 0;
1010 	xfer->spd = min(sdev->target->fwdev->speed, max_speed);
1011 	xfer->sc = (caddr_t)sdev;
1012 	xfer->fc = sdev->target->sbp->fd.fc;
1013 	xfer->retry_req = fw_asybusy;
1014 
1015 	fp = (struct fw_pkt *)xfer->send.buf;
1016 	fp->mode.wreqq.dest_hi = htons(sdev->login.cmd_hi);
1017 	fp->mode.wreqq.dest_lo = htonl(sdev->login.cmd_lo + offset);
1018 	fp->mode.wreqq.tlrt = 0;
1019 	fp->mode.wreqq.tcode = tcode;
1020 	fp->mode.wreqq.pri = 0;
1021 	xfer->dst = FWLOCALBUS | sdev->target->fwdev->dst;
1022 	fp->mode.wreqq.dst = htons(xfer->dst);
1023 
1024 	return xfer;
1025 
1026 }
1027 
1028 static void
1029 sbp_mgm_orb(struct sbp_dev *sdev, int func)
1030 {
1031 	struct fw_xfer *xfer;
1032 	struct fw_pkt *fp;
1033 	struct sbp_ocb *ocb;
1034 	int s, nid;
1035 
1036 	if ((ocb = sbp_get_ocb(sdev->target->sbp)) == NULL) {
1037 		s = splfw();
1038 		sdev->target->sbp->flags |= SBP_RESOURCE_SHORTAGE;
1039 		splx(s);
1040 		return;
1041 	}
1042 	ocb->flags = OCB_ACT_MGM;
1043 	ocb->sdev = sdev;
1044 	ocb->ccb = NULL;
1045 
1046 	nid = sdev->target->sbp->fd.fc->nodeid | FWLOCALBUS;
1047 	bzero((void *)(uintptr_t)(volatile void *)ocb->orb, sizeof(ocb->orb));
1048 	ocb->orb[6] = htonl((nid << 16) | SBP_BIND_HI);
1049 	ocb->orb[7] = htonl(SBP_DEV2ADDR(
1050 		device_get_unit(sdev->target->sbp->fd.dev),
1051 		sdev->target->target_id,
1052 		sdev->lun_id));
1053 
1054 SBP_DEBUG(0)
1055 	sbp_show_sdev_info(sdev, 2);
1056 	printf("%s\n", orb_fun_name[(func>>16)&0xf]);
1057 END_DEBUG
1058 	switch (func) {
1059 	case ORB_FUN_LGI:
1060 		ocb->orb[2] = htonl(nid << 16);
1061 		ocb->orb[3] = htonl(vtophys(&sdev->login));
1062 		ocb->orb[4] = htonl(ORB_NOTIFY | ORB_EXV | sdev->lun_id);
1063 		ocb->orb[5] = htonl(sizeof(struct sbp_login_res));
1064 		break;
1065 	case ORB_FUN_RCN:
1066 	case ORB_FUN_LGO:
1067 	case ORB_FUN_LUR:
1068 	case ORB_FUN_RST:
1069 	case ORB_FUN_ATA:
1070 	case ORB_FUN_ATS:
1071 		ocb->orb[4] = htonl(ORB_NOTIFY | func | sdev->login.id);
1072 		break;
1073 	}
1074 
1075 	xfer = sbp_write_cmd(sdev, FWTCODE_WREQB, 0);
1076 	if(xfer == NULL){
1077 		return;
1078 	}
1079 	xfer->act.hand = sbp_login_callback;
1080 
1081 	fp = (struct fw_pkt *)xfer->send.buf;
1082 	fp->mode.wreqb.dest_hi = htons(sdev->target->mgm_hi);
1083 	fp->mode.wreqb.dest_lo = htonl(sdev->target->mgm_lo);
1084 	fp->mode.wreqb.len = htons(8);
1085 	fp->mode.wreqb.extcode = 0;
1086 	fp->mode.wreqb.payload[0] = htonl(nid << 16);
1087 	fp->mode.wreqb.payload[1] = htonl(vtophys(&ocb->orb[0]));
1088 	sbp_enqueue_ocb(sdev, ocb);
1089 
1090 	fw_asyreq(xfer->fc, -1, xfer);
1091 }
1092 
1093 static void
1094 sbp_print_scsi_cmd(struct sbp_ocb *ocb)
1095 {
1096 	struct ccb_scsiio *csio;
1097 
1098 	csio = &ocb->ccb->csio;
1099 	printf("%s:%d:%d XPT_SCSI_IO: "
1100 		"cmd: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x"
1101 		", flags: 0x%02x, "
1102 		"%db cmd/%db data/%db sense\n",
1103 		device_get_nameunit(ocb->sdev->target->sbp->fd.dev),
1104 		ocb->ccb->ccb_h.target_id, ocb->ccb->ccb_h.target_lun,
1105 		csio->cdb_io.cdb_bytes[0],
1106 		csio->cdb_io.cdb_bytes[1],
1107 		csio->cdb_io.cdb_bytes[2],
1108 		csio->cdb_io.cdb_bytes[3],
1109 		csio->cdb_io.cdb_bytes[4],
1110 		csio->cdb_io.cdb_bytes[5],
1111 		csio->cdb_io.cdb_bytes[6],
1112 		csio->cdb_io.cdb_bytes[7],
1113 		csio->cdb_io.cdb_bytes[8],
1114 		csio->cdb_io.cdb_bytes[9],
1115 		ocb->ccb->ccb_h.flags & CAM_DIR_MASK,
1116 		csio->cdb_len, csio->dxfer_len,
1117 		csio->sense_len);
1118 }
1119 
1120 static void
1121 sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb)
1122 {
1123 	struct sbp_cmd_status *sbp_cmd_status;
1124 	struct scsi_sense_data *sense;
1125 
1126 	sbp_cmd_status = (struct sbp_cmd_status *)sbp_status->data;
1127 	sense = &ocb->ccb->csio.sense_data;
1128 
1129 SBP_DEBUG(0)
1130 	sbp_print_scsi_cmd(ocb);
1131 	/* XXX need decode status */
1132 	sbp_show_sdev_info(ocb->sdev, 2);
1133 	printf("SCSI status %x sfmt %x valid %x key %x code %x qlfr %x len %d",
1134 		sbp_cmd_status->status,
1135 		sbp_cmd_status->sfmt,
1136 		sbp_cmd_status->valid,
1137 		sbp_cmd_status->s_key,
1138 		sbp_cmd_status->s_code,
1139 		sbp_cmd_status->s_qlfr,
1140 		sbp_status->len
1141 	);
1142 #if 0	 /* XXX */
1143 	if (sbp_cmd_status->status == SCSI_STATUS_CHECK_COND) {
1144 		printf(" %s\n", scsi_sense_key_text[sbp_cmd_status->s_key]);
1145 			scsi_sense_desc(
1146 				sbp_cmd_status->s_code,
1147 				sbp_cmd_status->s_qlfr,
1148 				ocb->ccb->ccb_h.path->device->inq_data
1149 			)
1150 	} else {
1151 		printf("\n");
1152 	}
1153 #else
1154 	printf("\n");
1155 #endif
1156 END_DEBUG
1157 
1158 
1159 	if(sbp_cmd_status->status == SCSI_STATUS_CHECK_COND ||
1160 			sbp_cmd_status->status == SCSI_STATUS_CMD_TERMINATED){
1161 		if(sbp_cmd_status->sfmt == SBP_SFMT_CURR){
1162 			sense->error_code = SSD_CURRENT_ERROR;
1163 		}else{
1164 			sense->error_code = SSD_DEFERRED_ERROR;
1165 		}
1166 		if(sbp_cmd_status->valid)
1167 			sense->error_code |= SSD_ERRCODE_VALID;
1168 		sense->flags = sbp_cmd_status->s_key;
1169 		if(sbp_cmd_status->mark)
1170 			sense->flags |= SSD_FILEMARK;
1171 		if(sbp_cmd_status->eom)
1172 			sense->flags |= SSD_EOM;
1173 		if(sbp_cmd_status->ill_len)
1174 			sense->flags |= SSD_ILI;
1175 		sense->info[0] = ntohl(sbp_cmd_status->info) & 0xff;
1176 		sense->info[1] =(ntohl(sbp_cmd_status->info) >> 8) & 0xff;
1177 		sense->info[2] =(ntohl(sbp_cmd_status->info) >> 16) & 0xff;
1178 		sense->info[3] =(ntohl(sbp_cmd_status->info) >> 24) & 0xff;
1179 		if (sbp_status->len <= 1)
1180 			/* XXX not scsi status. shouldn't be happened */
1181 			sense->extra_len = 0;
1182 		else if (sbp_status->len <= 4)
1183 			/* add_sense_code(_qual), info, cmd_spec_info */
1184 			sense->extra_len = 6;
1185 		else
1186 			/* fru, sense_key_spec */
1187 			sense->extra_len = 10;
1188 		sense->cmd_spec_info[0] = ntohl(sbp_cmd_status->cdb) & 0xff;
1189 		sense->cmd_spec_info[1] = (ntohl(sbp_cmd_status->cdb) >> 8) & 0xff;
1190 		sense->cmd_spec_info[2] = (ntohl(sbp_cmd_status->cdb) >> 16) & 0xff;
1191 		sense->cmd_spec_info[3] = (ntohl(sbp_cmd_status->cdb) >> 24) & 0xff;
1192 		sense->add_sense_code = sbp_cmd_status->s_code;
1193 		sense->add_sense_code_qual = sbp_cmd_status->s_qlfr;
1194 		sense->fru = sbp_cmd_status->fru;
1195 		sense->sense_key_spec[0] = ntohl(sbp_cmd_status->s_keydep) & 0xff;
1196 		sense->sense_key_spec[1] = (ntohl(sbp_cmd_status->s_keydep) >>8) & 0xff;
1197 		sense->sense_key_spec[2] = (ntohl(sbp_cmd_status->s_keydep) >>16) & 0xff;
1198 
1199 		ocb->ccb->csio.scsi_status = sbp_cmd_status->status;;
1200 		ocb->ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR
1201 							| CAM_AUTOSNS_VALID;
1202 /*
1203 {
1204 		u_int8_t j, *tmp;
1205 		tmp = sense;
1206 		for( j = 0 ; j < 32 ; j+=8){
1207 			printf("sense %02x%02x %02x%02x %02x%02x %02x%02x\n",
1208 				tmp[j], tmp[j+1], tmp[j+2], tmp[j+3],
1209 				tmp[j+4], tmp[j+5], tmp[j+6], tmp[j+7]);
1210 		}
1211 
1212 }
1213 */
1214 	} else {
1215 		printf("sbp_scsi_status: unknown scsi status\n");
1216 	}
1217 }
1218 
1219 static void
1220 sbp_fix_inq_data(struct sbp_ocb *ocb)
1221 {
1222 	union ccb *ccb;
1223 	struct sbp_dev *sdev;
1224 	struct scsi_inquiry_data *inq;
1225 
1226 	ccb = ocb->ccb;
1227 	sdev = ocb->sdev;
1228 
1229 	if (ccb->csio.cdb_io.cdb_bytes[1] & SI_EVPD)
1230 		return;
1231 SBP_DEBUG(1)
1232 	sbp_show_sdev_info(sdev, 2);
1233 	printf("sbp_fix_inq_data\n");
1234 END_DEBUG
1235 	inq = (struct scsi_inquiry_data *) ccb->csio.data_ptr;
1236 	switch (SID_TYPE(inq)) {
1237 	case T_DIRECT:
1238 		/*
1239 		 * XXX Convert Direct Access device to RBC.
1240 		 * I've never seen FireWire DA devices which support READ_6.
1241 		 */
1242 #if 1
1243 		if (SID_TYPE(inq) == T_DIRECT)
1244 			inq->device |= T_RBC; /*  T_DIRECT == 0 */
1245 #endif
1246 		/* fall through */
1247 	case T_RBC:
1248 		/* disable tag queuing */
1249 		inq->flags &= ~SID_CmdQue;
1250 		/*
1251 		 * Override vendor/product/revision information.
1252 		 * Some devices sometimes return strange strings.
1253 		 */
1254 		bcopy(sdev->vendor, inq->vendor, sizeof(inq->vendor));
1255 		bcopy(sdev->product, inq->product, sizeof(inq->product));
1256 		bcopy(sdev->revision+2, inq->revision, sizeof(inq->revision));
1257 		break;
1258 	}
1259 }
1260 
1261 static void
1262 sbp_recv1(struct fw_xfer *xfer){
1263 	struct fw_pkt *rfp;
1264 #if NEED_RESPONSE
1265 	struct fw_pkt *sfp;
1266 #endif
1267 	struct sbp_softc *sbp;
1268 	struct sbp_dev *sdev;
1269 	struct sbp_ocb *ocb;
1270 	struct sbp_login_res *login_res = NULL;
1271 	struct sbp_status *sbp_status;
1272 	struct sbp_target *target;
1273 	int	orb_fun, status_valid;
1274 	u_int32_t addr;
1275 /*
1276 	u_int32_t *ld;
1277 	ld = xfer->recv.buf;
1278 printf("sbp %x %d %d %08x %08x %08x %08x\n",
1279 			xfer->resp, xfer->recv.len, xfer->recv.off, ntohl(ld[0]), ntohl(ld[1]), ntohl(ld[2]), ntohl(ld[3]));
1280 printf("sbp %08x %08x %08x %08x\n", ntohl(ld[4]), ntohl(ld[5]), ntohl(ld[6]), ntohl(ld[7]));
1281 printf("sbp %08x %08x %08x %08x\n", ntohl(ld[8]), ntohl(ld[9]), ntohl(ld[10]), ntohl(ld[11]));
1282 */
1283 	if(xfer->resp != 0){
1284 		printf("sbp_recv: xfer->resp != 0\n");
1285 		fw_xfer_free( xfer);
1286 		return;
1287 	}
1288 	if(xfer->recv.buf == NULL){
1289 		printf("sbp_recv: xfer->recv.buf == NULL\n");
1290 		fw_xfer_free( xfer);
1291 		return;
1292 	}
1293 	sbp = (struct sbp_softc *)xfer->sc;
1294 	rfp = (struct fw_pkt *)xfer->recv.buf;
1295 	if(rfp->mode.wreqb.tcode != FWTCODE_WREQB){
1296 		printf("sbp_recv: tcode = %d\n", rfp->mode.wreqb.tcode);
1297 		fw_xfer_free( xfer);
1298 		return;
1299 	}
1300 	sbp_status = (struct sbp_status *)rfp->mode.wreqb.payload;
1301 	addr = ntohl(rfp->mode.wreqb.dest_lo);
1302 SBP_DEBUG(2)
1303 	printf("received address 0x%x\n", addr);
1304 END_DEBUG
1305 	target = &sbp->targets[SBP_ADDR2TRG(addr)];
1306 	sdev = &target->luns[SBP_ADDR2LUN(addr)];
1307 
1308 	status_valid = (sbp_status->resp == ORB_RES_CMPL
1309 			&& sbp_status->dead == 0
1310 			&& sbp_status->status == 0);
1311 
1312 SBP_DEBUG(0)
1313 	if (!status_valid || debug > 1){
1314 		int status;
1315 
1316 		sbp_show_sdev_info(sdev, 2);
1317 		printf("ORB status src:%x resp:%x dead:%x"
1318 #if __FreeBSD_version >= 500000
1319 				" len:%x stat:%x orb:%x%08x\n",
1320 #else
1321 				" len:%x stat:%x orb:%x%08lx\n",
1322 #endif
1323 			sbp_status->src, sbp_status->resp, sbp_status->dead,
1324 			sbp_status->len, sbp_status->status,
1325 			ntohs(sbp_status->orb_hi), ntohl(sbp_status->orb_lo));
1326 		sbp_show_sdev_info(sdev, 2);
1327 		status = sbp_status->status;
1328 		switch(sbp_status->resp) {
1329 		case 0:
1330 			if (status > MAX_ORB_STATUS0)
1331 				printf("%s\n", orb_status0[MAX_ORB_STATUS0]);
1332 			else
1333 				printf("%s\n", orb_status0[status]);
1334 			break;
1335 		case 1:
1336 			printf("Object: %s, Serial Bus Error: %s\n",
1337 				orb_status1_object[(status>>6) & 3],
1338 				orb_status1_serial_bus_error[status & 0xf]);
1339 			break;
1340 		default:
1341 			printf("unknown respose code\n");
1342 		}
1343 	}
1344 END_DEBUG
1345 	ocb = sbp_dequeue_ocb(sdev, ntohl(sbp_status->orb_lo));
1346 
1347 	/* we have to reset the fetch agent if it's dead */
1348 	if (sbp_status->dead) {
1349 		if (sdev->path)
1350 			xpt_freeze_devq(sdev->path, 1);
1351 		sbp_agent_reset(sdev, 0);
1352 	}
1353 
1354 
1355 	if (ocb == NULL) {
1356 		printf("No ocb on the queue for target %d.\n", sdev->target->target_id);
1357 		fw_xfer_free( xfer);
1358 		return;
1359 	}
1360 
1361 	switch(ntohl(ocb->orb[4]) & ORB_FMT_MSK){
1362 	case ORB_FMT_NOP:
1363 		break;
1364 	case ORB_FMT_VED:
1365 		break;
1366 	case ORB_FMT_STD:
1367 		switch(ocb->flags & OCB_ACT_MASK){
1368 		case OCB_ACT_MGM:
1369 			orb_fun = ntohl(ocb->orb[4]) & ORB_FUN_MSK;
1370 			switch(orb_fun) {
1371 			case ORB_FUN_LGI:
1372 				login_res = &sdev->login;
1373 				login_res->len = ntohs(login_res->len);
1374 				login_res->id = ntohs(login_res->id);
1375 				login_res->cmd_hi = ntohs(login_res->cmd_hi);
1376 				login_res->cmd_lo = ntohl(login_res->cmd_lo);
1377 				if (status_valid) {
1378 SBP_DEBUG(0)
1379 sbp_show_sdev_info(sdev, 2);
1380 printf("login: len %d, ID %d, cmd %08x%08x, recon_hold %d\n", login_res->len, login_res->id, login_res->cmd_hi, login_res->cmd_lo, ntohs(login_res->recon_hold));
1381 END_DEBUG
1382 #if 1
1383 					sbp_busy_timeout(sdev);
1384 #else
1385 					sbp_mgm_orb(sdev, ORB_FUN_ATS);
1386 #endif
1387 				} else {
1388 					/* forgot logout ? */
1389 					printf("login failed\n");
1390 					sdev->status = SBP_DEV_RESET;
1391 				}
1392 				break;
1393 			case ORB_FUN_RCN:
1394 				login_res = &sdev->login;
1395 				if (status_valid) {
1396 					sdev->status = SBP_DEV_ATTACHED;
1397 SBP_DEBUG(0)
1398 sbp_show_sdev_info(sdev, 2);
1399 printf("reconnect: len %d, ID %d, cmd %08x%08x\n", login_res->len, login_res->id, login_res->cmd_hi, login_res->cmd_lo);
1400 END_DEBUG
1401 #if 1
1402 					sbp_ping_unit(sdev);
1403 					xpt_release_devq(sdev->path, 1, TRUE);
1404 #else
1405 					sbp_mgm_orb(sdev, ORB_FUN_ATS);
1406 #endif
1407 				} else {
1408 					/* reconnection hold time exceed? */
1409 					printf("reconnect failed\n");
1410 					sbp_mgm_orb(sdev, ORB_FUN_LGI);
1411 				}
1412 				break;
1413 			case ORB_FUN_LGO:
1414 				sdev->status = SBP_DEV_RESET;
1415 				break;
1416 			case ORB_FUN_LUR:
1417 			case ORB_FUN_RST:
1418 			case ORB_FUN_ATA:
1419 			case ORB_FUN_ATS:
1420 				if (sdev->status == SBP_DEV_ATTACHED) {
1421 					xpt_release_devq(sdev->path, 1, TRUE);
1422 				} else {
1423 					sbp_busy_timeout(sdev);
1424 				}
1425 				break;
1426 			default:
1427 				break;
1428 			}
1429 			break;
1430 		case OCB_ACT_CMD:
1431 			if(ocb->ccb != NULL){
1432 				union ccb *ccb;
1433 /*
1434 				u_int32_t *ld;
1435 				ld = ocb->ccb->csio.data_ptr;
1436 				if(ld != NULL && ocb->ccb->csio.dxfer_len != 0)
1437 					printf("ptr %08x %08x %08x %08x\n", ld[0], ld[1], ld[2], ld[3]);
1438 				else
1439 					printf("ptr NULL\n");
1440 printf("len %d\n", sbp_status->len);
1441 */
1442 				ccb = ocb->ccb;
1443 				if(sbp_status->len > 1){
1444 					sbp_scsi_status(sbp_status, ocb);
1445 				}else{
1446 					if(sbp_status->resp != ORB_RES_CMPL){
1447 						ccb->ccb_h.status = CAM_REQ_CMP_ERR;
1448 					}else{
1449 						ccb->ccb_h.status = CAM_REQ_CMP;
1450 					}
1451 				}
1452 				/* fix up inq data */
1453 				if (ccb->csio.cdb_io.cdb_bytes[0] == INQUIRY)
1454 					sbp_fix_inq_data(ocb);
1455 				xpt_done(ccb);
1456 			}
1457 			break;
1458 		default:
1459 			break;
1460 		}
1461 	}
1462 
1463 	if (!(ocb->flags & OCB_RESERVED))
1464 		sbp_free_ocb(sbp, ocb);
1465 
1466 /* The received packet is usually small enough to be stored within
1467  * the buffer. In that case, the controller return ack_complete and
1468  * no respose is necessary.
1469  *
1470  * XXX fwohci.c and firewire.c should inform event_code such as
1471  * ack_complete or ack_pending to upper driver.
1472  */
1473 #if NEED_RESPONSE
1474 	xfer->send.buf = malloc(12, M_SBP, M_NOWAIT | M_ZERO);
1475 	xfer->send.len = 12;
1476 	xfer->send.off = 0;
1477 	sfp = (struct fw_pkt *)xfer->send.buf;
1478 	sfp->mode.wres.dst = rfp->mode.wreqb.src;
1479 	xfer->dst = ntohs(sfp->mode.wres.dst);
1480 	xfer->spd = min(sdev->target->fwdev->speed, max_speed);
1481 	xfer->act.hand = sbp_loginres_callback;
1482 	xfer->retry_req = fw_asybusy;
1483 
1484 	sfp->mode.wres.tlrt = rfp->mode.wreqb.tlrt;
1485 	sfp->mode.wres.tcode = FWTCODE_WRES;
1486 	sfp->mode.wres.rtcode = 0;
1487 	sfp->mode.wres.pri = 0;
1488 
1489 	fw_asyreq(xfer->fc, -1, xfer);
1490 #else
1491 	fw_xfer_free(xfer);
1492 #endif
1493 
1494 	return;
1495 
1496 }
1497 
1498 static void
1499 sbp_recv(struct fw_xfer *xfer)
1500 {
1501 	int s;
1502 
1503 	s = splcam();
1504 	sbp_recv1(xfer);
1505 	splx(s);
1506 }
1507 /*
1508  * sbp_attach()
1509  */
1510 static int
1511 sbp_attach(device_t dev)
1512 {
1513 	struct sbp_softc *sbp;
1514 	struct cam_devq *devq;
1515 	struct fw_xfer *xfer;
1516 	int i, s, error;
1517 
1518 SBP_DEBUG(0)
1519 	printf("sbp_attach\n");
1520 END_DEBUG
1521 
1522 	sbp = ((struct sbp_softc *)device_get_softc(dev));
1523 	bzero(sbp, sizeof(struct sbp_softc));
1524 	sbp->fd.dev = dev;
1525 	sbp->fd.fc = device_get_ivars(dev);
1526 	error = bus_dma_tag_create(/*parent*/NULL, /*alignment*/1,
1527 				/*boundary*/0,
1528 				/*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
1529 				/*highaddr*/BUS_SPACE_MAXADDR,
1530 				/*filter*/NULL, /*filterarg*/NULL,
1531 				/*maxsize*/0x100000, /*nsegments*/SBP_IND_MAX,
1532 				/*maxsegsz*/0x8000,
1533 				/*flags*/BUS_DMA_ALLOCNOW,
1534 				&sbp->dmat);
1535 	if (error != 0) {
1536 		printf("sbp_attach: Could not allocate DMA tag "
1537 			"- error %d\n", error);
1538 			return (ENOMEM);
1539 	}
1540 
1541 	devq = cam_simq_alloc(/*maxopenings*/SBP_NUM_OCB);
1542 	if (devq == NULL)
1543 		return (ENXIO);
1544 
1545 	for( i = 0 ; i < SBP_NUM_TARGETS ; i++){
1546 		sbp->targets[i].fwdev = NULL;
1547 		sbp->targets[i].luns = NULL;
1548 	}
1549 
1550 	sbp->sim = cam_sim_alloc(sbp_action, sbp_poll, "sbp", sbp,
1551 				 device_get_unit(dev),
1552 				 /*untagged*/ SBP_QUEUE_LEN,
1553 				 /*tagged*/0, devq);
1554 
1555 	if (sbp->sim == NULL) {
1556 		cam_simq_free(devq);
1557 		return (ENXIO);
1558 	}
1559 
1560 	sbp->ocb = (struct sbp_ocb *) contigmalloc(
1561 		sizeof (struct sbp_ocb) * SBP_NUM_OCB,
1562 		M_SBP, M_NOWAIT, 0x10000, 0xffffffff, PAGE_SIZE, 0ul);
1563 	bzero(sbp->ocb, sizeof (struct sbp_ocb) * SBP_NUM_OCB);
1564 
1565 	if (sbp->ocb == NULL) {
1566 		printf("sbp0: ocb alloction failure\n");
1567 		return (ENOMEM);
1568 	}
1569 
1570 	STAILQ_INIT(&sbp->free_ocbs);
1571 	for (i = 0; i < SBP_NUM_OCB; i++) {
1572 		sbp_free_ocb(sbp, &sbp->ocb[i]);
1573 	}
1574 
1575 	if (xpt_bus_register(sbp->sim, /*bus*/0) != CAM_SUCCESS) {
1576 		cam_sim_free(sbp->sim, /*free_devq*/TRUE);
1577 		contigfree(sbp->ocb, sizeof (struct sbp_ocb) * SBP_NUM_OCB,
1578 									M_SBP);
1579 		return (ENXIO);
1580 	}
1581 
1582 	xfer = fw_xfer_alloc();
1583 	xfer->act.hand = sbp_recv;
1584 	xfer->act_type = FWACT_XFER;
1585 #if NEED_RESPONSE
1586 	xfer->fc = sbp->fd.fc;
1587 #endif
1588 	xfer->sc = (caddr_t)sbp;
1589 
1590 	sbp->fwb.start_hi = SBP_BIND_HI;
1591 	sbp->fwb.start_lo = SBP_DEV2ADDR(device_get_unit(sbp->fd.dev), 0, 0);
1592 	/* We reserve 16 bit space (4 bytes X 64 targets X 256 luns) */
1593 	sbp->fwb.addrlen = 0xffff;
1594 	sbp->fwb.xfer = xfer;
1595 	fw_bindadd(sbp->fd.fc, &sbp->fwb);
1596 
1597 	sbp->fd.post_explore = sbp_post_explore;
1598 	s = splfw();
1599 	sbp_post_explore((void *)sbp);
1600 	splx(s);
1601 
1602 	return (0);
1603 }
1604 
1605 static int
1606 sbp_detach(device_t dev)
1607 {
1608 	struct sbp_softc *sbp = ((struct sbp_softc *)device_get_softc(dev));
1609 	struct firewire_comm *fc = sbp->fd.fc;
1610 	int i;
1611 
1612 SBP_DEBUG(0)
1613 	printf("sbp_detach\n");
1614 END_DEBUG
1615 
1616 	/* bus reset for logout */
1617 	sbp->fd.post_explore = NULL;
1618 	fc->ibr(fc);
1619 
1620 	contigfree(sbp->ocb, sizeof (struct sbp_ocb) * SBP_NUM_OCB, M_SBP);
1621 	fw_bindremove(fc, &sbp->fwb);
1622 	for (i = 0; i < SBP_NUM_TARGETS; i ++)
1623 		sbp_detach_target(&sbp->targets[i]);
1624 	xpt_bus_deregister(cam_sim_path(sbp->sim));
1625 	bus_dma_tag_destroy(sbp->dmat);
1626 	return (0);
1627 }
1628 
1629 static void
1630 sbp_detach_target(struct sbp_target *target)
1631 {
1632 	int i;
1633 	struct sbp_dev *sdev;
1634 
1635 	if (target->luns != NULL) {
1636 SBP_DEBUG(0)
1637 		printf("sbp_detach_target %d\n", target->target_id);
1638 END_DEBUG
1639 		for (i=0; i < target->num_lun; i++) {
1640 			sdev = &target->luns[i];
1641 			if (sdev->status == SBP_DEV_RESET ||
1642 					sdev->status == SBP_DEV_DEAD)
1643 				continue;
1644 			if (sdev->path)
1645 				xpt_async(AC_LOST_DEVICE, sdev->path, NULL);
1646 			xpt_free_path(sdev->path);
1647 			sdev->path = NULL;
1648 			sbp_abort_all_ocbs(sdev, CAM_DEV_NOT_THERE);
1649 		}
1650 		free(target->luns, M_SBP);
1651 		target->luns = NULL;
1652 	}
1653 	target->fwdev = NULL;
1654 }
1655 
1656 static void
1657 sbp_timeout(void *arg)
1658 {
1659 	struct sbp_ocb *ocb = (struct sbp_ocb *)arg;
1660 	struct sbp_dev *sdev = ocb->sdev;
1661 	int s;
1662 
1663 	sbp_show_sdev_info(sdev, 2);
1664 	printf("request timeout ... requeue\n");
1665 
1666 	/* XXX need reset? */
1667 
1668 	s = splfw();
1669 	sbp_abort_all_ocbs(sdev, CAM_CMD_TIMEOUT);
1670 	splx(s);
1671 	return;
1672 }
1673 
1674 static void
1675 sbp_action1(struct cam_sim *sim, union ccb *ccb)
1676 {
1677 
1678 	struct sbp_softc *sbp = (struct sbp_softc *)sim->softc;
1679 	struct sbp_target *target = NULL;
1680 	struct sbp_dev *sdev = NULL;
1681 
1682 	/* target:lun -> sdev mapping */
1683 	if (sbp != NULL
1684 			&& ccb->ccb_h.target_id != CAM_TARGET_WILDCARD
1685 			&& ccb->ccb_h.target_id < SBP_NUM_TARGETS) {
1686 		target = &sbp->targets[ccb->ccb_h.target_id];
1687 		if (target->fwdev != NULL
1688 				&& ccb->ccb_h.target_lun != CAM_LUN_WILDCARD
1689 				&& ccb->ccb_h.target_lun < target->num_lun) {
1690 			sdev = &target->luns[ccb->ccb_h.target_lun];
1691 			if (sdev->status != SBP_DEV_ATTACHED &&
1692 				sdev->status != SBP_DEV_PROBE)
1693 				sdev = NULL;
1694 		}
1695 	}
1696 
1697 SBP_DEBUG(1)
1698 	if (sdev == NULL)
1699 		printf("invalid target %d lun %d\n",
1700 			ccb->ccb_h.target_id, ccb->ccb_h.target_lun);
1701 END_DEBUG
1702 
1703 	switch (ccb->ccb_h.func_code) {
1704 	case XPT_SCSI_IO:
1705 	case XPT_RESET_DEV:
1706 	case XPT_GET_TRAN_SETTINGS:
1707 	case XPT_SET_TRAN_SETTINGS:
1708 	case XPT_CALC_GEOMETRY:
1709 		if (sdev == NULL) {
1710 SBP_DEBUG(1)
1711 			printf("%s:%d:%d:func_code 0x%04x: "
1712 				"Invalid target (target needed)\n",
1713 				device_get_nameunit(sbp->fd.dev),
1714 				ccb->ccb_h.target_id, ccb->ccb_h.target_lun,
1715 				ccb->ccb_h.func_code);
1716 END_DEBUG
1717 
1718 			ccb->ccb_h.status = CAM_DEV_NOT_THERE;
1719 			xpt_done(ccb);
1720 			return;
1721 		}
1722 		break;
1723 	case XPT_PATH_INQ:
1724 	case XPT_NOOP:
1725 		/* The opcodes sometimes aimed at a target (sc is valid),
1726 		 * sometimes aimed at the SIM (sc is invalid and target is
1727 		 * CAM_TARGET_WILDCARD)
1728 		 */
1729 		if (sbp == NULL &&
1730 			ccb->ccb_h.target_id != CAM_TARGET_WILDCARD) {
1731 SBP_DEBUG(0)
1732 			printf("%s:%d:%d func_code 0x%04x: "
1733 				"Invalid target (no wildcard)\n",
1734 				device_get_nameunit(sbp->fd.dev),
1735 				ccb->ccb_h.target_id, ccb->ccb_h.target_lun,
1736 				ccb->ccb_h.func_code);
1737 END_DEBUG
1738 			ccb->ccb_h.status = CAM_DEV_NOT_THERE;
1739 			xpt_done(ccb);
1740 			return;
1741 		}
1742 		break;
1743 	default:
1744 		/* XXX Hm, we should check the input parameters */
1745 		break;
1746 	}
1747 
1748 	switch (ccb->ccb_h.func_code) {
1749 	case XPT_SCSI_IO:
1750 	{
1751 		struct ccb_scsiio *csio;
1752 		struct sbp_ocb *ocb;
1753 		int s, speed;
1754 		void *cdb;
1755 
1756 		csio = &ccb->csio;
1757 
1758 SBP_DEBUG(1)
1759 		printf("%s:%d:%d XPT_SCSI_IO: "
1760 			"cmd: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x"
1761 			", flags: 0x%02x, "
1762 			"%db cmd/%db data/%db sense\n",
1763 			device_get_nameunit(sbp->fd.dev),
1764 			ccb->ccb_h.target_id, ccb->ccb_h.target_lun,
1765 			csio->cdb_io.cdb_bytes[0],
1766 			csio->cdb_io.cdb_bytes[1],
1767 			csio->cdb_io.cdb_bytes[2],
1768 			csio->cdb_io.cdb_bytes[3],
1769 			csio->cdb_io.cdb_bytes[4],
1770 			csio->cdb_io.cdb_bytes[5],
1771 			csio->cdb_io.cdb_bytes[6],
1772 			csio->cdb_io.cdb_bytes[7],
1773 			csio->cdb_io.cdb_bytes[8],
1774 			csio->cdb_io.cdb_bytes[9],
1775 			ccb->ccb_h.flags & CAM_DIR_MASK,
1776 			csio->cdb_len, csio->dxfer_len,
1777 			csio->sense_len);
1778 END_DEBUG
1779 		if(sdev == NULL){
1780 			ccb->ccb_h.status = CAM_DEV_NOT_THERE;
1781 			xpt_done(ccb);
1782 			return;
1783 		}
1784 #if 0
1785 		/* if we are in probe stage, pass only probe commands */
1786 		if (sdev->status == SBP_DEV_PROBE) {
1787 			char *name;
1788 			name = xpt_path_periph(ccb->ccb_h.path)->periph_name;
1789 			printf("probe stage, periph name: %s\n", name);
1790 			if (strcmp(name, "probe") != 0) {
1791 				ccb->ccb_h.status = CAM_REQUEUE_REQ;
1792 				xpt_done(ccb);
1793 				return;
1794 			}
1795 		}
1796 #endif
1797 		if ((ocb = sbp_get_ocb(sbp)) == NULL) {
1798 			s = splfw();
1799 			sbp->flags |= SBP_RESOURCE_SHORTAGE;
1800 			splx(s);
1801 			return;
1802 		}
1803 		ocb->flags = OCB_ACT_CMD;
1804 		ocb->sdev = sdev;
1805 		ocb->ccb = ccb;
1806 		ccb->ccb_h.ccb_sdev_ptr = sdev;
1807 		ocb->orb[0] = htonl(1 << 31);
1808 		ocb->orb[1] = 0;
1809 		ocb->orb[2] = htonl(((sbp->fd.fc->nodeid | FWLOCALBUS )<< 16) );
1810 		ocb->orb[3] = htonl(vtophys(ocb->ind_ptr));
1811 		speed = min(target->fwdev->speed, max_speed);
1812 		ocb->orb[4] = htonl(ORB_NOTIFY | ORB_CMD_SPD(speed)
1813 						| ORB_CMD_MAXP(speed + 7));
1814 		if((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN){
1815 			ocb->orb[4] |= htonl(ORB_CMD_IN);
1816 		}
1817 
1818 		if (csio->ccb_h.flags & CAM_SCATTER_VALID)
1819 			printf("sbp: CAM_SCATTER_VALID\n");
1820 		if (csio->ccb_h.flags & CAM_DATA_PHYS)
1821 			printf("sbp: CAM_DATA_PHYS\n");
1822 
1823 		if (csio->ccb_h.flags & CAM_CDB_POINTER)
1824 			cdb = (void *)csio->cdb_io.cdb_ptr;
1825 		else
1826 			cdb = (void *)&csio->cdb_io.cdb_bytes;
1827 		bcopy(cdb,
1828 			(void *)(uintptr_t)(volatile void *)&ocb->orb[5],
1829 				csio->cdb_len);
1830 /*
1831 printf("ORB %08x %08x %08x %08x\n", ntohl(ocb->orb[0]), ntohl(ocb->orb[1]), ntohl(ocb->orb[2]), ntohl(ocb->orb[3]));
1832 printf("ORB %08x %08x %08x %08x\n", ntohl(ocb->orb[4]), ntohl(ocb->orb[5]), ntohl(ocb->orb[6]), ntohl(ocb->orb[7]));
1833 */
1834 		if (ccb->csio.dxfer_len > 0) {
1835 			int s;
1836 
1837 			if (bus_dmamap_create(sbp->dmat, 0, &ocb->dmamap)) {
1838 				printf("sbp_action1: cannot create dmamap\n");
1839 				break;
1840 			}
1841 
1842 			s = splsoftvm();
1843 			bus_dmamap_load(/*dma tag*/sbp->dmat,
1844 					/*dma map*/ocb->dmamap,
1845 					ccb->csio.data_ptr,
1846 					ccb->csio.dxfer_len,
1847 					sbp_execute_ocb,
1848 					ocb,
1849 					/*flags*/0);
1850 			splx(s);
1851 		} else
1852 			sbp_execute_ocb(ocb, NULL, 0, 0);
1853 		break;
1854 	}
1855 	case XPT_CALC_GEOMETRY:
1856 	{
1857 		struct ccb_calc_geometry *ccg;
1858 		u_int32_t size_mb;
1859 		u_int32_t secs_per_cylinder;
1860 		int extended = 1;
1861 		ccg = &ccb->ccg;
1862 
1863 		if (ccg->block_size == 0) {
1864 			printf("sbp_action1: block_size is 0.\n");
1865 			ccb->ccb_h.status = CAM_REQ_INVALID;
1866 			xpt_done(ccb);
1867 			break;
1868 		}
1869 SBP_DEBUG(1)
1870 		printf("%s:%d:%d:%d:XPT_CALC_GEOMETRY: "
1871 			"Volume size = %d\n",
1872 			device_get_nameunit(sbp->fd.dev), cam_sim_path(sbp->sim),
1873 			ccb->ccb_h.target_id, ccb->ccb_h.target_lun,
1874 			ccg->volume_size);
1875 END_DEBUG
1876 
1877 		size_mb = ccg->volume_size
1878 			/ ((1024L * 1024L) / ccg->block_size);
1879 
1880 		if (size_mb >= 1024 && extended) {
1881 			ccg->heads = 255;
1882 			ccg->secs_per_track = 63;
1883 		} else {
1884 			ccg->heads = 64;
1885 			ccg->secs_per_track = 32;
1886 		}
1887 		secs_per_cylinder = ccg->heads * ccg->secs_per_track;
1888 		ccg->cylinders = ccg->volume_size / secs_per_cylinder;
1889 		ccb->ccb_h.status = CAM_REQ_CMP;
1890 		xpt_done(ccb);
1891 		break;
1892 	}
1893 	case XPT_RESET_BUS:		/* Reset the specified SCSI bus */
1894 	{
1895 
1896 SBP_DEBUG(1)
1897 		printf("%s:%d:XPT_RESET_BUS: \n",
1898 			device_get_nameunit(sbp->fd.dev), cam_sim_path(sbp->sim));
1899 END_DEBUG
1900 
1901 		ccb->ccb_h.status = CAM_REQ_INVALID;
1902 		xpt_done(ccb);
1903 		break;
1904 	}
1905 	case XPT_PATH_INQ:		/* Path routing inquiry */
1906 	{
1907 		struct ccb_pathinq *cpi = &ccb->cpi;
1908 
1909 SBP_DEBUG(1)
1910 		printf("%s:%d:%d XPT_PATH_INQ:.\n",
1911 			device_get_nameunit(sbp->fd.dev),
1912 			ccb->ccb_h.target_id, ccb->ccb_h.target_lun);
1913 END_DEBUG
1914 		cpi->version_num = 1; /* XXX??? */
1915 		cpi->hba_inquiry = 0;
1916 		cpi->target_sprt = 0;
1917 		cpi->hba_misc = 0;
1918 		cpi->hba_eng_cnt = 0;
1919 		cpi->max_target = SBP_NUM_TARGETS - 1;
1920 		cpi->max_lun = SBP_NUM_LUNS - 1;
1921 		cpi->initiator_id = SBP_INITIATOR;
1922 		cpi->bus_id = sim->bus_id;
1923 		cpi->base_transfer_speed = 400 * 1000 / 8;
1924 		strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
1925 		strncpy(cpi->hba_vid, "SBP", HBA_IDLEN);
1926 		strncpy(cpi->dev_name, sim->sim_name, DEV_IDLEN);
1927 		cpi->unit_number = sim->unit_number;
1928 
1929 		cpi->ccb_h.status = CAM_REQ_CMP;
1930 		xpt_done(ccb);
1931 		break;
1932 	}
1933 	case XPT_GET_TRAN_SETTINGS:
1934 	{
1935 		struct ccb_trans_settings *cts = &ccb->cts;
1936 SBP_DEBUG(1)
1937 		printf("%s:%d:%d XPT_GET_TRAN_SETTINGS:.\n",
1938 			device_get_nameunit(sbp->fd.dev),
1939 			ccb->ccb_h.target_id, ccb->ccb_h.target_lun);
1940 END_DEBUG
1941 		/* Disable disconnect and tagged queuing */
1942 		cts->valid = CCB_TRANS_DISC_VALID | CCB_TRANS_TQ_VALID;
1943 		cts->flags = 0;
1944 
1945 		cts->ccb_h.status = CAM_REQ_CMP;
1946 		xpt_done(ccb);
1947 		break;
1948 	}
1949 	case XPT_ABORT:
1950 		ccb->ccb_h.status = CAM_UA_ABORT;
1951 		xpt_done(ccb);
1952 		break;
1953 	default:
1954 		ccb->ccb_h.status = CAM_REQ_INVALID;
1955 		xpt_done(ccb);
1956 		break;
1957 	}
1958 	return;
1959 }
1960 
1961 static void
1962 sbp_action(struct cam_sim *sim, union ccb *ccb)
1963 {
1964 	int s;
1965 
1966 	s = splfw();
1967 	sbp_action1(sim, ccb);
1968 	splx(s);
1969 }
1970 
1971 static void
1972 sbp_execute_ocb(void *arg,  bus_dma_segment_t *segments, int seg, int error)
1973 {
1974 	int i;
1975 	struct sbp_ocb *ocb;
1976 	struct sbp_ocb *prev;
1977 	union ccb *ccb;
1978 	bus_dma_segment_t *s;
1979 
1980 	if (error)
1981 		printf("sbp_execute_ocb: error=%d\n", error);
1982 
1983 	ocb = (struct sbp_ocb *)arg;
1984 	if (seg == 1) {
1985 		/* direct pointer */
1986 		ocb->orb[3] = htonl(segments[0].ds_addr);
1987 		ocb->orb[4] |= htonl(segments[0].ds_len);
1988 	} else if(seg > 1) {
1989 		/* page table */
1990 SBP_DEBUG(1)
1991 		printf("sbp_execute_ocb: seg %d", seg);
1992 		for (i = 0; i < seg; i++)
1993 #if __FreeBSD_version >= 500000
1994 			printf(", %tx:%zd", segments[i].ds_addr,
1995 #else
1996 			printf(", %x:%d", segments[i].ds_addr,
1997 #endif
1998 						segments[i].ds_len);
1999 		printf("\n");
2000 END_DEBUG
2001 		for (i = 0; i < seg; i++) {
2002 			s = &segments[i];
2003 SBP_DEBUG(0)
2004 			/* XXX LSI Logic "< 16 byte" bug might be hit */
2005 			if (s->ds_len < 16)
2006 				printf("sbp_execute_ocb: warning, "
2007 #if __FreeBSD_version >= 500000
2008 					"segment length(%zd) is less than 16."
2009 #else
2010 					"segment length(%d) is less than 16."
2011 #endif
2012 					"(seg=%d/%d)\n", s->ds_len, i+1, seg);
2013 END_DEBUG
2014 			ocb->ind_ptr[i].hi = htonl(s->ds_len << 16);
2015 			ocb->ind_ptr[i].lo = htonl(s->ds_addr);
2016 		}
2017 		ocb->orb[4] |= htonl(ORB_CMD_PTBL | seg);
2018 	}
2019 
2020 	ccb = ocb->ccb;
2021 	prev = sbp_enqueue_ocb(ocb->sdev, ocb);
2022 	if (prev)
2023 		sbp_doorbell(ocb->sdev);
2024 	else
2025 		sbp_orb_pointer(ocb->sdev, ocb);
2026 }
2027 
2028 static void
2029 sbp_poll(struct cam_sim *sim)
2030 {
2031 	/* should call fwohci_intr? */
2032 	return;
2033 }
2034 static struct sbp_ocb *
2035 sbp_dequeue_ocb(struct sbp_dev *sdev, u_int32_t orb_lo)
2036 {
2037 	struct sbp_ocb *ocb;
2038 	struct sbp_ocb *next;
2039 	int s = splfw(), order = 0;
2040 	int flags;
2041 
2042 	for (ocb = STAILQ_FIRST(&sdev->ocbs); ocb != NULL; ocb = next) {
2043 		next = STAILQ_NEXT(ocb, ocb);
2044 		flags = ocb->flags;
2045 SBP_DEBUG(1)
2046 #if __FreeBSD_version >= 500000
2047 		printf("orb: 0x%tx next: 0x%x, flags %x\n",
2048 #else
2049 		printf("orb: 0x%x next: 0x%lx, flags %x\n",
2050 #endif
2051 			vtophys(&ocb->orb[0]), ntohl(ocb->orb[1]), flags);
2052 END_DEBUG
2053 		if (vtophys(&ocb->orb[0]) == orb_lo) {
2054 			/* found */
2055 			if (ocb->flags & OCB_RESERVED)
2056 				ocb->flags |= OCB_DONE;
2057 			else
2058 				STAILQ_REMOVE(&sdev->ocbs, ocb, sbp_ocb, ocb);
2059 			if (ocb->ccb != NULL)
2060 				untimeout(sbp_timeout, (caddr_t)ocb,
2061 						ocb->ccb->ccb_h.timeout_ch);
2062 			if (ocb->dmamap != NULL) {
2063 				bus_dmamap_destroy(sdev->target->sbp->dmat,
2064 							ocb->dmamap);
2065 				ocb->dmamap = NULL;
2066 			}
2067 			break;
2068 		} else {
2069 			if ((ocb->flags & OCB_RESERVED) &&
2070 					(ocb->flags & OCB_DONE)) {
2071 				/* next orb must be fetched already */
2072 				STAILQ_REMOVE(&sdev->ocbs, ocb, sbp_ocb, ocb);
2073 				sbp_free_ocb(sdev->target->sbp, ocb);
2074 			} else
2075 				order ++;
2076 		}
2077 	}
2078 	splx(s);
2079 SBP_DEBUG(0)
2080 	if (ocb && order > 0) {
2081 		sbp_show_sdev_info(sdev, 2);
2082 		printf("unordered execution order:%d\n", order);
2083 	}
2084 END_DEBUG
2085 	return (ocb);
2086 }
2087 
2088 static struct sbp_ocb *
2089 sbp_enqueue_ocb(struct sbp_dev *sdev, struct sbp_ocb *ocb)
2090 {
2091 	int s = splfw();
2092 	struct sbp_ocb *prev;
2093 
2094 SBP_DEBUG(2)
2095 	sbp_show_sdev_info(sdev, 2);
2096 #if __FreeBSD_version >= 500000
2097 	printf("sbp_enqueue_ocb orb=0x%tx in physical memory\n", vtophys(&ocb->orb[0]));
2098 #else
2099 	printf("sbp_enqueue_ocb orb=0x%x in physical memory\n", vtophys(&ocb->orb[0]));
2100 #endif
2101 END_DEBUG
2102 	prev = STAILQ_LAST(&sdev->ocbs, sbp_ocb, ocb);
2103 	STAILQ_INSERT_TAIL(&sdev->ocbs, ocb, ocb);
2104 
2105 	if (ocb->ccb != NULL)
2106 		ocb->ccb->ccb_h.timeout_ch = timeout(sbp_timeout, (caddr_t)ocb,
2107 					(ocb->ccb->ccb_h.timeout * hz) / 1000);
2108 
2109 	if (prev != NULL
2110 		&& ((prev->flags & OCB_ACT_MASK) == OCB_ACT_CMD)
2111 		&& ((ocb->flags & OCB_ACT_MASK) == OCB_ACT_CMD)) {
2112 SBP_DEBUG(1)
2113 #if __FreeBSD_version >= 500000
2114 	printf("linking chain 0x%tx -> 0x%tx\n", vtophys(&prev->orb[0]),
2115 #else
2116 	printf("linking chain 0x%x -> 0x%x\n", vtophys(&prev->orb[0]),
2117 #endif
2118 			vtophys(&ocb->orb[0]));
2119 END_DEBUG
2120 		prev->flags |= OCB_RESERVED;
2121 		prev->orb[1] = htonl(vtophys(&ocb->orb[0]));
2122 		prev->orb[0] = 0;
2123 	} else {
2124 		prev = NULL;
2125 	}
2126 	splx(s);
2127 
2128 	return prev;
2129 }
2130 
2131 static struct sbp_ocb *
2132 sbp_get_ocb(struct sbp_softc *sbp)
2133 {
2134 	struct sbp_ocb *ocb;
2135 	int s = splfw();
2136 	ocb = STAILQ_FIRST(&sbp->free_ocbs);
2137 	if (ocb == NULL) {
2138 		printf("ocb shortage!!!\n");
2139 		return NULL;
2140 	}
2141 	STAILQ_REMOVE(&sbp->free_ocbs, ocb, sbp_ocb, ocb);
2142 	splx(s);
2143 	ocb->ccb = NULL;
2144 	return (ocb);
2145 }
2146 
2147 static void
2148 sbp_free_ocb(struct sbp_softc *sbp, struct sbp_ocb *ocb)
2149 {
2150 #if 0 /* XXX make sure that ocb has ccb */
2151 	if ((sbp->flags & SBP_RESOURCE_SHORTAGE) != 0 &&
2152 	    (ocb->ccb->ccb_h.status & CAM_RELEASE_SIMQ) == 0) {
2153 		ocb->ccb->ccb_h.status |= CAM_RELEASE_SIMQ;
2154 		sbp->flags &= ~SBP_RESOURCE_SHORTAGE;
2155 	}
2156 #else
2157 	if ((sbp->flags & SBP_RESOURCE_SHORTAGE) != 0)
2158 		sbp->flags &= ~SBP_RESOURCE_SHORTAGE;
2159 #endif
2160 	ocb->flags = 0;
2161 	ocb->ccb = NULL;
2162 	STAILQ_INSERT_TAIL(&sbp->free_ocbs, ocb, ocb);
2163 }
2164 
2165 static void
2166 sbp_abort_ocb(struct sbp_ocb *ocb, int status)
2167 {
2168 	struct sbp_dev *sdev;
2169 
2170 	sdev = ocb->sdev;
2171 SBP_DEBUG(0)
2172 	sbp_show_sdev_info(sdev, 2);
2173 	printf("sbp_abort_ocb 0x%x\n", status);
2174 	if (ocb->ccb != NULL)
2175 		sbp_print_scsi_cmd(ocb);
2176 END_DEBUG
2177 	if (ocb->ccb != NULL && !(ocb->flags & OCB_DONE)) {
2178 		if (status != CAM_CMD_TIMEOUT)
2179 			untimeout(sbp_timeout, (caddr_t)ocb,
2180 						ocb->ccb->ccb_h.timeout_ch);
2181 		ocb->ccb->ccb_h.status = status;
2182 		xpt_done(ocb->ccb);
2183 	}
2184 	if (ocb->dmamap != NULL) {
2185 		bus_dmamap_destroy(sdev->target->sbp->dmat, ocb->dmamap);
2186 		ocb->dmamap = NULL;
2187 	}
2188 	sbp_free_ocb(sdev->target->sbp, ocb);
2189 }
2190 
2191 static void
2192 sbp_abort_all_ocbs(struct sbp_dev *sdev, int status)
2193 {
2194 	int s;
2195 	struct sbp_ocb *ocb, *next;
2196 	STAILQ_HEAD(, sbp_ocb) temp;
2197 
2198 	s = splfw();
2199 
2200 	bcopy(&sdev->ocbs, &temp, sizeof(temp));
2201 	STAILQ_INIT(&sdev->ocbs);
2202 	for (ocb = STAILQ_FIRST(&temp); ocb != NULL; ocb = next) {
2203 		next = STAILQ_NEXT(ocb, ocb);
2204 		sbp_abort_ocb(ocb, status);
2205 	}
2206 
2207 	splx(s);
2208 }
2209 
2210 static devclass_t sbp_devclass;
2211 
2212 static device_method_t sbp_methods[] = {
2213 	/* device interface */
2214 	DEVMETHOD(device_identify,	sbp_identify),
2215 	DEVMETHOD(device_probe,		sbp_probe),
2216 	DEVMETHOD(device_attach,	sbp_attach),
2217 	DEVMETHOD(device_detach,	sbp_detach),
2218 
2219 	{ 0, 0 }
2220 };
2221 
2222 static driver_t sbp_driver = {
2223 	"sbp",
2224 	sbp_methods,
2225 	sizeof(struct sbp_softc),
2226 };
2227 DRIVER_MODULE(sbp, firewire, sbp_driver, sbp_devclass, 0, 0);
2228 MODULE_VERSION(sbp, 1);
2229 MODULE_DEPEND(sbp, firewire, 1, 1, 1);
2230 MODULE_DEPEND(sbp, cam, 1, 1, 1);
2231