aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/pnpvar.h
Commit message (Collapse)AuthorAgeFilesLines
* Finally merge newmidi.Seigo Tanimura2000-07-111-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (I had been busy for my own research activity until the last weekend) Supported devices: SB Midi Port (sbc + midi) SB OPL3 (sbc + midi) 16550 UART (midi, needs a trick in your hint) CS461x Midi Port (csa + midi) OSS-compatible sequencer (seq) Supported playing software: playmidi (We definitely need more) Notes: /dev/midistat now reports installed midi drivers. /dev/sndstat reports only pcm drivers. We need the new name(pcmstat?). EMU8000(SB AWE) does not sound yet but does get probed so that the OPL3 synth on an AWE card works. TODO: MSS/PCI bridge drivers Midi-tty interface to support general serial devices Modules Notes: svn path=/head/; revision=62947
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"Peter Wemm1999-12-291-2/+2
| | | | | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Notes: svn path=/head/; revision=55206
* * Add some verbose logging to the PnP parser and fix a couple of bugs.Doug Rabson1999-10-141-0/+1
| | | | | | | | | | | | | | * Move pnp_eisaformat() to pnp.c, declared in <isa/pnpvar.h>. * Turn the pnpbios code into an enumerator for the isa bus. This allows all devices known to the bios to be probed automatically. Currently the pnpbios code is dependant on the PNPBIOS option. As the code is tested more and when more drivers are converted this will be made the default. I have PnP changes in the wings for fdc, atkbd, psm, pcaudio, and joy. Sio already works with pnpbios. Notes: svn path=/head/; revision=52241
* Factor out the PnP resource parser so that it can be re-used by pnpbiosDoug Rabson1999-10-091-0/+2
| | | | | | | | | and acpi. Reviewed by: msmith Notes: svn path=/head/; revision=52059
* This represents essentially a complete rewrite of the ISA PnP code. TheDoug Rabson1999-09-011-0/+57
new system is integrated with the ISA bus code more cleanly and allows the future addition of more enumerators such as PnPBIOS and ACPI. This commit also enables the new pcm driver since it is somewhat tied to the new PnP code. Notes: svn path=/head/; revision=50769