From owner-freebsd-firewire@FreeBSD.ORG Sat Jan 17 03:24:46 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 BB79F16A4CE for ; Sat, 17 Jan 2004 03:24:46 -0800 (PST) Received: from ferengi.borderworlds.dk (borderworlds.dk [62.79.110.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id A39F643D46 for ; Sat, 17 Jan 2004 03:24:44 -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 4824D5C42 for ; Sat, 17 Jan 2004 12:24:40 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id A02C5B83A; Sat, 17 Jan 2004 12:24:39 +0100 (CET) Sender: xi@borderworlds.dk To: freebsd-firewire@freebsd.org From: Christian Laursen Date: 17 Jan 2004 12:24:39 +0100 Message-ID: <86isja24y0.fsf@borg.borderworlds.dk> Lines: 73 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: 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: Sat, 17 Jan 2004 11:24:46 -0000 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 From owner-freebsd-firewire@FreeBSD.ORG Sat Jan 17 03:30:11 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 7741416A4CE for ; Sat, 17 Jan 2004 03:30:11 -0800 (PST) Received: from ferengi.borderworlds.dk (borderworlds.dk [62.79.110.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18CFB43D5A for ; Sat, 17 Jan 2004 03:30:10 -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 AB0BF5C42 for ; Sat, 17 Jan 2004 12:30:08 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id F313CB83A; Sat, 17 Jan 2004 12:30:07 +0100 (CET) Sender: xi@borderworlds.dk To: freebsd-firewire@freebsd.org References: <86n091yrjb.fsf@borg.borderworlds.dk> From: Christian Laursen Date: 17 Jan 2004 12:30:07 +0100 In-Reply-To: <86n091yrjb.fsf@borg.borderworlds.dk> Message-ID: <86ad4m24ow.fsf@borg.borderworlds.dk> Lines: 12 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: ADS tech Dual Link Drive Kit 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: Sat, 17 Jan 2004 11:30:11 -0000 Christian Laursen writes: > We are considering buying this product with the intention to > use it with FreeBSD and firewire. > > http://www.adstech.com/products/DLX185/intro/DLX185intro.asp?pid=DLX185 We went ahead and bought one and it just works without any problems. -- Med venlig hilsen Christian Laursen