summaryrefslogtreecommitdiff
path: root/sys/dev/isa
AgeCommit message (Collapse)Author
2002-09-15Add a license from the author Timo Rossi <trossi@co.jyu.fi>Artur Grabowski
2002-09-14Various fixes and cleanups in the cy driver.Artur Grabowski
Finally my "Cyclades Cyclom-8Y" works correctly. Cleanups: - no more stupid arrays, we have softc structs, use them. - no more global poll timeout that walks an array, timeouts are now cheap, one poll per softc. - sc_dev.dv_xname is the correct thing to print in diagnostic printfs. - don't have bus-specific code in the generic attach for @#%$! sake, it took 20 seconds to fix (I suspect that the workaround took much more time to write). - spltty, not splhigh. - use pci_mapreg_map, not pci_{io,mem}_find + bus_space_map. - use defines, not magic constants in a few places. - KNF in a few places (much more work needed). Now the interesting parts: - when handling the interrupt, don't just ignore it when the tty is not open. Read and discard the data. If we don't read it, the card will interrupt again and again and again and ... (inspired by NetBSD). - actually enable interrupts on PLX9050 - From FreeBSD: "Work around a PLX9050 bug that causes system lockup in certain systems" deraadt@ ok
2002-09-08no , after last element in a enumTheo de Raadt
2002-09-03regenMichael Shalayeff
2002-09-03aic at isapnp, from anders@Arnholm.nu w/ fixes from meMichael Shalayeff
2002-08-28update of radiotrack driver, including isapnp support; from jumbo@Michael Shalayeff
2002-07-07Allow isapnp to compile without isadma configured. From NetBSD.Miod Vallat
2002-07-02inital -> initialNathan Binkert
2002-06-30When duplicating isa_attach_args structures to build several attachementMiod Vallat
possibilities for isapnp devices, make sure to carry the original ia_ic member. Although mostly unused on i386, it is vital on alpha. This makes isapnp on alpha attach without panicing.
2002-06-30allocate sockaddr_dl for ifnet in if_alloc_sadl(), as we don't always knowJun-ichiro itojun Hagino
the size of sockaddr_dl on if_attach() - for instance, see ether_ifattach(). from netbsd. fgs ok
2002-06-14spelling; from Brian Poole <raj@cerias.purdue.edu>Todd T. Fries
2002-06-10old bouncebuffering api not used anymoreNiklas Hallqvist
2002-06-08KNF miss in my last commitNiklas Hallqvist
2002-06-07bus_dma-ify, now it works again, sorry for the inconvenienceNiklas Hallqvist
2002-06-07Add initialization of pglist, now attaches fine, butNiklas Hallqvist
bugs exist still in bounce buffering
2002-06-06temporarilty -> temporarilyAaron Campbell
2002-06-03spell transceiver correctlyTheo de Raadt
2002-05-24More splbio around biodone protection.Artur Grabowski
In these drivers I'm probably using more paranoia than necessary. If you really need to squeeze out the last drop of performance from the fd driver, call me.
2002-05-06tuner driver for the fms cards.Michael Shalayeff
attach radio at the fms(4), instead of a separate device, which would never work out fine. from Vladimir Popov <jumbo@narod.ru> rework the radio config stuff (radio at radiobus, instead of radio at radio), allowing to tag source files in the files.* files w/ radio attribute. from mickey@
2002-04-25soundforte radio driver, from Vladimir Popov <jumbo@narod.ru>Michael Shalayeff
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-12accept sample rates <= highrate.Federico G. Schwindt
2002-02-12only compile pckbc_isa if pckbc was configured on isaMichael Shalayeff
2002-01-27bt no moreMichael Shalayeff
2002-01-24bussified and bus-split bustec scsi ha driver.Michael Shalayeff
original port done by chris@ in '98 and pounded into -current by me, plus support for wide mode. tested on pci in both modes by me, on eisa (w/ half success, thus not enabled yet) by jason@. niklas@, jason@, millert@ ok.
2002-01-23fix a bug in az_find and make az_staet() more readable; from Vladimir Popov ↵Michael Shalayeff
<jumbo@narod.ru>
2002-01-23declare a few var's extern for KGDBEric Jackson
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-07use flags instead of options to choose the tea5757 vs tea5759.Michael Shalayeff
from Vladimir Popov <jumbo@narod.ru>
2002-01-02regenMichael Shalayeff
2002-01-02a couple of 3c515 entries, commented outMichael Shalayeff
2002-01-02do not unmap io space while it's still in use (in *probe)Michael Shalayeff
missing new lines and replace panics w/ printf+return. idea from netbsd's port.
2001-12-18bigger delay in mute; from Maxim V. Tsyplakov <tm@oganer.net>Michael Shalayeff
2001-12-08Do not compile the pnp attachments unless they're requested; deraadt@ okFederico G. Schwindt
2001-12-08Sprinkle pmap_update calls where relevant and some otherArtur Grabowski
misc pmap usage fixes.
2001-12-05syncChristian Weisgerber
2001-12-05Add AdLib MSC 16 PnP.Christian Weisgerber
From Georg Schwarz <georg.schwarz@iname.com>; ok deraadt@
2001-12-05add radiotack defsMichael Shalayeff
2001-12-05update for radio drivers from tm@oganer.net und jumbo@narod.ruMichael Shalayeff
2001-11-30Kill uvm_pagealloc_contig. The two drivers that still used it should haveArtur Grabowski
been converted to bus_dma ages ago, but since noone haven't bothered to do that I haven't bothered to do more than to test that the kernel still builds with those changes.
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
(Look ma, I might have broken the tree)
2001-11-06Kill vm/vm_param.h, move it to uvm/uvm_param.hArtur Grabowski
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-11-01add missing end bracket in commentTodd C. Miller
2001-10-31Change the audio_hm_if->mappage interface to return paddr_t and take off_tArtur Grabowski
as the mmap offset.
2001-10-26First cut at a port of isadma and floppy driver. ok art@Nathan Binkert
From NetBSD via jay@rootaction.net
2001-10-04Attach sf2r and aztech.Grigoriy Orlov
From Maxim Tsyplakov <tm@oganer.net>, Vladimir Popov <jumbo@narod.ru>
2001-10-04SoundForte RadioLink SF16-FMR2 FM Radio Card device driverGrigoriy Orlov
Work by Maxim Tsyplakov <tm@oganer.net>, Vladimir Popov <jumbo@narod.ru>
2001-10-04Aztech/PackardBell FM Radio Card device driverGrigoriy Orlov
Work by Maxim Tsyplakov <tm@oganer.net>, Vladimir Popov <jumbo@narod.ru>