From owner-freebsd-hackers Sun Oct 19 23:57:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA03402 for hackers-outgoing; Sun, 19 Oct 1997 23:57:37 -0700 (PDT) (envelope-from owner-freebsd-hackers) Received: from ren.dtir.qld.gov.au (firewall-user@ns.dtir.qld.gov.au [203.108.138.66]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA03395 for ; Sun, 19 Oct 1997 23:57:33 -0700 (PDT) (envelope-from syssgm@dtir.qld.gov.au) Received: by ren.dtir.qld.gov.au; id RAA21451; Mon, 20 Oct 1997 17:07:55 +1000 (EST) Received: from ogre.dtir.qld.gov.au(167.123.8.3) by ren.dtir.qld.gov.au via smap (3.2) id xma021446; Mon, 20 Oct 97 17:07:45 +1000 Received: from localhost.dtir.qld.gov.au (localhost.dtir.qld.gov.au [127.0.0.1]) by ogre.dtir.qld.gov.au (8.8.7/8.8.7) with SMTP id QAA18393; Mon, 20 Oct 1997 16:56:52 +1000 (EST) Message-Id: <199710200656.QAA18393@ogre.dtir.qld.gov.au> X-Authentication-Warning: ogre.dtir.qld.gov.au: localhost.dtir.qld.gov.au [127.0.0.1] didn't use HELO protocol To: Neil Ludban cc: freebsd-hackers@freebsd.org, syssgm@dtir.qld.gov.au Subject: Re: NCR 53c875j support? References: In-Reply-To: from Neil Ludban at "Mon, 20 Oct 1997 02:58:34 +0000" Date: Mon, 20 Oct 1997 16:56:52 +1000 From: Stephen McKay Sender: owner-freebsd-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Monday, 20th October 1997, Neil Ludban wrote: >I'm trying to get FreeBSD 2.2.2-RELEASE to recognize a Diamond FirePort40 >SCSI adapter, which uses the NCR 53c875j chip. The 53c875j has a different ID than the 53c875. If you add that ID to the appropriate switch statements in sys/pci/ncr.c, you'll be fine, assuming you have some other way to do a 2.2.2 install. The latest code has these defines: #define NCR_875_ID (0x000f1000ul) #define NCR_875_ID2 (0x008f1000ul) so you should be able to work this out from that. Alternatively, an improved ncr driver (supporting the 875j and 875 at full speed) is part of the very-soon-to-be-released 2.2.5. So, you could wait a few days and install 2.2.5-release, or install a beta version right now. >A possibly related problem is that having both SCSI cards installed at >once, or the Asus with a PCI NIC (ed2, RealTek 8029) causes the boot to >hang after the imasks line. The next thing should have been the BIOS >disk geometries. FWIW, the geometry of the SCSI disk is correct for >either controller. I don't know what is happening here. Perhaps 2.2.5 will help here also. Stephen.