Date: Tue, 14 Mar 2000 14:36:32 -0500 (EST) From: "Matthew N. Dodd" <winter@jurai.net> To: Oliver Schonefeld <oschonef@TechFak.Uni-Bielefeld.DE> Cc: freebsd-current@freebsd.org Subject: Re: Compaq SMART EISA and ida driver -> kernel panic Message-ID: <Pine.BSF.4.21.0003141434590.28645-200000@sasami.jurai.net> In-Reply-To: <20000314193728.A28530@frizzantino.TechFak.Uni-Bielefeld.DE>
index | next in thread | previous in thread | raw e-mail
[-- Attachment #1 --] On Tue, 14 Mar 2000, Oliver Schonefeld wrote: > there we go: > qcb = 0xc0ca7000 > completed = 0xffffffff (so propably not initalized?!) > qcb_done = 0x0 Doh! Looks like Jonathan didn't merge the latest ida_eisa.c that I'd worked on when he fixed the driver to support multiple access methods and added EISA support. Try this patch: Index: ida_eisa.c =================================================================== RCS file: /cvs/src/sys/dev/ida/ida_eisa.c,v retrieving revision 1.1 diff -u -r1.1 ida_eisa.c --- ida_eisa.c 2000/03/08 16:16:31 1.1 +++ ida_eisa.c 2000/03/14 19:34:23 @@ -247,6 +247,7 @@ return (ENXIO); } + eisa_add_iospace(dev, io_base, 0x100, RESVADDR_NONE); eisa_add_iospace(dev, (io_base + IDA_EISA_IOPORT_START), IDA_EISA_IOPORT_LEN, RESVADDR_NONE); -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | [-- Attachment #2 --] Index: ida_eisa.c =================================================================== RCS file: /cvs/src/sys/dev/ida/ida_eisa.c,v retrieving revision 1.1 diff -u -r1.1 ida_eisa.c --- ida_eisa.c 2000/03/08 16:16:31 1.1 +++ ida_eisa.c 2000/03/14 19:34:23 @@ -247,6 +247,7 @@ return (ENXIO); } + eisa_add_iospace(dev, io_base, 0x100, RESVADDR_NONE); eisa_add_iospace(dev, (io_base + IDA_EISA_IOPORT_START), IDA_EISA_IOPORT_LEN, RESVADDR_NONE);help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0003141434590.28645-200000>
