summaryrefslogtreecommitdiff
path: root/sys/dev/pci/yds.c
AgeCommit message (Collapse)Author
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2002-01-20make all audio drivers use the new allocm and round_buffersize decl's.Eric Jackson
will ease porting, and generally cleans up a bit
2002-01-06remove bogus diagnostic check.Eric Jackson
pr#2298
2002-01-04add 600x read for 744 rev < 2 - from netbsdEric Jackson
cleanup dmesg output
2001-12-20add powerhook support to handle APM resumes correctly, fixes PR 1814joshua stein
ok provos@ and markus@
2001-12-07bitmask_snprintf goes awayTheo de Raadt
2001-11-05Switch everything to the new bus_dmamap_sync API.Artur Grabowski
Most work by Wilbern Cobb <vedge@csoft.org> with some fixes from me, mickey@ and drahn@.
2001-10-31Change the audio_hm_if->mappage interface to return paddr_t and take off_tArtur Grabowski
as the mmap offset.
2001-08-26Yup, I managed to fat finger all three of these while doing bus_dmamap_sync()Jason Wright
conversion (luckily only sparc64 uses the 5 arg form so far =)
2001-08-25deal with 5 arg for of bus_dmamap_sync() if availableJason Wright
2001-08-25Change pci_intr_map to take pci_attach_args as an argument.Artur Grabowski
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.
2001-06-12Make pci_mapreg_map take an extra argument where we canNiklas Hallqvist
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.
2001-05-24Sync with NetBSD:Aaron Campbell
- Correct gain register initialization to fix L-R imbalance. - Allow to compile on alpha with DIAGNOSTIC. - Update TODO list. - Some delinting.
2001-03-29Add support for Yamaha DS-XG based audio chips, as found in machines such asAaron Campbell
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.