From owner-freebsd-firewire Wed Feb 19 21:34:34 2003 Delivered-To: freebsd-firewire@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12AA137B401 for ; Wed, 19 Feb 2003 21:34:33 -0800 (PST) Received: from is1.mh.itc.u-tokyo.ac.jp (is1.mh.itc.u-tokyo.ac.jp [133.11.205.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF03443FA3 for ; Wed, 19 Feb 2003 21:34:30 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from is1.mh.itc.u-tokyo.ac.jp (is1.mh.itc.u-tokyo.ac.jp [127.0.0.1]) by is1.mh.itc.u-tokyo.ac.jp (Postfix) with ESMTP id E96652181A3 for ; Thu, 20 Feb 2003 14:34:27 +0900 (JST) Received: from mailhosting.itc.u-tokyo.ac.jp (IDENT:mirapoint@mailhosting.itc.u-tokyo.ac.jp [133.11.205.3]) by is1.mh.itc.u-tokyo.ac.jp (8.11.3/8.11.3) with ESMTP id h1K5YRc05977; Thu, 20 Feb 2003 14:34:27 +0900 Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.135.3]) by mailhosting.itc.u-tokyo.ac.jp (Mirapoint Messaging Server MOS 2.9.3.2) with ESMTP id AHX69607; Thu, 20 Feb 2003 14:34:26 +0900 (JST) Date: Thu, 20 Feb 2003 14:34:26 +0900 Message-ID: From: Hidetoshi Shimokawa To: Marcel Moolenaar Cc: firewire@FreeBSD.org Subject: Re: Firewire regression In-Reply-To: <20030219212811.GA523@athlon.pn.xcllnt.net> References: <20030219081818.GA668@dhcp01.pn.xcllnt.net> <20030219212811.GA523@athlon.pn.xcllnt.net> User-Agent: Wanderlust/2.11.0 (Wonderwall) REMI/1.14.3 (Matsudai) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.4 (patch 8) (Honest Recruiter) (i386--freebsd) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7: #j7i14gu$jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The CD seems keeping to initiate bus reset. I don't know why.. At Wed, 19 Feb 2003 13:28:11 -0800, Marcel Moolenaar wrote: > Feb 19 13:22:44 dhcp01 kernel: Unknown service addr 0x00000000:0x007d7c10 tcode=5 > Feb 19 13:22:46 dhcp01 last message repeated 2 times > > It's the "Unknown service addr" that seems to prevent the flood of > messages. This shouldn't happen because these address range should be handled by OHCI. Could you try the follwing patch? Index: fwohci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/firewire/fwohci.c,v retrieving revision 1.41 diff -u -r1.41 fwohci.c --- fwohci.c 18 Feb 2003 09:39:48 -0000 1.41 +++ fwohci.c 20 Feb 2003 05:30:59 -0000 @@ -1786,7 +1786,7 @@ OWRITE(sc, OHCI_AREQHI, 1 << 31); /* XXX insecure ?? */ - OWRITE(sc, OHCI_PREQHI, 0x7fffffff); + OWRITE(sc, OHCI_PREQHI, 0xffffffff); OWRITE(sc, OHCI_PREQLO, 0xffffffff); OWRITE(sc, OHCI_PREQUPPER, 0x10000); /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-firewire" in the body of the message