summaryrefslogtreecommitdiffstats
path: root/sys/isa/bt_isa.c
Commit message (Collapse)AuthorAgeFilesLines
* Properly set the alignment argument to bus_dma_tag_create(). If wegibbs1999-08-161-3/+3
| | | | don't care about the alignment, set it to 1, meaning single byte alignment.
* Don't #include i386/isa/isa_dma.h - it's in isa/isavar.h now. Thispeter1999-06-281-2/+1
| | | | driver is probably not far from being MI now anyway.
* Quieten the bt_isa_probe() messages since they get a bit much whenpeter1999-06-031-3/+4
| | | | the isa probe has gone hunting for a card on it's own.
* No support for pnp devices yet.dfr1999-05-301-1/+5
|
* Don't use BUS_WRITE_IVAR to manipulate resources.dfr1999-05-221-9/+10
|
* Move the declaration of the interrupt type from the driver structuredfr1999-05-081-2/+1
| | | | to the BUS_SETUP_INTR call.
* Revert part of 1.9; we don't need to reset the port after release now thatpeter1999-04-241-2/+1
| | | | the isa bus doesn't clear the hints at that point.
* Make the bt isa driver work..peter1999-04-181-5/+11
| | | | | | | | | | | - fix cut/paste problem. :-) - don't forget to call isa_dmacascade() - reset the port after we release resources. That last one is a trap to watch out for.. The isa bus driver uses the same port/irq/mem/etc variables for the initial probe hints as it does for allocation/deallocation tracking. Releasing a resource clears the variable and then you loose the hint during attach.. (ouch!)
* Implement an EISA new-bus framework. The old driver probe mechanismpeter1999-04-181-68/+127
| | | | | | | | | had a quirk that made a shim rather hard to implement properly and it was just easier to convert the drivers in one go. The changes to the buslogic driver go beyond just this - the whole driver was new-bus'ed including pci and isa. I have only tested the EISA part of this so far. Submitted by: Doug Rabson <dfr@nlsystems.com>
* failled spell-checkphk1999-04-061-2/+2
|
* Pull 'ISA style' probe where interrupt information is determined throughgibbs1999-03-081-43/+7
| | | | | commands sent to card, into the base driver module. It is now used for EISA board probes too.
* Fix probes when a port address is specified.gibbs1998-11-101-21/+8
|
* Fix breakage introduced by last patch. bde has added CC_QUIET flag toimp1998-10-121-27/+4
| | | | | | | | hasseen_isadev so this will be less noisy when conflicts do exist. Also eliminate redundant warnings about conflicts. Requested by: bde Reviewed by: gibbs
* Fix conficts in probe:imp1998-10-101-1/+28
| | | | | | | | | | o For bt and aha only probe the one I/O range if a specific I/O is specified in the config file. o Don't even try to probe I/O ranges that have been seen already. o If we conflict with an IRQ or DRQ, then fail the probe. Requested by: bde, gibbs Approved by: jkh
* Removed unused include of "ioconf.h" again. The CAM changes made ioconf.hbde1998-09-241-3/+1
| | | | empty but regressed to including it here.
* Mylex/Buslogic MultiMaster SCSI-Host Adapter Driver for CAM.gibbs1998-09-151-0/+322
OpenPOWER on IntegriCloud