From owner-freebsd-hackers Wed Sep 18 11:09:05 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA28114 for hackers-outgoing; Wed, 18 Sep 1996 11:09:05 -0700 (PDT) Received: from Octopussy (Octopussy.MI.Uni-Koeln.DE [134.95.212.20]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id LAA28062 for ; Wed, 18 Sep 1996 11:08:57 -0700 (PDT) Received: from x14.mi.uni-koeln.de (annexr2-45.slip.Uni-Koeln.DE) by Octopussy with SMTP id AA09946 (5.67b/IDA-1.5 for ); Wed, 18 Sep 1996 20:08:48 +0200 Received: (from se@localhost) by x14.mi.uni-koeln.de (8.7.5/8.6.9) id UAA16448; Wed, 18 Sep 1996 20:08:47 +0200 (MET DST) Date: Wed, 18 Sep 1996 20:08:47 +0200 (MET DST) Message-Id: <199609181808.UAA16448@x14.mi.uni-koeln.de> From: Stefan Esser To: hackers@freebsd.org Subject: Re: Adding a second NCR 810 controller In-Reply-To: <199609162119.OAA27337@seabass.progroup.com> References: <199609170052.AAA15503@al.imforei.apana.org.au> <199609162119.OAA27337@seabass.progroup.com> Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Craig Shaver writes: > > > > > > > In article <199609161051.MAA11794@iaehv.IAEhv.nl> you wrote: > > > > : Hi, > > > > Gday! > > > > : What do I need to do to add a second NCR 810 controller to a 2.1.5 system? > > > > Just chuck it in. Both cards can be set to INT A, since the interupts > > are unique for each PCI slot. > > > > Do you need to rebuild the kernel? In my kernel I added a line for the > 2nd NCR controller: > > controller ncr0 > controller ncr1 > > And then I rebuilt the kernel. Is this an unnecessary step? Yes, it is unneccesary, but, well, it does no harm :) In fact you may expect that each PCI device driver can be used for a (near) arbitrary number of cards. The reason for multiple device entries in the config file is usually, that ISA cards need very specific attach addresses, and if you have multiple cards, then each individual one has to be made known to the kernel. PCI cards are auto-configured by the PCI BIOS, and the drivers use whatever the PCI BIOS choose for the card's registers and memory regions. Regards, STefan