summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2000-08-01Add Symbios 53C895A; armin@wolfermann.orgTodd C. Miller
2000-08-01Add PCI attachment for i82365-compatible PCMCIA controllers. Needed forAaron Campbell
the Cirrus Logic CL-PD6729 controller found on some laptops, i.e., the Gateway 2000 Solo 2100. Thanks to JDempsey@iss.net for testing and initiallly prodding me to get PC Cards to work in his laptop.
2000-08-01Make driver attach no matter the setting of jumper S4.Niklas Hallqvist
This solves the "cannot map DPMEM" problem some people have been seeing. Still there is an ugly printout while configuring if S4 is out, I do not know how to pretty that one just yet. Howevr it is just a cosmetic thing.
2000-07-31Fix PR 1341 -Chris Cappuccio
Don't enable UDMA modes on VIA "82C586" with revision under 6
2000-07-31since byte order bugs are gone, interrupts work okTheo de Raadt
2000-07-31syncTheo de Raadt
2000-07-31moreTheo de Raadt
2000-07-29remove the (unused) sc_intrmask, and be more careful about initializingJason Wright
the BS_CTRL register... The BE32 & BE64 bits do NOT do what they imply, so leave the bits set, and add the ones we want. This allows ubsec to interop with our software implementation (at least for encryption). More work to be done in this driver though... Many thanks to Jimmy Ruane at Broadcom for the pointer about BE32 & BE64!
2000-07-28Use the correct bits for determining which session to delete. Some style fixes.Jason Wright
2000-07-27more puc devices, including IBM 33L4618: AT&T/Lucent Venus Modem offset from ↵Theo de Raadt
kaspar.toomik@personalchemistry.com
2000-07-273wareTheo de Raadt
2000-07-26syncTheo de Raadt
2000-07-26tweakTheo de Raadt
2000-07-26syncTheo de Raadt
2000-07-26urgTheo de Raadt
2000-07-25syncTheo de Raadt
2000-07-25picopower devicesTheo de Raadt
2000-07-25convert to new timeoutsMichael Shalayeff
2000-07-20syncHakan Olsson
2000-07-20Pijnenburg PCC-ISESHakan Olsson
2000-07-20new auvia and fms drivers from netbsd (testing requests sent out, since i ↵Theo de Raadt
cannot find any of these devices)
2000-07-20work around broken A0 5805 silicon that fails to set the status result word ↵Theo de Raadt
in the mcr
2000-07-19syncTheo de Raadt
2000-07-19fix yamaha entries, based on what freebsd driver saysTheo de Raadt
2000-07-19syncTheo de Raadt
2000-07-19not DIAMOND2; they were made by Aureal SemiTheo de Raadt
2000-07-19syncTheo de Raadt
2000-07-19a new avance sound chipTheo de Raadt
2000-07-19regen.Federico G. Schwindt
2000-07-19VIATECH VT82C596A PCI-ISA bridge.Federico G. Schwindt
2000-07-19let us assume for now this workse with the other 3 chip modelsTheo de Raadt
2000-07-19syncTheo de Raadt
2000-07-19more cirrus audio chipsTheo de Raadt
2000-07-19As in NetBSD, added direction to allocm/round_buffer_size APIs.Constantine Sapuntzakis
Accomplished by adding functions to audio_hw_if instead of redoing current ones so as to minimize need to change drivers. For Neomagic, tell the AC97 subsystem that we don't support reads.
2000-07-18better error messages for mapregMichael Shalayeff
2000-07-18Reset AC97 codec on ES1371 revisions 7 and above. Thanks to Alejo SanchezConstantine Sapuntzakis
for pointin this out.
2000-07-13syncTheo de Raadt
2000-07-13diamond products were incorrectly labelledTheo de Raadt
2000-07-13syncTheo de Raadt
2000-07-13more audio cardsTheo de Raadt
2000-07-12Change to match OpenBSD output format.Federico G. Schwindt
2000-07-12Fix two bugs.Artur Grabowski
The return value from the interrupt handling was bogus. Now we return 1 if we have handled the interrupt. When resuming from suspend wrong values were restored to the mixer which sometimes caused a high-pitched sound to be emitted. (how fast can you type "mixerctl -w outputs.master.mute=on"?)
2000-07-11syncMarco S Hyman
2000-07-11S3 Savage chipsMarco S Hyman
2000-07-07Support Intel 440MX Ultra/33 controller found on various laptopsChris Cappuccio
2000-07-07From NetBSD:Chris Cappuccio
Match Promise Ultra/100 controller (Ultra/100 drives will be used as Ultra/66 fow now) Work-around for a bug in revision D2 AMD controllers (They do not work correctly with Multiword-DMA mode, workaround is to disable MW DMA, but this bug does not affect all drives so there is an option PCIIDE_AMD756_ENABLEDMA to stop this behavior. You know you have this bug when your system hangs completely with this option.)
2000-07-07syncChris Cappuccio
2000-07-07Promise Ultra100/ATA IDEChris Cappuccio
2000-07-06#ifdef SIOCGIFMTU should have been SIOCSIFMTU.mjacob
Noticed by: Chris Cappuccio <chris@dqc.org>
2000-07-06Fix a minor bug in the MAC address unscrambling code. From FreeBSD.Aaron Campbell