xref: /freebsd/sys/dev/firewire/firewire.c (revision d2b2128a286a00ee53d79cb88b4e59bf42525cf9)
1 /*-
2  * Copyright (c) 2003 Hidetoshi Shimokawa
3  * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
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  * 3. All advertising materials mentioning features or use of this software
15  *    must display the acknowledgement as bellow:
16  *
17  *    This product includes software developed by K. Kobayashi and H. Shimokawa
18  *
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  * $FreeBSD$
35  *
36  */
37 
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/types.h>
41 
42 #include <sys/kernel.h>
43 #include <sys/module.h>
44 #include <sys/malloc.h>
45 #include <sys/conf.h>
46 #include <sys/sysctl.h>
47 #include <sys/kthread.h>
48 #include <sys/vimage.h>
49 
50 #include <sys/kdb.h>
51 
52 #if defined(__DragonFly__) || __FreeBSD_version < 500000
53 #include <machine/clock.h>	/* for DELAY() */
54 #endif
55 
56 #include <sys/bus.h>		/* used by smbus and newbus */
57 #include <machine/bus.h>
58 
59 #ifdef __DragonFly__
60 #include "firewire.h"
61 #include "firewirereg.h"
62 #include "fwmem.h"
63 #include "iec13213.h"
64 #include "iec68113.h"
65 #else
66 #include <dev/firewire/firewire.h>
67 #include <dev/firewire/firewirereg.h>
68 #include <dev/firewire/fwmem.h>
69 #include <dev/firewire/iec13213.h>
70 #include <dev/firewire/iec68113.h>
71 #endif
72 
73 struct crom_src_buf {
74 	struct crom_src	src;
75 	struct crom_chunk root;
76 	struct crom_chunk vendor;
77 	struct crom_chunk hw;
78 };
79 
80 int firewire_debug=0, try_bmr=1, hold_count=0;
81 SYSCTL_INT(_debug, OID_AUTO, firewire_debug, CTLFLAG_RW, &firewire_debug, 0,
82 	"FireWire driver debug flag");
83 SYSCTL_NODE(_hw, OID_AUTO, firewire, CTLFLAG_RD, 0, "FireWire Subsystem");
84 SYSCTL_INT(_hw_firewire, OID_AUTO, try_bmr, CTLFLAG_RW, &try_bmr, 0,
85 	"Try to be a bus manager");
86 SYSCTL_INT(_hw_firewire, OID_AUTO, hold_count, CTLFLAG_RW, &hold_count, 0,
87 	"Number of count of bus resets for removing lost device information");
88 
89 MALLOC_DEFINE(M_FW, "firewire", "FireWire");
90 MALLOC_DEFINE(M_FWXFER, "fw_xfer", "XFER/FireWire");
91 
92 #define FW_MAXASYRTY 4
93 
94 devclass_t firewire_devclass;
95 
96 static void firewire_identify	(driver_t *, device_t);
97 static int firewire_probe	(device_t);
98 static int firewire_attach      (device_t);
99 static int firewire_detach      (device_t);
100 static int firewire_resume      (device_t);
101 static void firewire_xfer_timeout(void *, int);
102 #if 0
103 static int firewire_shutdown    (device_t);
104 #endif
105 static device_t firewire_add_child   (device_t, int, const char *, int);
106 static void fw_try_bmr (void *);
107 static void fw_try_bmr_callback (struct fw_xfer *);
108 static void fw_asystart (struct fw_xfer *);
109 static int fw_get_tlabel (struct firewire_comm *, struct fw_xfer *);
110 static void fw_bus_probe (struct firewire_comm *);
111 static void fw_attach_dev (struct firewire_comm *);
112 static void fw_bus_probe_thread(void *);
113 #ifdef FW_VMACCESS
114 static void fw_vmaccess (struct fw_xfer *);
115 #endif
116 static int fw_bmr (struct firewire_comm *);
117 static void fw_dump_hdr(struct fw_pkt *, char *);
118 
119 static device_method_t firewire_methods[] = {
120 	/* Device interface */
121 	DEVMETHOD(device_identify,	firewire_identify),
122 	DEVMETHOD(device_probe,		firewire_probe),
123 	DEVMETHOD(device_attach,	firewire_attach),
124 	DEVMETHOD(device_detach,	firewire_detach),
125 	DEVMETHOD(device_suspend,	bus_generic_suspend),
126 	DEVMETHOD(device_resume,	firewire_resume),
127 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
128 
129 	/* Bus interface */
130 	DEVMETHOD(bus_add_child,	firewire_add_child),
131 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
132 
133 	{ 0, 0 }
134 };
135 char *linkspeed[] = {
136 	"S100", "S200", "S400", "S800",
137 	"S1600", "S3200", "undef", "undef"
138 };
139 
140 static char *tcode_str[] = {
141 	"WREQQ", "WREQB", "WRES",   "undef",
142 	"RREQQ", "RREQB", "RRESQ",  "RRESB",
143 	"CYCS",  "LREQ",  "STREAM", "LRES",
144 	"undef", "undef", "PHY",    "undef"
145 };
146 
147 /* IEEE-1394a Table C-2 Gap count as a function of hops*/
148 #define MAX_GAPHOP 15
149 u_int gap_cnt[] = { 5,  5,  7,  8, 10, 13, 16, 18,
150 		   21, 24, 26, 29, 32, 35, 37, 40};
151 
152 static driver_t firewire_driver = {
153 	"firewire",
154 	firewire_methods,
155 	sizeof(struct firewire_softc),
156 };
157 
158 /*
159  * Lookup fwdev by node id.
160  */
161 struct fw_device *
162 fw_noderesolve_nodeid(struct firewire_comm *fc, int dst)
163 {
164 	struct fw_device *fwdev;
165 	int s;
166 
167 	s = splfw();
168 	STAILQ_FOREACH(fwdev, &fc->devices, link)
169 		if (fwdev->dst == dst && fwdev->status != FWDEVINVAL)
170 			break;
171 	splx(s);
172 
173 	return fwdev;
174 }
175 
176 /*
177  * Lookup fwdev by EUI64.
178  */
179 struct fw_device *
180 fw_noderesolve_eui64(struct firewire_comm *fc, struct fw_eui64 *eui)
181 {
182 	struct fw_device *fwdev;
183 	int s;
184 
185 	s = splfw();
186 	FW_GLOCK(fc);
187 	STAILQ_FOREACH(fwdev, &fc->devices, link)
188 		if (FW_EUI64_EQUAL(fwdev->eui, *eui))
189 			break;
190 	FW_GUNLOCK(fc);
191 	splx(s);
192 
193 	if(fwdev == NULL) return NULL;
194 	if(fwdev->status == FWDEVINVAL) return NULL;
195 	return fwdev;
196 }
197 
198 /*
199  * Async. request procedure for userland application.
200  */
201 int
202 fw_asyreq(struct firewire_comm *fc, int sub, struct fw_xfer *xfer)
203 {
204 	int err = 0;
205 	struct fw_xferq *xferq;
206 	int len;
207 	struct fw_pkt *fp;
208 	int tcode;
209 	struct tcode_info *info;
210 
211 	if(xfer == NULL) return EINVAL;
212 	if(xfer->hand == NULL){
213 		printf("hand == NULL\n");
214 		return EINVAL;
215 	}
216 	fp = &xfer->send.hdr;
217 
218 	tcode = fp->mode.common.tcode & 0xf;
219 	info = &fc->tcode[tcode];
220 	if (info->flag == 0) {
221 		printf("invalid tcode=%x\n", tcode);
222 		return EINVAL;
223 	}
224 
225 	/* XXX allow bus explore packets only after bus rest */
226 	if ((fc->status < FWBUSEXPLORE) &&
227 	    ((tcode != FWTCODE_RREQQ) || (fp->mode.rreqq.dest_hi != 0xffff) ||
228 	    (fp->mode.rreqq.dest_lo  < 0xf0000000) ||
229 	    (fp->mode.rreqq.dest_lo >= 0xf0001000))) {
230 		xfer->resp = EAGAIN;
231 		xfer->flag = FWXF_BUSY;
232 		return (EAGAIN);
233 	}
234 
235 	if (info->flag & FWTI_REQ)
236 		xferq = fc->atq;
237 	else
238 		xferq = fc->ats;
239 	len = info->hdr_len;
240 	if (xfer->send.pay_len > MAXREC(fc->maxrec)) {
241 		printf("send.pay_len > maxrec\n");
242 		return EINVAL;
243 	}
244 	if (info->flag & FWTI_BLOCK_STR)
245 		len = fp->mode.stream.len;
246 	else if (info->flag & FWTI_BLOCK_ASY)
247 		len = fp->mode.rresb.len;
248 	else
249 		len = 0;
250 	if (len != xfer->send.pay_len){
251 		printf("len(%d) != send.pay_len(%d) %s(%x)\n",
252 		    len, xfer->send.pay_len, tcode_str[tcode], tcode);
253 		return EINVAL;
254 	}
255 
256 	if(xferq->start == NULL){
257 		printf("xferq->start == NULL\n");
258 		return EINVAL;
259 	}
260 	if(!(xferq->queued < xferq->maxq)){
261 		device_printf(fc->bdev, "Discard a packet (queued=%d)\n",
262 			xferq->queued);
263 		return EAGAIN;
264 	}
265 
266 	xfer->tl = -1;
267 	if (info->flag & FWTI_TLABEL) {
268 		if (fw_get_tlabel(fc, xfer) < 0)
269 			return EAGAIN;
270 	}
271 
272 	xfer->resp = 0;
273 	xfer->fc = fc;
274 	xfer->q = xferq;
275 
276 	fw_asystart(xfer);
277 	return err;
278 }
279 /*
280  * Wakeup blocked process.
281  */
282 void
283 fw_xferwake(struct fw_xfer *xfer)
284 {
285 	struct mtx *lock = &xfer->fc->wait_lock;
286 
287 	mtx_lock(lock);
288 	xfer->flag |= FWXF_WAKE;
289 	mtx_unlock(lock);
290 
291 	wakeup(xfer);
292 	return;
293 }
294 
295 int
296 fw_xferwait(struct fw_xfer *xfer)
297 {
298 	struct mtx *lock = &xfer->fc->wait_lock;
299 	int err = 0;
300 
301 	mtx_lock(lock);
302 	if ((xfer->flag & FWXF_WAKE) == 0)
303 		err = msleep((void *)xfer, lock, PWAIT|PCATCH, "fw_xferwait", 0);
304 	mtx_unlock(lock);
305 
306 	return (err);
307 }
308 
309 /*
310  * Async. request with given xfer structure.
311  */
312 static void
313 fw_asystart(struct fw_xfer *xfer)
314 {
315 	struct firewire_comm *fc = xfer->fc;
316 	int s;
317 	s = splfw();
318 	/* Protect from interrupt/timeout */
319 	FW_GLOCK(fc);
320 	xfer->flag = FWXF_INQ;
321 	STAILQ_INSERT_TAIL(&xfer->q->q, xfer, link);
322 #if 0
323 	xfer->q->queued ++;
324 #endif
325 	FW_GUNLOCK(fc);
326 	splx(s);
327 	/* XXX just queue for mbuf */
328 	if (xfer->mbuf == NULL)
329 		xfer->q->start(fc);
330 	return;
331 }
332 
333 static void
334 firewire_identify(driver_t *driver, device_t parent)
335 {
336 	BUS_ADD_CHILD(parent, 0, "firewire", -1);
337 }
338 
339 static int
340 firewire_probe(device_t dev)
341 {
342 	device_set_desc(dev, "IEEE1394(FireWire) bus");
343 	return (0);
344 }
345 
346 static void
347 firewire_xfer_timeout(void *arg, int pending)
348 {
349 	struct firewire_comm *fc = (struct firewire_comm *)arg;
350 	struct fw_xfer *xfer, *txfer;
351 	struct timeval tv;
352 	struct timeval split_timeout;
353 	STAILQ_HEAD(, fw_xfer) xfer_timeout;
354 	int i, s;
355 
356 	split_timeout.tv_sec = 0;
357 	split_timeout.tv_usec = 200 * 1000;	 /* 200 msec */
358 
359 	microtime(&tv);
360 	timevalsub(&tv, &split_timeout);
361 	STAILQ_INIT(&xfer_timeout);
362 
363 	s = splfw();
364 	mtx_lock(&fc->tlabel_lock);
365 	for (i = 0; i < 0x40; i ++) {
366 		while ((xfer = STAILQ_FIRST(&fc->tlabels[i])) != NULL) {
367 			if ((xfer->flag & FWXF_SENT) == 0)
368 				/* not sent yet */
369 				break;
370 			if (timevalcmp(&xfer->tv, &tv, >))
371 				/* the rests are newer than this */
372 				break;
373 			device_printf(fc->bdev,
374 				"split transaction timeout: "
375 				"tl=0x%x flag=0x%02x\n", i, xfer->flag);
376 			fw_dump_hdr(&xfer->send.hdr, "send");
377 			xfer->resp = ETIMEDOUT;
378 			STAILQ_REMOVE_HEAD(&fc->tlabels[i], tlabel);
379 			STAILQ_INSERT_TAIL(&xfer_timeout, xfer, tlabel);
380 		}
381 	}
382 	mtx_unlock(&fc->tlabel_lock);
383 	splx(s);
384 	fc->timeout(fc);
385 
386 	STAILQ_FOREACH_SAFE(xfer, &xfer_timeout, tlabel, txfer)
387 		xfer->hand(xfer);
388 }
389 
390 #define WATCHDOG_HZ 10
391 static void
392 firewire_watchdog(void *arg)
393 {
394 	struct firewire_comm *fc;
395 	static int watchdog_clock = 0;
396 
397 	fc = (struct firewire_comm *)arg;
398 
399 	/*
400 	 * At boot stage, the device interrupt is disabled and
401 	 * We encounter a timeout easily. To avoid this,
402 	 * ignore clock interrupt for a while.
403 	 */
404 	if (watchdog_clock > WATCHDOG_HZ * 15)
405 		taskqueue_enqueue(fc->taskqueue, &fc->task_timeout);
406 	else
407 		watchdog_clock ++;
408 
409 	callout_reset(&fc->timeout_callout, hz / WATCHDOG_HZ,
410 			(void *)firewire_watchdog, (void *)fc);
411 }
412 
413 /*
414  * The attach routine.
415  */
416 static int
417 firewire_attach(device_t dev)
418 {
419 	int unit;
420 	struct firewire_softc *sc = device_get_softc(dev);
421 	device_t pa = device_get_parent(dev);
422 	struct firewire_comm *fc;
423 
424 	fc = (struct firewire_comm *)device_get_softc(pa);
425 	sc->fc = fc;
426 	fc->status = FWBUSNOTREADY;
427 
428 	unit = device_get_unit(dev);
429 	if( fc->nisodma > FWMAXNDMA) fc->nisodma = FWMAXNDMA;
430 
431 	fwdev_makedev(sc);
432 
433 	fc->crom_src_buf = (struct crom_src_buf *)malloc(
434 				sizeof(struct crom_src_buf),
435 				M_FW, M_NOWAIT | M_ZERO);
436 	if (fc->crom_src_buf == NULL) {
437 		device_printf(fc->dev, "%s: Malloc Failure crom src buff\n", __func__);
438 		return ENOMEM;
439 	}
440 	fc->topology_map = (struct fw_topology_map *)malloc(
441 				sizeof(struct fw_topology_map),
442 				M_FW, M_NOWAIT | M_ZERO);
443 	if (fc->topology_map == NULL) {
444 		device_printf(fc->dev, "%s: Malloc Failure topology map\n", __func__);
445 		free(fc->crom_src_buf, M_FW);
446 		return ENOMEM;
447 	}
448 	fc->speed_map = (struct fw_speed_map *)malloc(
449 				sizeof(struct fw_speed_map),
450 				M_FW, M_NOWAIT | M_ZERO);
451 	if (fc->speed_map == NULL) {
452 		device_printf(fc->dev, "%s: Malloc Failure speed map\n", __func__);
453 		free(fc->crom_src_buf, M_FW);
454 		free(fc->topology_map, M_FW);
455 		return ENOMEM;
456 	}
457 
458 	mtx_init(&fc->wait_lock, "fwwait", NULL, MTX_DEF);
459 	mtx_init(&fc->tlabel_lock, "fwtlabel", NULL, MTX_DEF);
460 	CALLOUT_INIT(&fc->timeout_callout);
461 	CALLOUT_INIT(&fc->bmr_callout);
462 	CALLOUT_INIT(&fc->busprobe_callout);
463 	TASK_INIT(&fc->task_timeout, 0, firewire_xfer_timeout, (void *)fc);
464 
465 	callout_reset(&sc->fc->timeout_callout, hz,
466 			(void *)firewire_watchdog, (void *)sc->fc);
467 
468 	/* create thread */
469 	kproc_create(fw_bus_probe_thread, (void *)fc, &fc->probe_thread,
470 		0, 0, "fw%d_probe", unit);
471 
472 	/* Locate our children */
473 	bus_generic_probe(dev);
474 
475 	/* launch attachement of the added children */
476 	bus_generic_attach(dev);
477 
478 	/* bus_reset */
479 	FW_GLOCK(fc);
480 	fw_busreset(fc, FWBUSNOTREADY);
481 	FW_GUNLOCK(fc);
482 	fc->ibr(fc);
483 
484 	return 0;
485 }
486 
487 /*
488  * Attach it as child.
489  */
490 static device_t
491 firewire_add_child(device_t dev, int order, const char *name, int unit)
492 {
493         device_t child;
494 	struct firewire_softc *sc;
495 
496 	sc = (struct firewire_softc *)device_get_softc(dev);
497 	child = device_add_child(dev, name, unit);
498 	if (child) {
499 		device_set_ivars(child, sc->fc);
500 		device_probe_and_attach(child);
501 	}
502 
503 	return child;
504 }
505 
506 static int
507 firewire_resume(device_t dev)
508 {
509 	struct firewire_softc *sc;
510 
511 	sc = (struct firewire_softc *)device_get_softc(dev);
512 	sc->fc->status = FWBUSNOTREADY;
513 
514 	bus_generic_resume(dev);
515 
516 	return(0);
517 }
518 
519 /*
520  * Dettach it.
521  */
522 static int
523 firewire_detach(device_t dev)
524 {
525 	struct firewire_softc *sc;
526 	struct firewire_comm *fc;
527 	struct fw_device *fwdev, *fwdev_next;
528 	int err;
529 
530 	sc = (struct firewire_softc *)device_get_softc(dev);
531 	fc = sc->fc;
532 	mtx_lock(&fc->wait_lock);
533 	fc->status = FWBUSDETACH;
534 	wakeup(fc);
535 	if (msleep(fc->probe_thread, &fc->wait_lock, PWAIT, "fwthr", hz * 60))
536 		printf("firewire probe thread didn't die\n");
537 	mtx_unlock(&fc->wait_lock);
538 
539 	if (fc->arq !=0 && fc->arq->maxq > 0)
540 		fw_drain_txq(fc);
541 
542 	if ((err = fwdev_destroydev(sc)) != 0)
543 		return err;
544 
545 	if ((err = bus_generic_detach(dev)) != 0)
546 		return err;
547 
548 	callout_stop(&fc->timeout_callout);
549 	callout_stop(&fc->bmr_callout);
550 	callout_stop(&fc->busprobe_callout);
551 
552 	/* XXX xfer_free and untimeout on all xfers */
553 	for (fwdev = STAILQ_FIRST(&fc->devices); fwdev != NULL;
554 							fwdev = fwdev_next) {
555 		fwdev_next = STAILQ_NEXT(fwdev, link);
556 		free(fwdev, M_FW);
557 	}
558 	free(fc->topology_map, M_FW);
559 	free(fc->speed_map, M_FW);
560 	free(fc->crom_src_buf, M_FW);
561 
562 	mtx_destroy(&fc->tlabel_lock);
563 	mtx_destroy(&fc->wait_lock);
564 	return(0);
565 }
566 #if 0
567 static int
568 firewire_shutdown( device_t dev )
569 {
570 	return 0;
571 }
572 #endif
573 
574 
575 static void
576 fw_xferq_drain(struct fw_xferq *xferq)
577 {
578 	struct fw_xfer *xfer;
579 
580 	while ((xfer = STAILQ_FIRST(&xferq->q)) != NULL) {
581 		STAILQ_REMOVE_HEAD(&xferq->q, link);
582 #if 0
583 		xferq->queued --;
584 #endif
585 		xfer->resp = EAGAIN;
586 		xfer->flag = FWXF_SENTERR;
587 		fw_xfer_done(xfer);
588 	}
589 }
590 
591 void
592 fw_drain_txq(struct firewire_comm *fc)
593 {
594 	struct fw_xfer *xfer, *txfer;
595 	STAILQ_HEAD(, fw_xfer) xfer_drain;
596 	int i;
597 
598 	STAILQ_INIT(&xfer_drain);
599 
600 	FW_GLOCK(fc);
601 	fw_xferq_drain(fc->atq);
602 	fw_xferq_drain(fc->ats);
603 	for(i = 0; i < fc->nisodma; i++)
604 		fw_xferq_drain(fc->it[i]);
605 	FW_GUNLOCK(fc);
606 
607 	mtx_lock(&fc->tlabel_lock);
608 	for (i = 0; i < 0x40; i ++)
609 		while ((xfer = STAILQ_FIRST(&fc->tlabels[i])) != NULL) {
610 			if (firewire_debug)
611 				printf("tl=%d flag=%d\n", i, xfer->flag);
612 			xfer->resp = EAGAIN;
613 			STAILQ_REMOVE_HEAD(&fc->tlabels[i], tlabel);
614 			STAILQ_INSERT_TAIL(&xfer_drain, xfer, tlabel);
615 		}
616 	mtx_unlock(&fc->tlabel_lock);
617 
618 	STAILQ_FOREACH_SAFE(xfer, &xfer_drain, tlabel, txfer)
619 		xfer->hand(xfer);
620 }
621 
622 static void
623 fw_reset_csr(struct firewire_comm *fc)
624 {
625 	int i;
626 
627 	CSRARC(fc, STATE_CLEAR)
628 			= 1 << 23 | 0 << 17 | 1 << 16 | 1 << 15 | 1 << 14 ;
629 	CSRARC(fc, STATE_SET) = CSRARC(fc, STATE_CLEAR);
630 	CSRARC(fc, NODE_IDS) = 0x3f;
631 
632 	CSRARC(fc, TOPO_MAP + 8) = 0;
633 	fc->irm = -1;
634 
635 	fc->max_node = -1;
636 
637 	for(i = 2; i < 0x100/4 - 2 ; i++){
638 		CSRARC(fc, SPED_MAP + i * 4) = 0;
639 	}
640 	CSRARC(fc, STATE_CLEAR) = 1 << 23 | 0 << 17 | 1 << 16 | 1 << 15 | 1 << 14 ;
641 	CSRARC(fc, STATE_SET) = CSRARC(fc, STATE_CLEAR);
642 	CSRARC(fc, RESET_START) = 0;
643 	CSRARC(fc, SPLIT_TIMEOUT_HI) = 0;
644 	CSRARC(fc, SPLIT_TIMEOUT_LO) = 800 << 19;
645 	CSRARC(fc, CYCLE_TIME) = 0x0;
646 	CSRARC(fc, BUS_TIME) = 0x0;
647 	CSRARC(fc, BUS_MGR_ID) = 0x3f;
648 	CSRARC(fc, BANDWIDTH_AV) = 4915;
649 	CSRARC(fc, CHANNELS_AV_HI) = 0xffffffff;
650 	CSRARC(fc, CHANNELS_AV_LO) = 0xffffffff;
651 	CSRARC(fc, IP_CHANNELS) = (1 << 31);
652 
653 	CSRARC(fc, CONF_ROM) = 0x04 << 24;
654 	CSRARC(fc, CONF_ROM + 4) = 0x31333934; /* means strings 1394 */
655 	CSRARC(fc, CONF_ROM + 8) = 1 << 31 | 1 << 30 | 1 << 29 |
656 				1 << 28 | 0xff << 16 | 0x09 << 8;
657 	CSRARC(fc, CONF_ROM + 0xc) = 0;
658 
659 /* DV depend CSRs see blue book */
660 	CSRARC(fc, oPCR) &= ~DV_BROADCAST_ON;
661 	CSRARC(fc, iPCR) &= ~DV_BROADCAST_ON;
662 
663 	CSRARC(fc, STATE_CLEAR) &= ~(1 << 23 | 1 << 15 | 1 << 14 );
664 	CSRARC(fc, STATE_SET) = CSRARC(fc, STATE_CLEAR);
665 }
666 
667 static void
668 fw_init_crom(struct firewire_comm *fc)
669 {
670 	struct crom_src *src;
671 
672 	src = &fc->crom_src_buf->src;
673 	bzero(src, sizeof(struct crom_src));
674 
675 	/* BUS info sample */
676 	src->hdr.info_len = 4;
677 
678 	src->businfo.bus_name = CSR_BUS_NAME_IEEE1394;
679 
680 	src->businfo.irmc = 1;
681 	src->businfo.cmc = 1;
682 	src->businfo.isc = 1;
683 	src->businfo.bmc = 1;
684 	src->businfo.pmc = 0;
685 	src->businfo.cyc_clk_acc = 100;
686 	src->businfo.max_rec = fc->maxrec;
687 	src->businfo.max_rom = MAXROM_4;
688 #define FW_GENERATION_CHANGEABLE 2
689 	src->businfo.generation = FW_GENERATION_CHANGEABLE;
690 	src->businfo.link_spd = fc->speed;
691 
692 	src->businfo.eui64.hi = fc->eui.hi;
693 	src->businfo.eui64.lo = fc->eui.lo;
694 
695 	STAILQ_INIT(&src->chunk_list);
696 
697 	fc->crom_src = src;
698 	fc->crom_root = &fc->crom_src_buf->root;
699 }
700 
701 static void
702 fw_reset_crom(struct firewire_comm *fc)
703 {
704 	struct crom_src_buf *buf;
705 	struct crom_src *src;
706 	struct crom_chunk *root;
707 
708 	buf =  fc->crom_src_buf;
709 	src = fc->crom_src;
710 	root = fc->crom_root;
711 
712 	STAILQ_INIT(&src->chunk_list);
713 
714 	bzero(root, sizeof(struct crom_chunk));
715 	crom_add_chunk(src, NULL, root, 0);
716 	crom_add_entry(root, CSRKEY_NCAP, 0x0083c0); /* XXX */
717 	/* private company_id */
718 	crom_add_entry(root, CSRKEY_VENDOR, CSRVAL_VENDOR_PRIVATE);
719 #ifdef __DragonFly__
720 	crom_add_simple_text(src, root, &buf->vendor, "DragonFly Project");
721 	crom_add_entry(root, CSRKEY_HW, __DragonFly_cc_version);
722 #else
723 	crom_add_simple_text(src, root, &buf->vendor, "FreeBSD Project");
724 	crom_add_entry(root, CSRKEY_HW, __FreeBSD_version);
725 #endif
726 	crom_add_simple_text(src, root, &buf->hw, G_hostname);
727 }
728 
729 /*
730  * Called after bus reset.
731  */
732 void
733 fw_busreset(struct firewire_comm *fc, uint32_t new_status)
734 {
735 	struct firewire_dev_comm *fdc;
736 	struct crom_src *src;
737 	device_t *devlistp;
738 	uint32_t *newrom;
739 	int i, devcnt;
740 
741 	FW_GLOCK_ASSERT(fc);
742 	if (fc->status == FWBUSMGRELECT)
743 		callout_stop(&fc->bmr_callout);
744 
745 	fc->status = new_status;
746 	fw_reset_csr(fc);
747 
748 	if (fc->status == FWBUSNOTREADY)
749 		fw_init_crom(fc);
750 
751 	fw_reset_crom(fc);
752 
753 	if (device_get_children(fc->bdev, &devlistp, &devcnt) == 0) {
754 		for( i = 0 ; i < devcnt ; i++)
755 			if (device_get_state(devlistp[i]) >= DS_ATTACHED)  {
756 				fdc = device_get_softc(devlistp[i]);
757 				if (fdc->post_busreset != NULL)
758 					fdc->post_busreset(fdc);
759 			}
760 		free(devlistp, M_TEMP);
761 	}
762 
763 	src = &fc->crom_src_buf->src;
764         /*
765          * If the old config rom needs to be overwritten,
766          * bump the businfo.generation indicator to
767          * indicate that we need to be reprobed
768          * See 1394a-2000 8.3.2.5.4 for more details.
769          * generation starts at 2 and rolls over at 0xF
770          * back to 2.
771          *
772          * A generation of 0 indicates a device
773          * that is not 1394a-2000 compliant.
774          * A generation of 1 indicates a device that
775          * does not change it's Bus Info Block or
776          * Configuration ROM.
777          */
778 #define FW_MAX_GENERATION 0xF
779 	newrom = malloc(CROMSIZE, M_FW, M_NOWAIT | M_ZERO);
780 	src = &fc->crom_src_buf->src;
781 	crom_load(src, newrom, CROMSIZE);
782 	if (bcmp(newrom, fc->config_rom, CROMSIZE) != 0) {
783 		if ( src->businfo.generation++ > FW_MAX_GENERATION )
784 			src->businfo.generation = FW_GENERATION_CHANGEABLE;
785 		bcopy(newrom, (void *)fc->config_rom, CROMSIZE);
786 	}
787 	free(newrom, M_FW);
788 
789 }
790 
791 /* Call once after reboot */
792 void fw_init(struct firewire_comm *fc)
793 {
794 	int i;
795 #ifdef FW_VMACCESS
796 	struct fw_xfer *xfer;
797 	struct fw_bind *fwb;
798 #endif
799 
800 	fc->arq->queued = 0;
801 	fc->ars->queued = 0;
802 	fc->atq->queued = 0;
803 	fc->ats->queued = 0;
804 
805 	fc->arq->buf = NULL;
806 	fc->ars->buf = NULL;
807 	fc->atq->buf = NULL;
808 	fc->ats->buf = NULL;
809 
810 	fc->arq->flag = 0;
811 	fc->ars->flag = 0;
812 	fc->atq->flag = 0;
813 	fc->ats->flag = 0;
814 
815 	STAILQ_INIT(&fc->atq->q);
816 	STAILQ_INIT(&fc->ats->q);
817 
818 	for( i = 0 ; i < fc->nisodma ; i ++ ){
819 		fc->it[i]->queued = 0;
820 		fc->ir[i]->queued = 0;
821 
822 		fc->it[i]->start = NULL;
823 		fc->ir[i]->start = NULL;
824 
825 		fc->it[i]->buf = NULL;
826 		fc->ir[i]->buf = NULL;
827 
828 		fc->it[i]->flag = FWXFERQ_STREAM;
829 		fc->ir[i]->flag = FWXFERQ_STREAM;
830 
831 		STAILQ_INIT(&fc->it[i]->q);
832 		STAILQ_INIT(&fc->ir[i]->q);
833 	}
834 
835 	fc->arq->maxq = FWMAXQUEUE;
836 	fc->ars->maxq = FWMAXQUEUE;
837 	fc->atq->maxq = FWMAXQUEUE;
838 	fc->ats->maxq = FWMAXQUEUE;
839 
840 	for( i = 0 ; i < fc->nisodma ; i++){
841 		fc->ir[i]->maxq = FWMAXQUEUE;
842 		fc->it[i]->maxq = FWMAXQUEUE;
843 	}
844 
845 	CSRARC(fc, TOPO_MAP) = 0x3f1 << 16;
846 	CSRARC(fc, TOPO_MAP + 4) = 1;
847 	CSRARC(fc, SPED_MAP) = 0x3f1 << 16;
848 	CSRARC(fc, SPED_MAP + 4) = 1;
849 
850 	STAILQ_INIT(&fc->devices);
851 
852 /* Initialize Async handlers */
853 	STAILQ_INIT(&fc->binds);
854 	for( i = 0 ; i < 0x40 ; i++){
855 		STAILQ_INIT(&fc->tlabels[i]);
856 	}
857 
858 /* DV depend CSRs see blue book */
859 #if 0
860 	CSRARC(fc, oMPR) = 0x3fff0001; /* # output channel = 1 */
861 	CSRARC(fc, oPCR) = 0x8000007a;
862 	for(i = 4 ; i < 0x7c/4 ; i+=4){
863 		CSRARC(fc, i + oPCR) = 0x8000007a;
864 	}
865 
866 	CSRARC(fc, iMPR) = 0x00ff0001; /* # input channel = 1 */
867 	CSRARC(fc, iPCR) = 0x803f0000;
868 	for(i = 4 ; i < 0x7c/4 ; i+=4){
869 		CSRARC(fc, i + iPCR) = 0x0;
870 	}
871 #endif
872 
873 	fc->crom_src_buf = NULL;
874 
875 #ifdef FW_VMACCESS
876 	xfer = fw_xfer_alloc();
877 	if(xfer == NULL) return;
878 
879 	fwb = (struct fw_bind *)malloc(sizeof (struct fw_bind), M_FW, M_NOWAIT);
880 	if(fwb == NULL){
881 		fw_xfer_free(xfer);
882 		return;
883 	}
884 	xfer->hand = fw_vmaccess;
885 	xfer->fc = fc;
886 	xfer->sc = NULL;
887 
888 	fwb->start_hi = 0x2;
889 	fwb->start_lo = 0;
890 	fwb->addrlen = 0xffffffff;
891 	fwb->xfer = xfer;
892 	fw_bindadd(fc, fwb);
893 #endif
894 }
895 
896 #define BIND_CMP(addr, fwb) (((addr) < (fwb)->start)?-1:\
897     ((fwb)->end < (addr))?1:0)
898 
899 /*
900  * To lookup bound process from IEEE1394 address.
901  */
902 struct fw_bind *
903 fw_bindlookup(struct firewire_comm *fc, uint16_t dest_hi, uint32_t dest_lo)
904 {
905 	u_int64_t addr;
906 	struct fw_bind *tfw, *r = NULL;
907 
908 	addr = ((u_int64_t)dest_hi << 32) | dest_lo;
909 	FW_GLOCK(fc);
910 	STAILQ_FOREACH(tfw, &fc->binds, fclist)
911 		if (BIND_CMP(addr, tfw) == 0) {
912 			r = tfw;
913 			break;
914 		}
915 	FW_GUNLOCK(fc);
916 	return(r);
917 }
918 
919 /*
920  * To bind IEEE1394 address block to process.
921  */
922 int
923 fw_bindadd(struct firewire_comm *fc, struct fw_bind *fwb)
924 {
925 	struct fw_bind *tfw, *prev = NULL;
926 	int r = 0;
927 
928 	if (fwb->start > fwb->end) {
929 		printf("%s: invalid range\n", __func__);
930 		return EINVAL;
931 	}
932 
933 	FW_GLOCK(fc);
934 	STAILQ_FOREACH(tfw, &fc->binds, fclist) {
935 		if (fwb->end < tfw->start)
936 			break;
937 		prev = tfw;
938 	}
939 	if (prev == NULL)
940 		STAILQ_INSERT_HEAD(&fc->binds, fwb, fclist);
941 	else if (prev->end < fwb->start)
942 		STAILQ_INSERT_AFTER(&fc->binds, prev, fwb, fclist);
943 	else {
944 		printf("%s: bind failed\n", __func__);
945 		r = EBUSY;
946 	}
947 	FW_GUNLOCK(fc);
948 	return (r);
949 }
950 
951 /*
952  * To free IEEE1394 address block.
953  */
954 int
955 fw_bindremove(struct firewire_comm *fc, struct fw_bind *fwb)
956 {
957 #if 0
958 	struct fw_xfer *xfer, *next;
959 #endif
960 	struct fw_bind *tfw;
961 	int s;
962 
963 	s = splfw();
964 	FW_GLOCK(fc);
965 	STAILQ_FOREACH(tfw, &fc->binds, fclist)
966 		if (tfw == fwb) {
967 			STAILQ_REMOVE(&fc->binds, fwb, fw_bind, fclist);
968 			goto found;
969 		}
970 
971 	printf("%s: no such binding\n", __func__);
972 	FW_GUNLOCK(fc);
973 	splx(s);
974 	return (1);
975 found:
976 #if 0
977 	/* shall we do this? */
978 	for (xfer = STAILQ_FIRST(&fwb->xferlist); xfer != NULL; xfer = next) {
979 		next = STAILQ_NEXT(xfer, link);
980 		fw_xfer_free(xfer);
981 	}
982 	STAILQ_INIT(&fwb->xferlist);
983 #endif
984 	FW_GUNLOCK(fc);
985 
986 	splx(s);
987 	return 0;
988 }
989 
990 int
991 fw_xferlist_add(struct fw_xferlist *q, struct malloc_type *type,
992     int slen, int rlen, int n,
993     struct firewire_comm *fc, void *sc, void (*hand)(struct fw_xfer *))
994 {
995 	int i, s;
996 	struct fw_xfer *xfer;
997 
998 	for (i = 0; i < n; i++) {
999 		xfer = fw_xfer_alloc_buf(type, slen, rlen);
1000 		if (xfer == NULL)
1001 			return (n);
1002 		xfer->fc = fc;
1003 		xfer->sc = sc;
1004 		xfer->hand = hand;
1005 		s = splfw();
1006 		STAILQ_INSERT_TAIL(q, xfer, link);
1007 		splx(s);
1008 	}
1009 	return (n);
1010 }
1011 
1012 void
1013 fw_xferlist_remove(struct fw_xferlist *q)
1014 {
1015 	struct fw_xfer *xfer, *next;
1016 
1017 	for (xfer = STAILQ_FIRST(q); xfer != NULL; xfer = next) {
1018                 next = STAILQ_NEXT(xfer, link);
1019                 fw_xfer_free_buf(xfer);
1020         }
1021         STAILQ_INIT(q);
1022 }
1023 /*
1024  * dump packet header
1025  */
1026 static void
1027 fw_dump_hdr(struct fw_pkt *fp, char *prefix)
1028 {
1029 	printf("%s: dst=0x%02x tl=0x%02x rt=%d tcode=0x%x pri=0x%x "
1030 	    "src=0x%03x\n", prefix,
1031 	    fp->mode.hdr.dst & 0x3f,
1032 	    fp->mode.hdr.tlrt >> 2, fp->mode.hdr.tlrt & 3,
1033 	    fp->mode.hdr.tcode, fp->mode.hdr.pri,
1034 	    fp->mode.hdr.src);
1035 }
1036 
1037 /*
1038  * To free transaction label.
1039  */
1040 static void
1041 fw_tl_free(struct firewire_comm *fc, struct fw_xfer *xfer)
1042 {
1043 	struct fw_xfer *txfer;
1044 	int s;
1045 
1046 	if (xfer->tl < 0)
1047 		return;
1048 
1049 	s = splfw();
1050 	mtx_lock(&fc->tlabel_lock);
1051 #if 1	/* make sure the label is allocated */
1052 	STAILQ_FOREACH(txfer, &fc->tlabels[xfer->tl], tlabel)
1053 		if(txfer == xfer)
1054 			break;
1055 	if (txfer == NULL) {
1056 		printf("%s: the xfer is not in the queue "
1057 		    "(tlabel=%d, flag=0x%x)\n",
1058 		    __FUNCTION__, xfer->tl, xfer->flag);
1059 		fw_dump_hdr(&xfer->send.hdr, "send");
1060 		fw_dump_hdr(&xfer->recv.hdr, "recv");
1061 		kdb_backtrace();
1062 		mtx_unlock(&fc->tlabel_lock);
1063 		splx(s);
1064 		return;
1065 	}
1066 #endif
1067 
1068 	STAILQ_REMOVE(&fc->tlabels[xfer->tl], xfer, fw_xfer, tlabel);
1069 	mtx_unlock(&fc->tlabel_lock);
1070 	splx(s);
1071 	return;
1072 }
1073 
1074 /*
1075  * To obtain XFER structure by transaction label.
1076  */
1077 static struct fw_xfer *
1078 fw_tl2xfer(struct firewire_comm *fc, int node, int tlabel, int tcode)
1079 {
1080 	struct fw_xfer *xfer;
1081 	int s = splfw();
1082 	int req;
1083 
1084 	mtx_lock(&fc->tlabel_lock);
1085 	STAILQ_FOREACH(xfer, &fc->tlabels[tlabel], tlabel)
1086 		if(xfer->send.hdr.mode.hdr.dst == node) {
1087 			mtx_unlock(&fc->tlabel_lock);
1088 			splx(s);
1089 			KASSERT(xfer->tl == tlabel,
1090 				("xfer->tl 0x%x != 0x%x", xfer->tl, tlabel));
1091 			/* extra sanity check */
1092 			req = xfer->send.hdr.mode.hdr.tcode;
1093 			if (xfer->fc->tcode[req].valid_res != tcode) {
1094 				printf("%s: invalid response tcode "
1095 				    "(0x%x for 0x%x)\n", __FUNCTION__,
1096 				    tcode, req);
1097 				return(NULL);
1098 			}
1099 
1100 			if (firewire_debug > 2)
1101 				printf("fw_tl2xfer: found tl=%d\n", tlabel);
1102 			return(xfer);
1103 		}
1104 	mtx_unlock(&fc->tlabel_lock);
1105 	if (firewire_debug > 1)
1106 		printf("fw_tl2xfer: not found tl=%d\n", tlabel);
1107 	splx(s);
1108 	return(NULL);
1109 }
1110 
1111 /*
1112  * To allocate IEEE1394 XFER structure.
1113  */
1114 struct fw_xfer *
1115 fw_xfer_alloc(struct malloc_type *type)
1116 {
1117 	struct fw_xfer *xfer;
1118 
1119 	xfer = malloc(sizeof(struct fw_xfer), type, M_NOWAIT | M_ZERO);
1120 	if (xfer == NULL)
1121 		return xfer;
1122 
1123 	xfer->malloc = type;
1124 
1125 	return xfer;
1126 }
1127 
1128 struct fw_xfer *
1129 fw_xfer_alloc_buf(struct malloc_type *type, int send_len, int recv_len)
1130 {
1131 	struct fw_xfer *xfer;
1132 
1133 	xfer = fw_xfer_alloc(type);
1134 	if (xfer == NULL)
1135 		return(NULL);
1136 	xfer->send.pay_len = send_len;
1137 	xfer->recv.pay_len = recv_len;
1138 	if (send_len > 0) {
1139 		xfer->send.payload = malloc(send_len, type, M_NOWAIT | M_ZERO);
1140 		if (xfer->send.payload == NULL) {
1141 			fw_xfer_free(xfer);
1142 			return(NULL);
1143 		}
1144 	}
1145 	if (recv_len > 0) {
1146 		xfer->recv.payload = malloc(recv_len, type, M_NOWAIT);
1147 		if (xfer->recv.payload == NULL) {
1148 			if (xfer->send.payload != NULL)
1149 				free(xfer->send.payload, type);
1150 			fw_xfer_free(xfer);
1151 			return(NULL);
1152 		}
1153 	}
1154 	return(xfer);
1155 }
1156 
1157 /*
1158  * IEEE1394 XFER post process.
1159  */
1160 void
1161 fw_xfer_done(struct fw_xfer *xfer)
1162 {
1163 	if (xfer->hand == NULL) {
1164 		printf("hand == NULL\n");
1165 		return;
1166 	}
1167 
1168 	if (xfer->fc == NULL)
1169 		panic("fw_xfer_done: why xfer->fc is NULL?");
1170 
1171 	fw_tl_free(xfer->fc, xfer);
1172 	xfer->hand(xfer);
1173 }
1174 
1175 void
1176 fw_xfer_unload(struct fw_xfer* xfer)
1177 {
1178 	int s;
1179 
1180 	if(xfer == NULL ) return;
1181 	if(xfer->flag & FWXF_INQ){
1182 		printf("fw_xfer_free FWXF_INQ\n");
1183 		s = splfw();
1184 		FW_GLOCK(xfer->fc);
1185 		STAILQ_REMOVE(&xfer->q->q, xfer, fw_xfer, link);
1186 #if 0
1187 		xfer->q->queued --;
1188 #endif
1189 		FW_GUNLOCK(xfer->fc);
1190 		splx(s);
1191 	}
1192 	if (xfer->fc != NULL) {
1193 #if 1
1194 		if(xfer->flag & FWXF_START)
1195 			/*
1196 			 * This could happen if:
1197 			 *  1. We call fwohci_arcv() before fwohci_txd().
1198 			 *  2. firewire_watch() is called.
1199 			 */
1200 			printf("fw_xfer_free FWXF_START\n");
1201 #endif
1202 	}
1203 	xfer->flag = FWXF_INIT;
1204 	xfer->resp = 0;
1205 }
1206 /*
1207  * To free IEEE1394 XFER structure.
1208  */
1209 void
1210 fw_xfer_free_buf( struct fw_xfer* xfer)
1211 {
1212 	if (xfer == NULL) {
1213 		printf("%s: xfer == NULL\n", __func__);
1214 		return;
1215 	}
1216 	fw_xfer_unload(xfer);
1217 	if(xfer->send.payload != NULL){
1218 		free(xfer->send.payload, xfer->malloc);
1219 	}
1220 	if(xfer->recv.payload != NULL){
1221 		free(xfer->recv.payload, xfer->malloc);
1222 	}
1223 	free(xfer, xfer->malloc);
1224 }
1225 
1226 void
1227 fw_xfer_free( struct fw_xfer* xfer)
1228 {
1229 	if (xfer == NULL) {
1230 		printf("%s: xfer == NULL\n", __func__);
1231 		return;
1232 	}
1233 	fw_xfer_unload(xfer);
1234 	free(xfer, xfer->malloc);
1235 }
1236 
1237 void
1238 fw_asy_callback_free(struct fw_xfer *xfer)
1239 {
1240 #if 0
1241 	printf("asyreq done flag=0x%02x resp=%d\n",
1242 				xfer->flag, xfer->resp);
1243 #endif
1244 	fw_xfer_free(xfer);
1245 }
1246 
1247 /*
1248  * To configure PHY.
1249  */
1250 static void
1251 fw_phy_config(struct firewire_comm *fc, int root_node, int gap_count)
1252 {
1253 	struct fw_xfer *xfer;
1254 	struct fw_pkt *fp;
1255 
1256 	fc->status = FWBUSPHYCONF;
1257 
1258 	xfer = fw_xfer_alloc(M_FWXFER);
1259 	if (xfer == NULL)
1260 		return;
1261 	xfer->fc = fc;
1262 	xfer->hand = fw_asy_callback_free;
1263 
1264 	fp = &xfer->send.hdr;
1265 	fp->mode.ld[1] = 0;
1266 	if (root_node >= 0)
1267 		fp->mode.ld[1] |= (root_node & 0x3f) << 24 | 1 << 23;
1268 	if (gap_count >= 0)
1269 		fp->mode.ld[1] |= 1 << 22 | (gap_count & 0x3f) << 16;
1270 	fp->mode.ld[2] = ~fp->mode.ld[1];
1271 /* XXX Dangerous, how to pass PHY packet to device driver */
1272 	fp->mode.common.tcode |= FWTCODE_PHY;
1273 
1274 	if (firewire_debug)
1275 		device_printf(fc->bdev, "%s: root_node=%d gap_count=%d\n",
1276 					__func__, root_node, gap_count);
1277 	fw_asyreq(fc, -1, xfer);
1278 }
1279 
1280 /*
1281  * Dump self ID.
1282  */
1283 static void
1284 fw_print_sid(uint32_t sid)
1285 {
1286 	union fw_self_id *s;
1287 	s = (union fw_self_id *) &sid;
1288 	if ( s->p0.sequel ) {
1289 		if ( s->p1.sequence_num == FW_SELF_ID_PAGE0 ) {
1290 			printf("node:%d p3:%d p4:%d p5:%d p6:%d p7:%d"
1291 				"p8:%d p9:%d p10:%d\n",
1292 				s->p1.phy_id, s->p1.port3, s->p1.port4,
1293 				s->p1.port5, s->p1.port6, s->p1.port7,
1294 				s->p1.port8, s->p1.port9, s->p1.port10);
1295 		} else if (s->p2.sequence_num == FW_SELF_ID_PAGE1 ){
1296 			printf("node:%d p11:%d p12:%d p13:%d p14:%d p15:%d\n",
1297 				s->p2.phy_id, s->p2.port11, s->p2.port12,
1298 				s->p2.port13, s->p2.port14, s->p2.port15);
1299 		} else {
1300 			printf("node:%d Unknown Self ID Page number %d\n",
1301 				s->p1.phy_id, s->p1.sequence_num);
1302 		}
1303 	} else {
1304 		printf("node:%d link:%d gap:%d spd:%d con:%d pwr:%d"
1305 			" p0:%d p1:%d p2:%d i:%d m:%d\n",
1306 			s->p0.phy_id, s->p0.link_active, s->p0.gap_count,
1307 			s->p0.phy_speed, s->p0.contender,
1308 			s->p0.power_class, s->p0.port0, s->p0.port1,
1309 			s->p0.port2, s->p0.initiated_reset, s->p0.more_packets);
1310 	}
1311 }
1312 
1313 /*
1314  * To receive self ID.
1315  */
1316 void fw_sidrcv(struct firewire_comm* fc, uint32_t *sid, u_int len)
1317 {
1318 	uint32_t *p;
1319 	union fw_self_id *self_id;
1320 	u_int i, j, node, c_port = 0, i_branch = 0;
1321 
1322 	fc->sid_cnt = len /(sizeof(uint32_t) * 2);
1323 	fc->max_node = fc->nodeid & 0x3f;
1324 	CSRARC(fc, NODE_IDS) = ((uint32_t)fc->nodeid) << 16;
1325 	fc->status = FWBUSCYMELECT;
1326 	fc->topology_map->crc_len = 2;
1327 	fc->topology_map->generation ++;
1328 	fc->topology_map->self_id_count = 0;
1329 	fc->topology_map->node_count = 0;
1330 	fc->speed_map->generation ++;
1331 	fc->speed_map->crc_len = 1 + (64*64 + 3) / 4;
1332 	self_id = &fc->topology_map->self_id[0];
1333 	for(i = 0; i < fc->sid_cnt; i ++){
1334 		if (sid[1] != ~sid[0]) {
1335 			device_printf(fc->bdev, "%s: ERROR invalid self-id packet\n",
1336 						__func__);
1337 			sid += 2;
1338 			continue;
1339 		}
1340 		*self_id = *((union fw_self_id *)sid);
1341 		fc->topology_map->crc_len++;
1342 		if(self_id->p0.sequel == 0){
1343 			fc->topology_map->node_count ++;
1344 			c_port = 0;
1345 			if (firewire_debug)
1346 				fw_print_sid(sid[0]);
1347 			node = self_id->p0.phy_id;
1348 			if(fc->max_node < node){
1349 				fc->max_node = self_id->p0.phy_id;
1350 			}
1351 			/* XXX I'm not sure this is the right speed_map */
1352 			fc->speed_map->speed[node][node]
1353 					= self_id->p0.phy_speed;
1354 			for (j = 0; j < node; j ++) {
1355 				fc->speed_map->speed[j][node]
1356 					= fc->speed_map->speed[node][j]
1357 					= min(fc->speed_map->speed[j][j],
1358 							self_id->p0.phy_speed);
1359 			}
1360 			if ((fc->irm == -1 || self_id->p0.phy_id > fc->irm) &&
1361 			  (self_id->p0.link_active && self_id->p0.contender)) {
1362 				fc->irm = self_id->p0.phy_id;
1363 			}
1364 			if(self_id->p0.port0 >= 0x2){
1365 				c_port++;
1366 			}
1367 			if(self_id->p0.port1 >= 0x2){
1368 				c_port++;
1369 			}
1370 			if(self_id->p0.port2 >= 0x2){
1371 				c_port++;
1372 			}
1373 		}
1374 		if(c_port > 2){
1375 			i_branch += (c_port - 2);
1376 		}
1377 		sid += 2;
1378 		self_id++;
1379 		fc->topology_map->self_id_count ++;
1380 	}
1381 	/* CRC */
1382 	fc->topology_map->crc = fw_crc16(
1383 			(uint32_t *)&fc->topology_map->generation,
1384 			fc->topology_map->crc_len * 4);
1385 	fc->speed_map->crc = fw_crc16(
1386 			(uint32_t *)&fc->speed_map->generation,
1387 			fc->speed_map->crc_len * 4);
1388 	/* byteswap and copy to CSR */
1389 	p = (uint32_t *)fc->topology_map;
1390 	for (i = 0; i <= fc->topology_map->crc_len; i++)
1391 		CSRARC(fc, TOPO_MAP + i * 4) = htonl(*p++);
1392 	p = (uint32_t *)fc->speed_map;
1393 	CSRARC(fc, SPED_MAP) = htonl(*p++);
1394 	CSRARC(fc, SPED_MAP + 4) = htonl(*p++);
1395 	/* don't byte-swap uint8_t array */
1396 	bcopy(p, &CSRARC(fc, SPED_MAP + 8), (fc->speed_map->crc_len - 1)*4);
1397 
1398 	fc->max_hop = fc->max_node - i_branch;
1399 	device_printf(fc->bdev, "%d nodes, maxhop <= %d %s irm(%d) %s\n",
1400 			fc->max_node + 1, fc->max_hop,
1401 			(fc->irm == -1) ? "Not IRM capable" : "cable IRM",
1402 			fc->irm,
1403 			(fc->irm == fc->nodeid) ? " (me) " : "");
1404 
1405 	if (try_bmr && (fc->irm != -1) && (CSRARC(fc, BUS_MGR_ID) == 0x3f)) {
1406 		if (fc->irm == fc->nodeid) {
1407 			fc->status = FWBUSMGRDONE;
1408 			CSRARC(fc, BUS_MGR_ID) = fc->set_bmr(fc, fc->irm);
1409 			fw_bmr(fc);
1410 		} else {
1411 			fc->status = FWBUSMGRELECT;
1412 			callout_reset(&fc->bmr_callout, hz/8,
1413 				(void *)fw_try_bmr, (void *)fc);
1414 		}
1415 	} else
1416 		fc->status = FWBUSMGRDONE;
1417 
1418 	callout_reset(&fc->busprobe_callout, hz/4,
1419 			(void *)fw_bus_probe, (void *)fc);
1420 }
1421 
1422 /*
1423  * To probe devices on the IEEE1394 bus.
1424  */
1425 static void
1426 fw_bus_probe(struct firewire_comm *fc)
1427 {
1428 	int s;
1429 	struct fw_device *fwdev;
1430 
1431 	s = splfw();
1432 	fc->status = FWBUSEXPLORE;
1433 
1434 	/* Invalidate all devices, just after bus reset. */
1435 	if (firewire_debug)
1436 		device_printf(fc->bdev, "%s:"
1437 			"iterate and invalidate all nodes\n",
1438 			__func__);
1439 	STAILQ_FOREACH(fwdev, &fc->devices, link)
1440 		if (fwdev->status != FWDEVINVAL) {
1441 			fwdev->status = FWDEVINVAL;
1442 			fwdev->rcnt = 0;
1443 			if (firewire_debug)
1444 				device_printf(fc->bdev, "%s:"
1445 					"Invalidate Dev ID: %08x%08x\n",
1446 					__func__, fwdev->eui.hi, fwdev->eui.lo);
1447 		} else {
1448 			if (firewire_debug)
1449 				device_printf(fc->bdev, "%s:"
1450 					"Dev ID: %08x%08x already invalid\n",
1451 					__func__, fwdev->eui.hi, fwdev->eui.lo);
1452 		}
1453 	splx(s);
1454 
1455 	wakeup((void *)fc);
1456 }
1457 
1458 static int
1459 fw_explore_read_quads(struct fw_device *fwdev, int offset,
1460     uint32_t *quad, int length)
1461 {
1462 	struct fw_xfer *xfer;
1463 	uint32_t tmp;
1464 	int i, error;
1465 
1466 	for (i = 0; i < length; i ++, offset += sizeof(uint32_t)) {
1467 		xfer = fwmem_read_quad(fwdev, NULL, -1,
1468 		    0xffff, 0xf0000000 | offset, (void *)&tmp,
1469 		    fw_xferwake);
1470 		if (xfer == NULL)
1471 			return (-1);
1472 		fw_xferwait(xfer);
1473 
1474 		if (xfer->resp == 0)
1475 			quad[i] = ntohl(tmp);
1476 
1477 		error = xfer->resp;
1478 		fw_xfer_free(xfer);
1479 		if (error)
1480 			return (error);
1481 	}
1482 	return (0);
1483 }
1484 
1485 
1486 static int
1487 fw_explore_csrblock(struct fw_device *fwdev, int offset, int recur)
1488 {
1489 	int err, i, off;
1490 	struct csrdirectory *dir;
1491 	struct csrreg *reg;
1492 
1493 	dir = (struct csrdirectory *)&fwdev->csrrom[offset/sizeof(uint32_t)];
1494 	err = fw_explore_read_quads(fwdev, CSRROMOFF + offset,
1495 	    (uint32_t *)dir, 1);
1496 	if (err)
1497 		return (-1);
1498 
1499 	offset += sizeof(uint32_t);
1500 	reg = (struct csrreg *)&fwdev->csrrom[offset/sizeof(uint32_t)];
1501 	err = fw_explore_read_quads(fwdev, CSRROMOFF + offset,
1502 	    (uint32_t *)reg, dir->crc_len);
1503 	if (err)
1504 		return (-1);
1505 
1506 	/* XXX check CRC */
1507 
1508 	off = CSRROMOFF + offset + sizeof(uint32_t) * (dir->crc_len - 1);
1509 	if (fwdev->rommax < off)
1510 		fwdev->rommax = off;
1511 
1512 	if (recur == 0)
1513 		return (0);
1514 
1515 	for (i = 0; i < dir->crc_len; i ++, offset += sizeof(uint32_t)) {
1516 		if ((reg[i].key & CSRTYPE_MASK) == CSRTYPE_D)
1517 			recur = 1;
1518 		else if ((reg[i].key & CSRTYPE_MASK) == CSRTYPE_L)
1519 			recur = 0;
1520 		else
1521 			continue;
1522 
1523 		off = offset + reg[i].val * sizeof(uint32_t);
1524 		if (off > CROMSIZE) {
1525 			printf("%s: invalid offset %d\n", __FUNCTION__, off);
1526 			return(-1);
1527 		}
1528 		err = fw_explore_csrblock(fwdev, off, recur);
1529 		if (err)
1530 			return (-1);
1531 	}
1532 	return (0);
1533 }
1534 
1535 static int
1536 fw_explore_node(struct fw_device *dfwdev)
1537 {
1538 	struct firewire_comm *fc;
1539 	struct fw_device *fwdev, *pfwdev, *tfwdev;
1540 	uint32_t *csr;
1541 	struct csrhdr *hdr;
1542 	struct bus_info *binfo;
1543 	int err, node;
1544 	uint32_t speed_test = 0;
1545 
1546 	fc = dfwdev->fc;
1547 	csr = dfwdev->csrrom;
1548 	node = dfwdev->dst;
1549 
1550 	/* First quad */
1551 	err = fw_explore_read_quads(dfwdev, CSRROMOFF, &csr[0], 1);
1552 	if (err) {
1553 		device_printf(fc->bdev, "%s: node%d: explore_read_quads failure\n",
1554 		    __func__, node);
1555 		dfwdev->status = FWDEVINVAL;
1556 		return (-1);
1557 	}
1558 	hdr = (struct csrhdr *)&csr[0];
1559 	if (hdr->info_len != 4) {
1560 		if (firewire_debug)
1561 			device_printf(fc->bdev, "%s: node%d: wrong bus info len(%d)\n",
1562 			    __func__, node, hdr->info_len);
1563 		dfwdev->status = FWDEVINVAL;
1564 		return (-1);
1565 	}
1566 
1567 	/* bus info */
1568 	err = fw_explore_read_quads(dfwdev, CSRROMOFF + 0x04, &csr[1], 4);
1569 	if (err) {
1570 		device_printf(fc->bdev, "%s: node%d: error reading 0x04\n",
1571 		    __func__, node);
1572 		dfwdev->status = FWDEVINVAL;
1573 		return (-1);
1574 	}
1575 	binfo = (struct bus_info *)&csr[1];
1576 	if (binfo->bus_name != CSR_BUS_NAME_IEEE1394) {
1577 		device_printf(fc->bdev, "%s: node%d: invalid bus name 0x%08x\n",
1578 		    __func__, node, binfo->bus_name);
1579 		dfwdev->status = FWDEVINVAL;
1580 		return (-1);
1581 	}
1582 
1583 	if (firewire_debug)
1584 		device_printf(fc->bdev, "%s: node(%d) BUS INFO BLOCK:\n"
1585 					"irmc(%d) cmc(%d) isc(%d) bmc(%d) pmc(%d) "
1586 					"cyc_clk_acc(%d) max_rec(%d) max_rom(%d) "
1587 					"generation(%d) link_spd(%d)\n",
1588 					__func__, node,
1589 					binfo->irmc, binfo->cmc, binfo->isc,
1590 					binfo->bmc, binfo->pmc, binfo->cyc_clk_acc,
1591 					binfo->max_rec, binfo->max_rom,
1592 					binfo->generation, binfo->link_spd);
1593 
1594 	STAILQ_FOREACH(fwdev, &fc->devices, link)
1595 		if (FW_EUI64_EQUAL(fwdev->eui, binfo->eui64))
1596 			break;
1597 	if (fwdev == NULL) {
1598 		/* new device */
1599 		fwdev = malloc(sizeof(struct fw_device), M_FW,
1600 						M_NOWAIT | M_ZERO);
1601 		if (fwdev == NULL) {
1602 			device_printf(fc->bdev, "%s: node%d: no memory\n",
1603 					__func__, node);
1604 			return (-1);
1605 		}
1606 		fwdev->fc = fc;
1607 		fwdev->eui = binfo->eui64;
1608 		fwdev->dst = dfwdev->dst;
1609 		fwdev->maxrec = dfwdev->maxrec;
1610 		fwdev->status = dfwdev->status;
1611 
1612 		/*
1613 		 * Pre-1394a-2000 didn't have link_spd in
1614 		 * the Bus Info block, so try and use the
1615 		 * speed map value.
1616 		 * 1394a-2000 compliant devices only use
1617 		 * the Bus Info Block link spd value, so
1618 		 * ignore the speed map alltogether. SWB
1619 		 */
1620 		if ( binfo->link_spd == FWSPD_S100 /* 0 */) {
1621 			device_printf(fc->bdev, "%s: "
1622 				"Pre 1394a-2000 detected\n",
1623 				__func__);
1624 			fwdev->speed = fc->speed_map->speed[fc->nodeid][node];
1625 		} else
1626 			fwdev->speed = binfo->link_spd;
1627 		/*
1628 		 * Test this speed with a read to the CSRROM.
1629 		 * If it fails, slow down the speed and retry.
1630 		 */
1631 		while (fwdev->speed > FWSPD_S100 /* 0 */) {
1632 			err = fw_explore_read_quads(fwdev, CSRROMOFF,
1633             				&speed_test, 1);
1634 			if (err) {
1635 				device_printf(fc->bdev, "%s: fwdev->speed(%s)"
1636 						" decremented due to negotiation\n",
1637 						__func__,
1638 						linkspeed[fwdev->speed]);
1639 				fwdev->speed--;
1640 			} else
1641 				break;
1642 
1643 		}
1644 		/* inesrt into sorted fwdev list */
1645 		pfwdev = NULL;
1646 		STAILQ_FOREACH(tfwdev, &fc->devices, link) {
1647 			if (tfwdev->eui.hi > fwdev->eui.hi ||
1648 				(tfwdev->eui.hi == fwdev->eui.hi &&
1649 				tfwdev->eui.lo > fwdev->eui.lo))
1650 				break;
1651 			pfwdev = tfwdev;
1652 		}
1653 		if (pfwdev == NULL)
1654 			STAILQ_INSERT_HEAD(&fc->devices, fwdev, link);
1655 		else
1656 			STAILQ_INSERT_AFTER(&fc->devices, pfwdev, fwdev, link);
1657 
1658 		device_printf(fc->bdev, "New %s device ID:%08x%08x\n",
1659 		    linkspeed[fwdev->speed],
1660 		    fwdev->eui.hi, fwdev->eui.lo);
1661 	} else {
1662 		fwdev->dst = node;
1663 		fwdev->status = FWDEVINIT;
1664 		/* unchanged ? */
1665 		if (bcmp(&csr[0], &fwdev->csrrom[0], sizeof(uint32_t) * 5) == 0) {
1666 			if (firewire_debug)
1667 				device_printf(fc->dev, "node%d: crom unchanged\n", node);
1668 			return (0);
1669 		}
1670 	}
1671 
1672 	bzero(&fwdev->csrrom[0], CROMSIZE);
1673 
1674 	/* copy first quad and bus info block */
1675 	bcopy(&csr[0], &fwdev->csrrom[0], sizeof(uint32_t) * 5);
1676 	fwdev->rommax = CSRROMOFF + sizeof(uint32_t) * 4;
1677 
1678 	err = fw_explore_csrblock(fwdev, 0x14, 1); /* root directory */
1679 
1680 	if (err) {
1681 		if (firewire_debug)
1682 			device_printf(fc->dev, "%s: explore csrblock failed err(%d)\n",
1683 					__func__, err);
1684 		fwdev->status = FWDEVINVAL;
1685 		fwdev->csrrom[0] = 0;
1686 	}
1687 	return (err);
1688 
1689 }
1690 
1691 /*
1692  * Find the self_id packet for a node, ignoring sequels.
1693  */
1694 static union fw_self_id *
1695 fw_find_self_id(struct firewire_comm *fc, int node)
1696 {
1697 	uint32_t i;
1698 	union fw_self_id *s;
1699 
1700 	for (i = 0; i < fc->topology_map->self_id_count; i++) {
1701 		s = &fc->topology_map->self_id[i];
1702 		if (s->p0.sequel)
1703 			continue;
1704 		if (s->p0.phy_id == node)
1705 			return s;
1706 	}
1707 	return 0;
1708 }
1709 
1710 static void
1711 fw_explore(struct firewire_comm *fc)
1712 {
1713 	int node, err, s, i, todo, todo2, trys;
1714 	char nodes[63];
1715 	struct fw_device dfwdev;
1716 	union fw_self_id *fwsid;
1717 
1718 	todo = 0;
1719 	/* setup dummy fwdev */
1720 	dfwdev.fc = fc;
1721 	dfwdev.speed = 0;
1722 	dfwdev.maxrec = 8; /* 512 */
1723 	dfwdev.status = FWDEVINIT;
1724 
1725 	for (node = 0; node <= fc->max_node; node ++) {
1726 		/* We don't probe myself and linkdown nodes */
1727 		if (node == fc->nodeid) {
1728 			if (firewire_debug)
1729 				device_printf(fc->bdev, "%s:"
1730 					"found myself node(%d) fc->nodeid(%d) fc->max_node(%d)\n",
1731 					__func__, node, fc->nodeid, fc->max_node);
1732 			continue;
1733 		} else if (firewire_debug) {
1734 			device_printf(fc->bdev, "%s:"
1735 				"node(%d) fc->max_node(%d) found\n",
1736 				__func__, node, fc->max_node);
1737 		}
1738 		fwsid = fw_find_self_id(fc, node);
1739 		if (!fwsid || !fwsid->p0.link_active) {
1740 			if (firewire_debug)
1741 				device_printf(fc->bdev, "%s: node%d: link down\n",
1742 							__func__, node);
1743 			continue;
1744 		}
1745 		nodes[todo++] = node;
1746 	}
1747 
1748 	s = splfw();
1749 	for (trys = 0; todo > 0 && trys < 3; trys ++) {
1750 		todo2 = 0;
1751 		for (i = 0; i < todo; i ++) {
1752 			dfwdev.dst = nodes[i];
1753 			err = fw_explore_node(&dfwdev);
1754 			if (err)
1755 				nodes[todo2++] = nodes[i];
1756 			if (firewire_debug)
1757 				device_printf(fc->bdev, "%s: node %d, err = %d\n",
1758 					__func__, node, err);
1759 		}
1760 		todo = todo2;
1761 	}
1762 	splx(s);
1763 }
1764 
1765 
1766 static void
1767 fw_bus_probe_thread(void *arg)
1768 {
1769 	struct firewire_comm *fc;
1770 
1771 	fc = (struct firewire_comm *)arg;
1772 
1773 	mtx_lock(&fc->wait_lock);
1774 	while (fc->status != FWBUSDETACH) {
1775 		if (fc->status == FWBUSEXPLORE) {
1776 			mtx_unlock(&fc->wait_lock);
1777 			fw_explore(fc);
1778 			fc->status = FWBUSEXPDONE;
1779 			if (firewire_debug)
1780 				printf("bus_explore done\n");
1781 			fw_attach_dev(fc);
1782 			mtx_lock(&fc->wait_lock);
1783 		}
1784 		msleep((void *)fc, &fc->wait_lock, PWAIT|PCATCH, "-", 0);
1785 	}
1786 	mtx_unlock(&fc->wait_lock);
1787 	kproc_exit(0);
1788 }
1789 
1790 /*
1791  * To attach sub-devices layer onto IEEE1394 bus.
1792  */
1793 static void
1794 fw_attach_dev(struct firewire_comm *fc)
1795 {
1796 	struct fw_device *fwdev, *next;
1797 	int i, err;
1798 	device_t *devlistp;
1799 	int devcnt;
1800 	struct firewire_dev_comm *fdc;
1801 
1802 	for (fwdev = STAILQ_FIRST(&fc->devices); fwdev != NULL; fwdev = next) {
1803 		next = STAILQ_NEXT(fwdev, link);
1804 		if (fwdev->status == FWDEVINIT) {
1805 			fwdev->status = FWDEVATTACHED;
1806 		} else if (fwdev->status == FWDEVINVAL) {
1807 			fwdev->rcnt ++;
1808 			if (firewire_debug)
1809 				device_printf(fc->bdev, "%s:"
1810 					"fwdev->rcnt(%d), hold_count(%d)\n",
1811 					__func__, fwdev->rcnt, hold_count);
1812 			if (fwdev->rcnt > hold_count) {
1813 				/*
1814 				 * Remove devices which have not been seen
1815 				 * for a while.
1816 				 */
1817 				device_printf(fc->bdev, "%s:"
1818 					"Removing missing device ID:%08x%08x\n",
1819 					__func__, fwdev->eui.hi, fwdev->eui.lo);
1820 				STAILQ_REMOVE(&fc->devices, fwdev, fw_device,
1821 				    link);
1822 				free(fwdev, M_FW);
1823 			}
1824 		}
1825 	}
1826 
1827 	err = device_get_children(fc->bdev, &devlistp, &devcnt);
1828 	if( err == 0 ) {
1829 		for( i = 0 ; i < devcnt ; i++){
1830 			if (device_get_state(devlistp[i]) >= DS_ATTACHED)  {
1831 				fdc = device_get_softc(devlistp[i]);
1832 				if (fdc->post_explore != NULL)
1833 					fdc->post_explore(fdc);
1834 			}
1835 		}
1836 		free(devlistp, M_TEMP);
1837 	}
1838 
1839 	return;
1840 }
1841 
1842 /*
1843  * To allocate unique transaction label.
1844  */
1845 static int
1846 fw_get_tlabel(struct firewire_comm *fc, struct fw_xfer *xfer)
1847 {
1848 	u_int dst, new_tlabel;
1849 	struct fw_xfer *txfer;
1850 	int s;
1851 
1852 	dst = xfer->send.hdr.mode.hdr.dst & 0x3f;
1853 	s = splfw();
1854 	mtx_lock(&fc->tlabel_lock);
1855 	new_tlabel = (fc->last_tlabel[dst] + 1) & 0x3f;
1856 	STAILQ_FOREACH(txfer, &fc->tlabels[new_tlabel], tlabel)
1857 		if ((txfer->send.hdr.mode.hdr.dst & 0x3f) == dst)
1858 				break;
1859 	if(txfer == NULL) {
1860 		fc->last_tlabel[dst] = new_tlabel;
1861 		STAILQ_INSERT_TAIL(&fc->tlabels[new_tlabel], xfer, tlabel);
1862 		mtx_unlock(&fc->tlabel_lock);
1863 		splx(s);
1864 		xfer->tl = new_tlabel;
1865 		xfer->send.hdr.mode.hdr.tlrt = new_tlabel << 2;
1866 		if (firewire_debug > 1)
1867 			printf("fw_get_tlabel: dst=%d tl=%d\n", dst, new_tlabel);
1868 		return (new_tlabel);
1869 	}
1870 	mtx_unlock(&fc->tlabel_lock);
1871 	splx(s);
1872 
1873 	if (firewire_debug > 1)
1874 		printf("fw_get_tlabel: no free tlabel\n");
1875 	return (-1);
1876 }
1877 
1878 static void
1879 fw_rcv_copy(struct fw_rcv_buf *rb)
1880 {
1881 	struct fw_pkt *pkt;
1882 	u_char *p;
1883 	struct tcode_info *tinfo;
1884 	u_int res, i, len, plen;
1885 
1886 	rb->xfer->recv.spd = rb->spd;
1887 
1888 	pkt = (struct fw_pkt *)rb->vec->iov_base;
1889 	tinfo = &rb->fc->tcode[pkt->mode.hdr.tcode];
1890 
1891 	/* Copy header */
1892 	p = (u_char *)&rb->xfer->recv.hdr;
1893 	bcopy(rb->vec->iov_base, p, tinfo->hdr_len);
1894 	rb->vec->iov_base = (u_char *)rb->vec->iov_base + tinfo->hdr_len;
1895 	rb->vec->iov_len -= tinfo->hdr_len;
1896 
1897 	/* Copy payload */
1898 	p = (u_char *)rb->xfer->recv.payload;
1899 	res = rb->xfer->recv.pay_len;
1900 
1901 	/* special handling for RRESQ */
1902 	if (pkt->mode.hdr.tcode == FWTCODE_RRESQ &&
1903 	    p != NULL && res >= sizeof(uint32_t)) {
1904 		*(uint32_t *)p = pkt->mode.rresq.data;
1905 		rb->xfer->recv.pay_len = sizeof(uint32_t);
1906 		return;
1907 	}
1908 
1909 	if ((tinfo->flag & FWTI_BLOCK_ASY) == 0)
1910 		return;
1911 
1912 	plen = pkt->mode.rresb.len;
1913 
1914 	for (i = 0; i < rb->nvec; i++, rb->vec++) {
1915 		len = MIN(rb->vec->iov_len, plen);
1916 		if (res < len) {
1917 			device_printf(rb->fc->bdev, "%s:"
1918 				" rcv buffer(%d) is %d bytes short.\n",
1919 				__func__, rb->xfer->recv.pay_len, len - res);
1920 			len = res;
1921 		}
1922 		bcopy(rb->vec->iov_base, p, len);
1923 		p += len;
1924 		res -= len;
1925 		plen -= len;
1926 		if (res == 0 || plen == 0)
1927 			break;
1928 	}
1929 	rb->xfer->recv.pay_len -= res;
1930 
1931 }
1932 
1933 /*
1934  * Generic packet receiving process.
1935  */
1936 void
1937 fw_rcv(struct fw_rcv_buf *rb)
1938 {
1939 	struct fw_pkt *fp, *resfp;
1940 	struct fw_bind *bind;
1941 	int tcode;
1942 	int i, len, oldstate;
1943 #if 0
1944 	{
1945 		uint32_t *qld;
1946 		int i;
1947 		qld = (uint32_t *)buf;
1948 		printf("spd %d len:%d\n", spd, len);
1949 		for( i = 0 ; i <= len && i < 32; i+= 4){
1950 			printf("0x%08x ", ntohl(qld[i/4]));
1951 			if((i % 16) == 15) printf("\n");
1952 		}
1953 		if((i % 16) != 15) printf("\n");
1954 	}
1955 #endif
1956 	fp = (struct fw_pkt *)rb->vec[0].iov_base;
1957 	tcode = fp->mode.common.tcode;
1958 	switch (tcode) {
1959 	case FWTCODE_WRES:
1960 	case FWTCODE_RRESQ:
1961 	case FWTCODE_RRESB:
1962 	case FWTCODE_LRES:
1963 		rb->xfer = fw_tl2xfer(rb->fc, fp->mode.hdr.src,
1964 				fp->mode.hdr.tlrt >> 2, fp->mode.hdr.tcode);
1965 		if(rb->xfer == NULL) {
1966 			device_printf(rb->fc->bdev, "%s: "
1967 				"unknown response "
1968 			    	"%s(%x) src=0x%x tl=0x%x rt=%d data=0x%x\n",
1969 				__func__,
1970 			    	tcode_str[tcode], tcode,
1971 				fp->mode.hdr.src,
1972 				fp->mode.hdr.tlrt >> 2,
1973 				fp->mode.hdr.tlrt & 3,
1974 				fp->mode.rresq.data);
1975 #if 0
1976 			printf("try ad-hoc work around!!\n");
1977 			rb->xfer = fw_tl2xfer(rb->fc, fp->mode.hdr.src,
1978 					(fp->mode.hdr.tlrt >> 2)^3);
1979 			if (rb->xfer == NULL) {
1980 				printf("no use...\n");
1981 				return;
1982 			}
1983 #else
1984 			return;
1985 #endif
1986 		}
1987 		fw_rcv_copy(rb);
1988 		if (rb->xfer->recv.hdr.mode.wres.rtcode != RESP_CMP)
1989 			rb->xfer->resp = EIO;
1990 		else
1991 			rb->xfer->resp = 0;
1992 		/* make sure the packet is drained in AT queue */
1993 		oldstate = rb->xfer->flag;
1994 		rb->xfer->flag = FWXF_RCVD;
1995 		switch (oldstate) {
1996 		case FWXF_SENT:
1997 			fw_xfer_done(rb->xfer);
1998 			break;
1999 		case FWXF_START:
2000 #if 0
2001 			if (firewire_debug)
2002 				printf("not sent yet tl=%x\n", rb->xfer->tl);
2003 #endif
2004 			break;
2005 		default:
2006 			device_printf(rb->fc->bdev, "%s: "
2007 				"unexpected flag 0x%02x\n", __func__, rb->xfer->flag);
2008 		}
2009 		return;
2010 	case FWTCODE_WREQQ:
2011 	case FWTCODE_WREQB:
2012 	case FWTCODE_RREQQ:
2013 	case FWTCODE_RREQB:
2014 	case FWTCODE_LREQ:
2015 		bind = fw_bindlookup(rb->fc, fp->mode.rreqq.dest_hi,
2016 			fp->mode.rreqq.dest_lo);
2017 		if(bind == NULL){
2018 			device_printf(rb->fc->bdev, "%s: "
2019 				"Unknown service addr 0x%04x:0x%08x %s(%x)"
2020 #if defined(__DragonFly__) || __FreeBSD_version < 500000
2021 				" src=0x%x data=%lx\n",
2022 #else
2023 				" src=0x%x data=%x\n",
2024 #endif
2025 				__func__,
2026 				fp->mode.wreqq.dest_hi,
2027 				fp->mode.wreqq.dest_lo,
2028 				tcode_str[tcode], tcode,
2029 				fp->mode.hdr.src,
2030 				ntohl(fp->mode.wreqq.data));
2031 
2032 			if (rb->fc->status == FWBUSINIT) {
2033 				device_printf(rb->fc->bdev, "%s: cannot respond(bus reset)!\n",
2034 						__func__);
2035 				return;
2036 			}
2037 			rb->xfer = fw_xfer_alloc(M_FWXFER);
2038 			if(rb->xfer == NULL){
2039 				return;
2040 			}
2041 			rb->xfer->send.spd = rb->spd;
2042 			rb->xfer->send.pay_len = 0;
2043 			resfp = &rb->xfer->send.hdr;
2044 			switch (tcode) {
2045 			case FWTCODE_WREQQ:
2046 			case FWTCODE_WREQB:
2047 				resfp->mode.hdr.tcode = FWTCODE_WRES;
2048 				break;
2049 			case FWTCODE_RREQQ:
2050 				resfp->mode.hdr.tcode = FWTCODE_RRESQ;
2051 				break;
2052 			case FWTCODE_RREQB:
2053 				resfp->mode.hdr.tcode = FWTCODE_RRESB;
2054 				break;
2055 			case FWTCODE_LREQ:
2056 				resfp->mode.hdr.tcode = FWTCODE_LRES;
2057 				break;
2058 			}
2059 			resfp->mode.hdr.dst = fp->mode.hdr.src;
2060 			resfp->mode.hdr.tlrt = fp->mode.hdr.tlrt;
2061 			resfp->mode.hdr.pri = fp->mode.hdr.pri;
2062 			resfp->mode.rresb.rtcode = RESP_ADDRESS_ERROR;
2063 			resfp->mode.rresb.extcode = 0;
2064 			resfp->mode.rresb.len = 0;
2065 /*
2066 			rb->xfer->hand = fw_xferwake;
2067 */
2068 			rb->xfer->hand = fw_xfer_free;
2069 			if(fw_asyreq(rb->fc, -1, rb->xfer)){
2070 				fw_xfer_free(rb->xfer);
2071 				return;
2072 			}
2073 			return;
2074 		}
2075 		len = 0;
2076 		for (i = 0; i < rb->nvec; i ++)
2077 			len += rb->vec[i].iov_len;
2078 		rb->xfer = STAILQ_FIRST(&bind->xferlist);
2079 		if (rb->xfer == NULL) {
2080 			device_printf(rb->fc->bdev, "%s: "
2081 				"Discard a packet for this bind.\n",
2082 				__func__);
2083 			return;
2084 		}
2085 		STAILQ_REMOVE_HEAD(&bind->xferlist, link);
2086 		fw_rcv_copy(rb);
2087 		rb->xfer->hand(rb->xfer);
2088 		return;
2089 #if 0 /* shouldn't happen ?? or for GASP */
2090 	case FWTCODE_STREAM:
2091 	{
2092 		struct fw_xferq *xferq;
2093 
2094 		xferq = rb->fc->ir[sub];
2095 #if 0
2096 		printf("stream rcv dma %d len %d off %d spd %d\n",
2097 			sub, len, off, spd);
2098 #endif
2099 		if(xferq->queued >= xferq->maxq) {
2100 			printf("receive queue is full\n");
2101 			return;
2102 		}
2103 		/* XXX get xfer from xfer queue, we don't need copy for
2104 			per packet mode */
2105 		rb->xfer = fw_xfer_alloc_buf(M_FWXFER, 0, /* XXX */
2106 						vec[0].iov_len);
2107 		if (rb->xfer == NULL)
2108 			return;
2109 		fw_rcv_copy(rb)
2110 		s = splfw();
2111 		xferq->queued++;
2112 		STAILQ_INSERT_TAIL(&xferq->q, rb->xfer, link);
2113 		splx(s);
2114 		sc = device_get_softc(rb->fc->bdev);
2115 #if defined(__DragonFly__) || __FreeBSD_version < 500000
2116 		if (&xferq->rsel.si_pid != 0)
2117 #else
2118 		if (SEL_WAITING(&xferq->rsel))
2119 #endif
2120 			selwakeuppri(&xferq->rsel, FWPRI);
2121 		if (xferq->flag & FWXFERQ_WAKEUP) {
2122 			xferq->flag &= ~FWXFERQ_WAKEUP;
2123 			wakeup((caddr_t)xferq);
2124 		}
2125 		if (xferq->flag & FWXFERQ_HANDLER) {
2126 			xferq->hand(xferq);
2127 		}
2128 		return;
2129 		break;
2130 	}
2131 #endif
2132 	default:
2133 		device_printf(rb->fc->bdev,"%s: unknown tcode %d\n",
2134 				__func__, tcode);
2135 		break;
2136 	}
2137 }
2138 
2139 /*
2140  * Post process for Bus Manager election process.
2141  */
2142 static void
2143 fw_try_bmr_callback(struct fw_xfer *xfer)
2144 {
2145 	struct firewire_comm *fc;
2146 	int bmr;
2147 
2148 	if (xfer == NULL)
2149 		return;
2150 	fc = xfer->fc;
2151 	if (xfer->resp != 0)
2152 		goto error;
2153 	if (xfer->recv.payload == NULL)
2154 		goto error;
2155 	if (xfer->recv.hdr.mode.lres.rtcode != FWRCODE_COMPLETE)
2156 		goto error;
2157 
2158 	bmr = ntohl(xfer->recv.payload[0]);
2159 	if (bmr == 0x3f)
2160 		bmr = fc->nodeid;
2161 
2162 	CSRARC(fc, BUS_MGR_ID) = fc->set_bmr(fc, bmr & 0x3f);
2163 	fw_xfer_free_buf(xfer);
2164 	fw_bmr(fc);
2165 	return;
2166 
2167 error:
2168 	device_printf(fc->bdev, "bus manager election failed\n");
2169 	fw_xfer_free_buf(xfer);
2170 }
2171 
2172 
2173 /*
2174  * To candidate Bus Manager election process.
2175  */
2176 static void
2177 fw_try_bmr(void *arg)
2178 {
2179 	struct fw_xfer *xfer;
2180 	struct firewire_comm *fc = (struct firewire_comm *)arg;
2181 	struct fw_pkt *fp;
2182 	int err = 0;
2183 
2184 	xfer = fw_xfer_alloc_buf(M_FWXFER, 8, 4);
2185 	if(xfer == NULL){
2186 		return;
2187 	}
2188 	xfer->send.spd = 0;
2189 	fc->status = FWBUSMGRELECT;
2190 
2191 	fp = &xfer->send.hdr;
2192 	fp->mode.lreq.dest_hi = 0xffff;
2193 	fp->mode.lreq.tlrt = 0;
2194 	fp->mode.lreq.tcode = FWTCODE_LREQ;
2195 	fp->mode.lreq.pri = 0;
2196 	fp->mode.lreq.src = 0;
2197 	fp->mode.lreq.len = 8;
2198 	fp->mode.lreq.extcode = EXTCODE_CMP_SWAP;
2199 	fp->mode.lreq.dst = FWLOCALBUS | fc->irm;
2200 	fp->mode.lreq.dest_lo = 0xf0000000 | BUS_MGR_ID;
2201 	xfer->send.payload[0] = htonl(0x3f);
2202 	xfer->send.payload[1] = htonl(fc->nodeid);
2203 	xfer->hand = fw_try_bmr_callback;
2204 
2205 	err = fw_asyreq(fc, -1, xfer);
2206 	if(err){
2207 		fw_xfer_free_buf(xfer);
2208 		return;
2209 	}
2210 	return;
2211 }
2212 
2213 #ifdef FW_VMACCESS
2214 /*
2215  * Software implementation for physical memory block access.
2216  * XXX:Too slow, usef for debug purpose only.
2217  */
2218 static void
2219 fw_vmaccess(struct fw_xfer *xfer){
2220 	struct fw_pkt *rfp, *sfp = NULL;
2221 	uint32_t *ld = (uint32_t *)xfer->recv.buf;
2222 
2223 	printf("vmaccess spd:%2x len:%03x data:%08x %08x %08x %08x\n",
2224 			xfer->spd, xfer->recv.len, ntohl(ld[0]), ntohl(ld[1]), ntohl(ld[2]), ntohl(ld[3]));
2225 	printf("vmaccess          data:%08x %08x %08x %08x\n", ntohl(ld[4]), ntohl(ld[5]), ntohl(ld[6]), ntohl(ld[7]));
2226 	if(xfer->resp != 0){
2227 		fw_xfer_free( xfer);
2228 		return;
2229 	}
2230 	if(xfer->recv.buf == NULL){
2231 		fw_xfer_free( xfer);
2232 		return;
2233 	}
2234 	rfp = (struct fw_pkt *)xfer->recv.buf;
2235 	switch(rfp->mode.hdr.tcode){
2236 		/* XXX need fix for 64bit arch */
2237 		case FWTCODE_WREQB:
2238 			xfer->send.buf = malloc(12, M_FW, M_NOWAIT);
2239 			xfer->send.len = 12;
2240 			sfp = (struct fw_pkt *)xfer->send.buf;
2241 			bcopy(rfp->mode.wreqb.payload,
2242 				(caddr_t)ntohl(rfp->mode.wreqb.dest_lo), ntohs(rfp->mode.wreqb.len));
2243 			sfp->mode.wres.tcode = FWTCODE_WRES;
2244 			sfp->mode.wres.rtcode = 0;
2245 			break;
2246 		case FWTCODE_WREQQ:
2247 			xfer->send.buf = malloc(12, M_FW, M_NOWAIT);
2248 			xfer->send.len = 12;
2249 			sfp->mode.wres.tcode = FWTCODE_WRES;
2250 			*((uint32_t *)(ntohl(rfp->mode.wreqb.dest_lo))) = rfp->mode.wreqq.data;
2251 			sfp->mode.wres.rtcode = 0;
2252 			break;
2253 		case FWTCODE_RREQB:
2254 			xfer->send.buf = malloc(16 + rfp->mode.rreqb.len, M_FW, M_NOWAIT);
2255 			xfer->send.len = 16 + ntohs(rfp->mode.rreqb.len);
2256 			sfp = (struct fw_pkt *)xfer->send.buf;
2257 			bcopy((caddr_t)ntohl(rfp->mode.rreqb.dest_lo),
2258 				sfp->mode.rresb.payload, (uint16_t)ntohs(rfp->mode.rreqb.len));
2259 			sfp->mode.rresb.tcode = FWTCODE_RRESB;
2260 			sfp->mode.rresb.len = rfp->mode.rreqb.len;
2261 			sfp->mode.rresb.rtcode = 0;
2262 			sfp->mode.rresb.extcode = 0;
2263 			break;
2264 		case FWTCODE_RREQQ:
2265 			xfer->send.buf = malloc(16, M_FW, M_NOWAIT);
2266 			xfer->send.len = 16;
2267 			sfp = (struct fw_pkt *)xfer->send.buf;
2268 			sfp->mode.rresq.data = *(uint32_t *)(ntohl(rfp->mode.rreqq.dest_lo));
2269 			sfp->mode.wres.tcode = FWTCODE_RRESQ;
2270 			sfp->mode.rresb.rtcode = 0;
2271 			break;
2272 		default:
2273 			fw_xfer_free( xfer);
2274 			return;
2275 	}
2276 	sfp->mode.hdr.dst = rfp->mode.hdr.src;
2277 	xfer->dst = ntohs(rfp->mode.hdr.src);
2278 	xfer->hand = fw_xfer_free;
2279 
2280 	sfp->mode.hdr.tlrt = rfp->mode.hdr.tlrt;
2281 	sfp->mode.hdr.pri = 0;
2282 
2283 	fw_asyreq(xfer->fc, -1, xfer);
2284 /**/
2285 	return;
2286 }
2287 #endif
2288 
2289 /*
2290  * CRC16 check-sum for IEEE1394 register blocks.
2291  */
2292 uint16_t
2293 fw_crc16(uint32_t *ptr, uint32_t len){
2294 	uint32_t i, sum, crc = 0;
2295 	int shift;
2296 	len = (len + 3) & ~3;
2297 	for(i = 0 ; i < len ; i+= 4){
2298 		for( shift = 28 ; shift >= 0 ; shift -= 4){
2299 			sum = ((crc >> 12) ^ (ptr[i/4] >> shift)) & 0xf;
2300 			crc = (crc << 4) ^ ( sum << 12 ) ^ ( sum << 5) ^ sum;
2301 		}
2302 		crc &= 0xffff;
2303 	}
2304 	return((uint16_t) crc);
2305 }
2306 
2307 /*
2308  * Find the root node, if it is not
2309  * Cycle Master Capable, then we should
2310  * override this and become the Cycle
2311  * Master
2312  */
2313 static int
2314 fw_bmr(struct firewire_comm *fc)
2315 {
2316 	struct fw_device fwdev;
2317 	union fw_self_id *self_id;
2318 	int cmstr;
2319 	uint32_t quad;
2320 
2321 	/* Check to see if the current root node is cycle master capable */
2322 	self_id = fw_find_self_id(fc, fc->max_node);
2323 	if (fc->max_node > 0) {
2324 		/* XXX check cmc bit of businfo block rather than contender */
2325 		if (self_id->p0.link_active && self_id->p0.contender)
2326 			cmstr = fc->max_node;
2327 		else {
2328 			device_printf(fc->bdev,
2329 				"root node is not cycle master capable\n");
2330 			/* XXX shall we be the cycle master? */
2331 			cmstr = fc->nodeid;
2332 			/* XXX need bus reset */
2333 		}
2334 	} else
2335 		cmstr = -1;
2336 
2337 	device_printf(fc->bdev, "bus manager %d %s\n",
2338 		CSRARC(fc, BUS_MGR_ID),
2339 		(CSRARC(fc, BUS_MGR_ID) != fc->nodeid) ? "(me)" : "");
2340 	if(CSRARC(fc, BUS_MGR_ID) != fc->nodeid) {
2341 		/* We are not the bus manager */
2342 		return(0);
2343 	}
2344 
2345 	/* Optimize gapcount */
2346 	if(fc->max_hop <= MAX_GAPHOP )
2347 		fw_phy_config(fc, cmstr, gap_cnt[fc->max_hop]);
2348 	/* If we are the cycle master, nothing to do */
2349 	if (cmstr == fc->nodeid || cmstr == -1)
2350 		return 0;
2351 	/* Bus probe has not finished, make dummy fwdev for cmstr */
2352 	bzero(&fwdev, sizeof(fwdev));
2353 	fwdev.fc = fc;
2354 	fwdev.dst = cmstr;
2355 	fwdev.speed = 0;
2356 	fwdev.maxrec = 8; /* 512 */
2357 	fwdev.status = FWDEVINIT;
2358 	/* Set cmstr bit on the cycle master */
2359 	quad = htonl(1 << 8);
2360 	fwmem_write_quad(&fwdev, NULL, 0/*spd*/,
2361 		0xffff, 0xf0000000 | STATE_SET, &quad, fw_asy_callback_free);
2362 
2363 	return 0;
2364 }
2365 
2366 int
2367 fw_open_isodma(struct firewire_comm *fc, int tx)
2368 {
2369 	struct fw_xferq **xferqa;
2370 	struct fw_xferq *xferq;
2371 	int i;
2372 
2373 	if (tx)
2374 		xferqa = &fc->it[0];
2375 	else
2376 		xferqa = &fc->ir[0];
2377 
2378 	FW_GLOCK(fc);
2379 	for (i = 0; i < fc->nisodma; i ++) {
2380 		xferq = xferqa[i];
2381 		if ((xferq->flag & FWXFERQ_OPEN) == 0) {
2382 			xferq->flag |= FWXFERQ_OPEN;
2383 			break;
2384 		}
2385 	}
2386 	if (i == fc->nisodma) {
2387 		printf("no free dma channel (tx=%d)\n", tx);
2388 		i = -1;
2389 	}
2390 	FW_GUNLOCK(fc);
2391 	return (i);
2392 }
2393 
2394 static int
2395 fw_modevent(module_t mode, int type, void *data)
2396 {
2397 	int err = 0;
2398 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
2399 	static eventhandler_tag fwdev_ehtag = NULL;
2400 #endif
2401 
2402 	switch (type) {
2403 	case MOD_LOAD:
2404 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
2405 		fwdev_ehtag = EVENTHANDLER_REGISTER(dev_clone,
2406 						fwdev_clone, 0, 1000);
2407 #endif
2408 		break;
2409 	case MOD_UNLOAD:
2410 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
2411 		if (fwdev_ehtag != NULL)
2412 			EVENTHANDLER_DEREGISTER(dev_clone, fwdev_ehtag);
2413 #endif
2414 		break;
2415 	case MOD_SHUTDOWN:
2416 		break;
2417 	default:
2418 		return (EOPNOTSUPP);
2419 	}
2420 	return (err);
2421 }
2422 
2423 
2424 #ifdef __DragonFly__
2425 DECLARE_DUMMY_MODULE(firewire);
2426 #endif
2427 DRIVER_MODULE(firewire,fwohci,firewire_driver,firewire_devclass,fw_modevent,0);
2428 MODULE_VERSION(firewire, 1);
2429