summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2001-09-05ElanSC520 Host-PCIJason Wright
2001-09-05fix pci_intr_map so that it uses the new interfaceNathan Binkert
2001-09-05add lgeNathan Binkert
2001-09-05Pick up a bugfix from FreeBSD: In wx_hw_stop, a bogus additional writemjacob
to WXREG_IMASK enabled *all* interrupt causes while we were trying to *disable* them all. Oops.
2001-09-05Stereo jitter suppressor.Marc Espie
Idea from FreeBSD. This code was not put in initially because I had no problematic card to test. Thanks to Chris Kuethe <ckuethe@pyxis.cns.ualberta.ca> for having such a card and testing this code.
2001-09-05add intel ich3 ac97Niels Provos
2001-09-05syncNiels Provos
2001-09-05add 82801CA/CAM AC97 AudioNiels Provos
2001-09-04recognize intel pro/100 cards; okay deraadt@Niels Provos
2001-09-04syncTheo de Raadt
2001-09-04shortenTheo de Raadt
2001-09-04Driver for the Level1 LXT1001 Gigabit Ethernet Chip.Nathan Binkert
From FreeBSD
2001-09-04syncChris Cappuccio
2001-09-04Intel ICH3 (82801CA/CAM) IDEChris Cappuccio
2001-09-04Select between MII/GMII/TBI in the mii_mediachg function instead of in theNathan Binkert
interrupt handler since it is more reliable. Pointed out by wpaul
2001-09-04Fix mask for callout unitNathan Binkert
2001-09-01Catch up with mainline of code development.mjacob
Add support for 2 Gigabit cards (2300/2312). This necessitated a change in how interrupts are down- the 23XX has not only a different place to check for an interrupt, but unlike all other QLogic cards, you have to read the status as a 32 bit word- not 16 bit words. Rather than have device specific functions as called from the core module (in isp_intr), it makes more sense to have the platform/bus modules do the gruntwork of splitting out the isr, semaphore register and the first outgoing mailbox register (if needed) *prior* to calling isp_intr (if calling isp_intr is necessary at all). Rearchitect how regular SCSI parameters are stored or used.
2001-08-31Print a hex value with 0x (Alexander Yurchenko <grange@rt.mipt.ru>)Chris Cappuccio
2001-08-28an attempt at deuglification of the previous commit (It's still ugly, tho)Jason Wright
2001-08-28Relax restriction on buffer length being % 4 = 0 for the last entry in theJason Wright
chain. This allows us to avoid mbuf copies (and EINVAL on iov's) for packets of non "nice" length. Do this by adding a pad u_int32_t to catch the (possible) overflow and detecting when it's necessary. Also, do a bit of cleaning that ben pointed out.
2001-08-27get direction of read/write correct in calls to bus_dmamap_sync()Jason Wright
2001-08-27reverse read/write directions in bus_dmamap_sync calls since I misunderstood ↵Jason Wright
the API
2001-08-27Deal with __HAS_NEW_BUS_DMAMAP_SYNC and try to sync partial maps when possible.Jason Wright
2001-08-27initial support for non-HMAC md5/sha1 (work by ben@ and myself)Jason Wright
2001-08-27syncChris Cappuccio
2001-08-27Promise PDC20268Chris Cappuccio
2001-08-26syncTheo de Raadt
2001-08-26newTheo de Raadt
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-26deal with 5 arg form of bus_dmamap_sync() if availableJason Wright
2001-08-26remove useless INUSE references from scsi_xfer->flags; art@ miod@ ok.Federico G. Schwindt
2001-08-25deal with 5 arg for of bus_dmamap_sync() if availableJason Wright
2001-08-25Allow machdep code to decide the order in which we probe theArtur Grabowski
pci buses. this is conditional on __PCI_BUS_DEVORDER and __PCI_DEV_FUNCORDER Used by sparc64.
2001-08-25 - Use BUS_DMA_RAW if it's defined.Artur Grabowski
- pretty.
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-08-24missing bus_dmamap_sync() calls on descriptors... also deal with 5 argument ↵Jason Wright
form of bus_dmamap_sync()
2001-08-23syncConstantine Sapuntzakis
2001-08-23VT82C686A -> VT82C686 (in user-visible description)Constantine Sapuntzakis
closed PR#2019
2001-08-23recieve -> receiveAaron Campbell
2001-08-23sparc64 really benefits from knowing exactly what mappings to syncArtur Grabowski
on bus_dmamap_sync, so it will have the same call footprint as in NetBSD. Rather than converting the whole world to the new arguments we will slowly convert everything that sparc64 needs with ifdef __HAVE_NEW_BUS_DMAMAP_SYNC Once most relevant drivers are converted we can start implementing the new bus_dmamap_sycn on other archs.
2001-08-23Some reordering in the code caused hw_ok to never be set to 1Artur Grabowski
which causes some CMD Technology controllers to never attach properly.
2001-08-23syncTheo de Raadt
2001-08-23shortenTheo de Raadt
2001-08-23only include <machine/autoconf.h> on sparc64Jason Wright
2001-08-22pci bus frontend for hme from netbsdJason Wright
2001-08-22Support more dc(4) CardBus devices, including the AN985-based Linksys PCMPC200Aaron Campbell
10/100 CardBus Ethernet adapter (thanks to beck@ for the donation).
2001-08-22rename hs_flags -> hs_state and use #defines for the state names.Jason Wright
2001-08-22Initialize auto variable (win[{0,1}].win_flags). Also, if PCCBB_MEM_CACHABLEAaron Campbell
isn't set, clear the prefetchable bits in the bridge control register. These fixes from NetBSD. Now OpenBSD won't hang when it tries to read the CIS from an ADMtek-based card through a Ricoh-based PCI-CardBus bridge.
2001-08-22better error handling (a merge of ben's stuff and mine)Jason Wright
2001-08-22regenArtur Grabowski