From owner-freebsd-firewire@FreeBSD.ORG Mon Jan 26 04:25:43 2004 Return-Path: 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 EBB9016A4D1 for ; Mon, 26 Jan 2004 04:25:42 -0800 (PST) Received: from tora.nunu.org (YahooBB219003182070.bbtec.net [219.3.182.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9C3343D5E for ; Mon, 26 Jan 2004 04:25:06 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from tora.nunu.org (unknown [192.168.1.2]) by tora.nunu.org (Postfix) with ESMTP id ED0CE4AD7B; Mon, 26 Jan 2004 21:25:04 +0900 (JST) Date: Mon, 26 Jan 2004 21:25:04 +0900 Message-ID: <87ptd6rj6n.wl@tora.nunu.org> From: Hidetoshi Shimokawa To: Christian Laursen In-Reply-To: <86isja24y0.fsf@borg.borderworlds.dk> References: <86isja24y0.fsf@borg.borderworlds.dk> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 14) (Reasonable Discussion) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: freebsd-firewire@freebsd.org Subject: Re: NEC uPD72873 X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 12:25:43 -0000 Sorry to respond you late. Is the driver statically linked with kernel or loaded as a module? /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html At 17 Jan 2004 12:24:39 +0100, Christian Laursen wrote: > > It seems we managed to buy a presently unsupported firewire pci card. > > I upgraded to the latest -CURRENT and hoped to be lucky, but it seems > that it didn't have to be that easy. :) > > This is the dmesg output of the card getting probed: > > fwohci0: vendor=1033, dev=e7 > fwohci0: <1394 Open Host Controller Interface> mem 0xe0800000-0xe0800fff irq 11 at device 11.0 on pci0 > fwohci0: OHCI version 1.10 (ROM=1) > fwohci0: No. of Isochronous channel is 4. > fwohci0: EUI64 00:00:4c:01:07:00:2a:01 > fwohci0: Phy 1394a available S400, 2 ports. > fwohci0: Link S400, max_rec 2048 bytes. > fwohci0: FireWire init failed with err=6 > device_probe_and_attach: fwohci0 attach returned 5 > > And this is the information from pciconf -lv: > > none2@pci0:11:0: class=0x0c0010 card=0x00ce1033 chip=0x00e71033 rev=0x01 hdr=0x00 > vendor = 'NEC Electronics Hong Kong' > device = 'uPD72873 IEEE1394 OHCI 1.1 2-port PHY-Link Ctrlr' > class = serial bus > subclass = FireWire > > Based on that, I tried to make the following change: > > --- fwohcireg.h.orig Sat Jan 17 12:15:36 2004 > +++ fwohcireg.h Sat Jan 17 12:17:18 2004 > @@ -47,6 +47,7 @@ > #define FW_DEVICE_UPD861 (0x0063 << 16) > #define FW_DEVICE_UPD871 (0x00ce << 16) > #define FW_DEVICE_UPD72870 (0x00cd << 16) > +#define FW_DEVICE_UPD72873 (0x00e7 << 16) > #define FW_DEVICE_UPD72874 (0x00f2 << 16) > #define FW_DEVICE_TITSB22 (0x8009 << 16) > #define FW_DEVICE_TITSB23 (0x8019 << 16) > --- fwohci_pci.c.orig Sat Jan 17 12:17:32 2004 > +++ fwohci_pci.c Sat Jan 17 12:18:39 2004 > @@ -95,6 +95,10 @@ > device_set_desc(dev, "NEC uPD72870"); > return 0; > } > + if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72873)) { > + device_set_desc(dev, "NEC uPD72873"); > + return 0; > + } > if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72874)) { > device_set_desc(dev, "NEC uPD72874"); > return 0; > > > The dmesg output then changes to this: > > fwohci0: mem 0xe0800000-0xe0800fff irq 11 at device 11.0 on pci0 > fwohci0: OHCI version 1.10 (ROM=1) > fwohci0: No. of Isochronous channel is 4. > fwohci0: EUI64 00:00:4c:01:07:00:2a:01 > fwohci0: Phy 1394a available S400, 2 ports. > fwohci0: Link S400, max_rec 2048 bytes. > fwohci0: FireWire init failed with err=6 > device_probe_and_attach: fwohci0 attach returned 5 > > As I do not know much about firewire internals I'm not sure how to proceed from > here. > > Are there any hopes of getting this card working? > > Thanks in advance. > > -- > Best regards > Christian Laursen > _______________________________________________ > freebsd-firewire@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-firewire > To unsubscribe, send any mail to "freebsd-firewire-unsubscribe@freebsd.org" > From owner-freebsd-firewire@FreeBSD.ORG Mon Jan 26 04:29:41 2004 Return-Path: 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 8DDE816A4CE for ; Mon, 26 Jan 2004 04:29:41 -0800 (PST) Received: from ferengi.borderworlds.dk (borderworlds.dk [62.79.110.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0636043D2D for ; Mon, 26 Jan 2004 04:29:40 -0800 (PST) (envelope-from xi@borderworlds.dk) Received: from borg.borderworlds.dk (localhost [127.0.0.1]) by ferengi.borderworlds.dk (Postfix) with ESMTP id 11C775C83 for ; Mon, 26 Jan 2004 13:29:35 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id 8507CB83E; Mon, 26 Jan 2004 13:29:34 +0100 (CET) Sender: xi@borderworlds.dk To: freebsd-firewire@freebsd.org References: <86isja24y0.fsf@borg.borderworlds.dk> From: Christian Laursen Date: 26 Jan 2004 13:29:34 +0100 In-Reply-To: <86isja24y0.fsf@borg.borderworlds.dk> Message-ID: <86n08a99ld.fsf@borg.borderworlds.dk> Lines: 38 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: NEC uPD72873 X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 12:29:41 -0000 Christian Laursen writes: > It seems we managed to buy a presently unsupported firewire pci card. > > I upgraded to the latest -CURRENT and hoped to be lucky, but it seems > that it didn't have to be that easy. :) Mostly by accident I happened to notice, that the card seemed to get probed correctly when I booted a FreeBSD 4.9-RELEASE fixit cd. And indeed our firewire device worked there. What could cause this to stop working from 4.9 to -CURRENT? Thanks in advance. > This is the dmesg output of the card getting probed: > > fwohci0: vendor=1033, dev=e7 > fwohci0: <1394 Open Host Controller Interface> mem 0xe0800000-0xe0800fff irq 11 at device 11.0 on pci0 > fwohci0: OHCI version 1.10 (ROM=1) > fwohci0: No. of Isochronous channel is 4. > fwohci0: EUI64 00:00:4c:01:07:00:2a:01 > fwohci0: Phy 1394a available S400, 2 ports. > fwohci0: Link S400, max_rec 2048 bytes. > fwohci0: FireWire init failed with err=6 > device_probe_and_attach: fwohci0 attach returned 5 > > And this is the information from pciconf -lv: > > none2@pci0:11:0: class=0x0c0010 card=0x00ce1033 chip=0x00e71033 rev=0x01 hdr=0x00 > vendor = 'NEC Electronics Hong Kong' > device = 'uPD72873 IEEE1394 OHCI 1.1 2-port PHY-Link Ctrlr' > class = serial bus > subclass = FireWire -- Best regards Christian Laursen From owner-freebsd-firewire@FreeBSD.ORG Mon Jan 26 04:33:13 2004 Return-Path: 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 47CFC16A4CE for ; Mon, 26 Jan 2004 04:33:13 -0800 (PST) Received: from ferengi.borderworlds.dk (borderworlds.dk [62.79.110.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5C8343D46 for ; Mon, 26 Jan 2004 04:33:09 -0800 (PST) (envelope-from xi@borderworlds.dk) Received: from borg.borderworlds.dk (localhost [127.0.0.1]) by ferengi.borderworlds.dk (Postfix) with ESMTP id 7AA785C38; Mon, 26 Jan 2004 13:33:08 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id EE612B83A; Mon, 26 Jan 2004 13:33:07 +0100 (CET) Sender: xi@borderworlds.dk To: Hidetoshi Shimokawa References: <86isja24y0.fsf@borg.borderworlds.dk> <87ptd6rj6n.wl@tora.nunu.org> From: Christian Laursen Date: 26 Jan 2004 13:33:07 +0100 In-Reply-To: <87ptd6rj6n.wl@tora.nunu.org> Message-ID: <86isiy99fg.fsf@borg.borderworlds.dk> Lines: 95 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-firewire@freebsd.org Subject: Re: NEC uPD72873 X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 12:33:13 -0000 Hidetoshi Shimokawa writes: > Sorry to respond you late. > Is the driver statically linked with kernel or loaded as a module? It is loaded as a module? Should I try to compile it into the kernel? > At 17 Jan 2004 12:24:39 +0100, > Christian Laursen wrote: > > > > It seems we managed to buy a presently unsupported firewire pci card. > > > > I upgraded to the latest -CURRENT and hoped to be lucky, but it seems > > that it didn't have to be that easy. :) > > > > This is the dmesg output of the card getting probed: > > > > fwohci0: vendor=1033, dev=e7 > > fwohci0: <1394 Open Host Controller Interface> mem 0xe0800000-0xe0800fff irq 11 at device 11.0 on pci0 > > fwohci0: OHCI version 1.10 (ROM=1) > > fwohci0: No. of Isochronous channel is 4. > > fwohci0: EUI64 00:00:4c:01:07:00:2a:01 > > fwohci0: Phy 1394a available S400, 2 ports. > > fwohci0: Link S400, max_rec 2048 bytes. > > fwohci0: FireWire init failed with err=6 > > device_probe_and_attach: fwohci0 attach returned 5 > > > > And this is the information from pciconf -lv: > > > > none2@pci0:11:0: class=0x0c0010 card=0x00ce1033 chip=0x00e71033 rev=0x01 hdr=0x00 > > vendor = 'NEC Electronics Hong Kong' > > device = 'uPD72873 IEEE1394 OHCI 1.1 2-port PHY-Link Ctrlr' > > class = serial bus > > subclass = FireWire > > > > Based on that, I tried to make the following change: > > > > --- fwohcireg.h.orig Sat Jan 17 12:15:36 2004 > > +++ fwohcireg.h Sat Jan 17 12:17:18 2004 > > @@ -47,6 +47,7 @@ > > #define FW_DEVICE_UPD861 (0x0063 << 16) > > #define FW_DEVICE_UPD871 (0x00ce << 16) > > #define FW_DEVICE_UPD72870 (0x00cd << 16) > > +#define FW_DEVICE_UPD72873 (0x00e7 << 16) > > #define FW_DEVICE_UPD72874 (0x00f2 << 16) > > #define FW_DEVICE_TITSB22 (0x8009 << 16) > > #define FW_DEVICE_TITSB23 (0x8019 << 16) > > --- fwohci_pci.c.orig Sat Jan 17 12:17:32 2004 > > +++ fwohci_pci.c Sat Jan 17 12:18:39 2004 > > @@ -95,6 +95,10 @@ > > device_set_desc(dev, "NEC uPD72870"); > > return 0; > > } > > + if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72873)) { > > + device_set_desc(dev, "NEC uPD72873"); > > + return 0; > > + } > > if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72874)) { > > device_set_desc(dev, "NEC uPD72874"); > > return 0; > > > > > > The dmesg output then changes to this: > > > > fwohci0: mem 0xe0800000-0xe0800fff irq 11 at device 11.0 on pci0 > > fwohci0: OHCI version 1.10 (ROM=1) > > fwohci0: No. of Isochronous channel is 4. > > fwohci0: EUI64 00:00:4c:01:07:00:2a:01 > > fwohci0: Phy 1394a available S400, 2 ports. > > fwohci0: Link S400, max_rec 2048 bytes. > > fwohci0: FireWire init failed with err=6 > > device_probe_and_attach: fwohci0 attach returned 5 > > > > As I do not know much about firewire internals I'm not sure how to proceed from > > here. > > > > Are there any hopes of getting this card working? > > > > Thanks in advance. > > > > -- > > Best regards > > Christian Laursen > > _______________________________________________ > > freebsd-firewire@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-firewire > > To unsubscribe, send any mail to "freebsd-firewire-unsubscribe@freebsd.org" > > > -- Best regards Christian Laursen From owner-freebsd-firewire@FreeBSD.ORG Mon Jan 26 05:57:00 2004 Return-Path: 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 5297916A4D2 for ; Mon, 26 Jan 2004 05:57:00 -0800 (PST) Received: from tora.nunu.org (YahooBB219003182070.bbtec.net [219.3.182.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id C269F43D1F for ; Mon, 26 Jan 2004 05:56:47 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from tora.nunu.org (unknown [192.168.1.2]) by tora.nunu.org (Postfix) with ESMTP id 8682A4ADDC; Mon, 26 Jan 2004 22:56:46 +0900 (JST) Date: Mon, 26 Jan 2004 22:56:46 +0900 Message-ID: <87n08arext.wl@tora.nunu.org> From: Hidetoshi Shimokawa To: Christian Laursen In-Reply-To: <86isiy99fg.fsf@borg.borderworlds.dk> References: <86isja24y0.fsf@borg.borderworlds.dk> <87ptd6rj6n.wl@tora.nunu.org> <86isiy99fg.fsf@borg.borderworlds.dk> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 14) (Reasonable Discussion) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: freebsd-firewire@freebsd.org Subject: Re: NEC uPD72873 X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 13:57:00 -0000 At 26 Jan 2004 13:33:07 +0100, Christian Laursen wrote: > > Hidetoshi Shimokawa writes: > > > Sorry to respond you late. > > Is the driver statically linked with kernel or loaded as a module? > > It is loaded as a module? > > Should I try to compile it into the kernel? Can you put the following line into the /boot/loader.conf? firewire_load="YES" I found a race between fwohci and firewire initialization recently. If you load firewire.ko manually after boot, it could happen that fwohci tries to attach firewire bus before the firewire driver is loaded. The type of the OHCI chip doesn't matter for this problem. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html From owner-freebsd-firewire@FreeBSD.ORG Mon Jan 26 06:07:39 2004 Return-Path: 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 9FB9A16A4CE for ; Mon, 26 Jan 2004 06:07:39 -0800 (PST) Received: from ferengi.borderworlds.dk (borderworlds.dk [62.79.110.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8436C43D49 for ; Mon, 26 Jan 2004 06:07:28 -0800 (PST) (envelope-from xi@borderworlds.dk) Received: from borg.borderworlds.dk (localhost [127.0.0.1]) by ferengi.borderworlds.dk (Postfix) with ESMTP id 9159F5C42; Mon, 26 Jan 2004 15:07:25 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id 42623B83A; Mon, 26 Jan 2004 15:07:25 +0100 (CET) Sender: xi@borderworlds.dk To: Hidetoshi Shimokawa References: <86isja24y0.fsf@borg.borderworlds.dk> <87ptd6rj6n.wl@tora.nunu.org> <86isiy99fg.fsf@borg.borderworlds.dk> <87n08arext.wl@tora.nunu.org> From: Christian Laursen Date: 26 Jan 2004 15:07:25 +0100 In-Reply-To: <87n08arext.wl@tora.nunu.org> Message-ID: <86wu7e7qhu.fsf@borg.borderworlds.dk> Lines: 26 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-firewire@freebsd.org Subject: Re: NEC uPD72873 X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 14:07:39 -0000 Hidetoshi Shimokawa writes: > At 26 Jan 2004 13:33:07 +0100, > Christian Laursen wrote: > > > > Hidetoshi Shimokawa writes: > > > > > Sorry to respond you late. > > > Is the driver statically linked with kernel or loaded as a module? > > > > It is loaded as a module? > > > > Should I try to compile it into the kernel? > > Can you put the following line into the /boot/loader.conf? > > firewire_load="YES" That did the trick, thank you. The patch I posted in my initial post is still relevant though, I guess, as it just allows the chip to be identified. -- Best regards Christian Laursen From owner-freebsd-firewire@FreeBSD.ORG Sat Oct 25 08:32:38 2003 Return-Path: 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 019CC16A4BF; Sat, 25 Oct 2003 08:32:38 -0700 (PDT) Received: from cmailm5.svr.pol.co.uk (cmailm5.svr.pol.co.uk [195.92.193.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8958E43F93; Sat, 25 Oct 2003 08:32:36 -0700 (PDT) (envelope-from Kris@kirok.fsnet.co.uk) Received: from modem-2580.wolf.dialup.pol.co.uk ([81.76.138.20] helo=kirok.fsnet.co.uk) by cmailm5.svr.pol.co.uk with esmtp (Exim 4.14) id 1ADQP3-0006oa-8L; Sat, 25 Oct 2003 16:32:34 +0100 Message-ID: <3F9A978E.5000303@kirok.fsnet.co.uk> From: Kris Davidson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031013 Thunderbird/0.3 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hidetoshi Shimokawa References: <3F9A868C.1030004@kirok.fsnet.co.uk> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-hackers@freebsd.org cc: freebsd-firewire@freebsd.org cc: freebsd-questions@freebsd.org cc: freebsd-newbies@freebsd.org Subject: Re: Boot Problem X-BeenThere: freebsd-firewire@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Firewire support in FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Sat, 25 Oct 2003 15:32:38 -0000 X-Original-Date: Sat, 25 Oct 2003 16:32:30 +0100 X-List-Received-Date: Sat, 25 Oct 2003 15:32:38 -0000 I'm trying to install 5.1 release and am in the process of downloading version 4.8 Hidetoshi Shimokawa wrote: > Which version of FreeBSD are you trying to install? > > /\ Hidetoshi Shimokawa > \/ simokawa@sat.t.u-tokyo.ac.jp > PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html > > At Sat, 25 Oct 2003 15:19:56 +0100, > Kris Davidson wrote: > >>This may be a complete newbie question, or it may have been answered >>before but I would appreciate any help or input that can be provided. >> >>I have a Sony VAIO PCG-GRZ615M laptop which I'm trying to install >>FreeBSD on. I boot from the CD and then try selecting each one of the 7 >>boot options however each option I pick returns the below and then the >>system reboots, as such I can not start the installation. >> >>---------------------------------------------- >>fwohci0: Link S100, max_rec 2 bytes >>fwohci0: max_rec2 -> 512 >>fwohci0: bus_OPT 0x0 -> 0xf8008000 >>fwohci0: fwohci_set_intr: 1 >> >>firewire : on fwohci0 >>fatal trap 12: page fault while in Kernel mode >> >>fault virtual address = 0x2c >>fault code = supervisor read, page not present >>instruction pointer = 0x8 :0xc02e5a50 >>Stack pointer = 0x10 :0xc0b2e8c4 >>frame pointer = 0x10 :0xc0b2e8c8 >>code segment = base 0x0, limit 0xfffff, type 0x1b >> = DPL0, pres 1, def32 1, gran 1 >>processor eflags = interrupte enabled, resume, IOPL=0 >>current process = 0 (swapper) >>trap number = 12 >> >>Panic: Page fault >>---------------------------------------------- >> >>I would appreciate it if anyone could help me with this or provide advice. >> >>Cheers. >> >>_______________________________________________ >>freebsd-firewire@freebsd.org mailing list >>http://lists.freebsd.org/mailman/listinfo/freebsd-firewire >>To unsubscribe, send any mail to "freebsd-firewire-unsubscribe@freebsd.org" >> > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > >