From mboxrd@z Thu Jan 1 00:00:00 1970 From: jmk@plan9.bell-labs.com To: 9fans@cse.psu.edu Subject: Re: [9fans] Weird bug. MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20010311171242.970571998A@mail.cse.psu.edu> Date: Sun, 11 Mar 2001 12:12:39 -0500 Topicbox-Message-UUID: 6f198ade-eac9-11e9-9e20-41e7f4b1d025 There are a couple of issues here. First, for historical reasons which I won't go into for fear of hurting feelings, the defaults used by the SB16 driver bear no relation to the defaults on a card when you take it out the box, so it's almost always a mistake to not specify the IRQ and DMA in plan9.ini; for example, the default driver IRQ is 7 which will clash with the lpt IRQ. The plan9.ini configuration for an SB16 with default hardware settings should be something like audio0=type=sb16 port=0x220 irq=5 dma=1 Secondly, the SB16 doesn't show up in the iomap output because the driver doesn't call the routine to register the space it uses. That's a bug we should fix but shouldn't affect the operation of the driver (assuming there is no actual clash with another device). --jim