summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/yds.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* deal with 5 arg for of bus_dmamap_sync() if availablejason2001-08-251-23/+48
|
* Change pci_intr_map to take pci_attach_args as an argument.art2001-08-251-3/+2
| | | | | | | | | | | All callers actually took all arguments to pci_intr_map from pci_attach_args structs, so this simplifies code. This also allows more complicated interrupt assignment schemes like the one on sparc64. This makes sparc64 pci interrupts work. Inspired by the same change in NetBSD.
* Make pci_mapreg_map take an extra argument where we canniklas2001-06-121-2/+2
| | | | | | | put a size limitation of the PCI region to map. That makes the PERC 3/Di raid controller usable, as it publishes too much PCI memory for us to map in the kernel virtual memory. As we only access the first 256 byte it is of no use to map 128MB of kvm.
* Sync with NetBSD:aaron2001-05-241-7/+21
| | | | | | | - Correct gain register initialization to fix L-R imbalance. - Allow to compile on alpha with DIAGNOSTIC. - Update TODO list. - Some delinting.
* Add support for Yamaha DS-XG based audio chips, as found in machines such asaaron2001-03-291-0/+1784
newer Sony Vaio notebooks; written by Kazuki Sakamoto and Minoura Makoto. This is a slightly updated version of the driver that was previously tested by jcs@rt.fm and niklas@. XXX - lacks MPU MIDI support for now, first we must move the mpu401 driver from sys/dev/isa to sys/dev/ic.