summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2000-09-14syncTheo de Raadt
2000-09-14more lava; moride@portside.net has oneTheo de Raadt
2000-09-14more lavas; moride@portside.net has oneTheo de Raadt
2000-09-14syncNiklas Hallqvist
2000-09-14Alta Tech only OEMed, the real vendor was Packet EnginesNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14Adaptec and RCC extrasNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14i960 PCI-PCI bridgesNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14ATI Mach64 GYNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14Altatech PMC/GNIC2 gigabit ethernetNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14oops pastoNiklas Hallqvist
2000-09-14syncNiklas Hallqvist
2000-09-14Some Adaptec-based RAID product IDsNiklas Hallqvist
2000-09-13Sync with FreeBSD. Finally make the OpenBSD-specific changes necessary to makeAaron Campbell
non-MII 21143-based cards work. The sync just fixes the LED handling on these kinds of adapters.
2000-09-12syncTheo de Raadt
2000-09-12new ENI part; stoklund@taxidriver.dkTheo de Raadt
2000-09-11another card with this chipsetTheo de Raadt
2000-09-06vgafb is removed, was only used on powerpc, and is not in a state toDale S. Rahn
be an MI device. This old version was based on old wscons and will not build.
2000-09-04printing XaQti on 5 consecutive lines is stupidTheo de Raadt
2000-09-04match pcic at isa memory config, free resources on failure (-1 panic); aaron@ okMichael Shalayeff
2000-09-04regenJun-ichiro itojun Hagino
2000-09-04Brooktree Bt8474 Multichannel Synchronous Communictaions Controller (MUSYCC)Jun-ichiro itojun Hagino
2000-09-01syncTheo de Raadt
2000-09-01repairsTheo de Raadt
2000-09-01syncTheo de Raadt
2000-09-01a commentTheo de Raadt
2000-09-01reMichael Shalayeff
2000-09-013ware escaladeMichael Shalayeff
2000-09-01syncTheo de Raadt
2000-09-01newish stuff, based on various trawlingTheo de Raadt
2000-08-29From FreeBSD: split out the support for XMAC-II phys and other physJason Wright
add xmphy & brgphy to GENERIC
2000-08-26Typo. Ok deraadt@Kevin Lo
2000-08-25Sync with FreeBSD. Summary of changes:Aaron Campbell
- Modify to poll link state and positively set MAC's duplex as needed. - Program some DP83815 registers that are recommended for optimum performance. - Select the TX DMA burst size correctly for 10 and 100Mbps modes, especially improving the performance of the DP83815 at 10Mbps.
2000-08-25Match Promise Ultra/100 as PDC20262 instead of PDC20246Chris Cappuccio
(netbsd)
2000-08-25regenNiklas Hallqvist
2000-08-25Remove a blank line that confused the awk script enoughNiklas Hallqvist
to remove the following copyright statement from the generated files. Noticed by Chris Demetriou <cgd@netbsd.org>
2000-08-19- introduce new function ubsec_mcopy() which copies the header and trailerJason Wright
of one mbuf into another since ubsec doesn't copy data through - get all of the offsets right for the !nicealign case - style fixes Authentication/Encryption on the same packet now appears to work reliably
2000-08-18wb needs mii_phy for mii_phy_reset()Michael Shalayeff
2000-08-17use destination lengths when trimming the output packet (cut and pasto)Jason Wright
2000-08-17- auth+enc sorta works: fixup all of the offsets for encryption/authenticationJason Wright
- also check for cases that ubsec cannot handle (and should not happen anyway) - actually use the destination length to trim the packet in the output descriptor - don't copy the IV into the packet unless it doesn't already have one (old debugging code...) - style fixes
2000-08-16Fix AK4531 data sheet link. Ok'd by deraadt@Kevin Lo
2000-08-15use pci_mapreg_map, deallocate resources on failure in attachment; jason@ okMichael Shalayeff
2000-08-15Put the bcopy back in place for the decryption CRD_F_EXPLICIT_IV case (missedJason Wright
this yesterday when fixing the encryption side of this case). Only used for old IPSec xforms anyway.
2000-08-15don't forget the initial swizzling with IPAD for inner state (fixesJason Wright
auth-only mode which was broken with new session code).
2000-08-15- deallocate all resources grabbed during hifn_attach() when an error occurs.Jason Wright
- temporary workaround for netsec hifn7751 rev A: half the amount of memory because two of the address lines were left floating (better memory check coming soon).
2000-08-15- Can't avoid one of those bcopy's so easily (only happens with old ESPJason Wright
transforms... those with CRD_F_IV_EXPLICIT, so we can take the function call overhead there). - >> instead of << for coffset (auth+enc still isn't working, but this was an obvious bug). - #ifdef UBSEC_DEBUG out the auth-only debugging code