summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2000-04-11- add support for buffers that are not aligned (or end on a non 4byte boundary)Jason Wright
- recompute destination length from destination descriptors and reclaim the destination ring there.
2000-04-11regenJakob Schlyter
2000-04-11Philips USB cameraJakob Schlyter
2000-04-11- Don't bother with PCI_COMMAND_IO_ENABLE, the card doesn't support it.Jason Wright
- remove some debugging code - fix arguments to last call to crypto_register() - for sram boards, only check 1mb of ram - when the rings are full, call the crp->callback with crp->crp_etype == ENOMEM so it can clean up, then return 0 - some KNF
2000-04-11syncHakan Olsson
2000-04-11Add Neomagic NM256ZXHakan Olsson
2000-04-11define the rest of the descriptor bitsJason Wright
2000-04-11Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.orgPaul Janzen
2000-04-10add support for true RNG presented on the i82802 FWH.Michael Shalayeff
it produces 1 byte at a time and has no ready irq, thus timeout driven. in fact w/ default hz=100 it produces up to 60% of gross entropy production in an average loaded desktop system.
2000-04-10make .mpg playing more usefull, i.e. supply entropyMichael Shalayeff
2000-04-10add support for more random sources.Michael Shalayeff
make it easy to add more in the future. make extract_entropy() faster. more accurate stats.
2000-04-10- Add back code from the original aeon driver to handle missed interrupts byJason Wright
enabling interrupts when the command queue has more than one entry. - fix comment on hifn_newsession to reflect reality - allocate session structure in softc - compute a random IV when a session is created and try to chain from a software kept IV for subsequent packets - add handling of CRD_F_EXPLICIT
2000-04-10Use pci_mapreg_map() instead of pci_io_find() and pci_mapreg_map()Todd C. Miller
2000-04-10regenMichael Shalayeff
2000-04-10a couple of xircom ethernet controllersMichael Shalayeff
2000-04-10Aironet PCI shim; all the real meat is in sys/ic/an.c.Todd C. Miller
Based on the FreeBSD if_an_pci.c but really the only things that remain the same are the informative comments at the top. I retained Bill Paul's Copyright since it seems silly to add my own copyright to what is simply boilerplate.
2000-04-10regenTodd C. Miller
2000-04-10Pare down the AIRONET strings a bitTodd C. Miller
2000-04-10regen from pcidevsTodd C. Miller
2000-04-10Add Aironet PC4500 and PC4800Todd C. Miller
2000-04-10Added support for wd detach (merge from NetBSD). Support forConstantine Sapuntzakis
SCSI/ATAPI detach is not here yet. Minor cleanup of wdc. Downgrade to UDMA mode 1 before going further. Want to stay in UDMA modes because they're more error-resilient due to a CRC. Got rid of some of the ridiculous amount of softc sharing going on. Hopefully, this will make the life of whoever goes in and fixes the ref-counting to be correct easier.
2000-04-08If the vendor name is NULL, do not output a leading space; reported by deraadt@Aaron Campbell
2000-04-08Y-E UFI drives don't clear sense on INQUIRY. Upper-layer SCSI driversConstantine Sapuntzakis
don't like that too much. Now drive is detected correctly, even without floppy in it.
2000-04-08Add RCSids.Aaron Campbell
2000-04-08Complete the port to OpenBSD started by aaron@Constantine Sapuntzakis
Tested with Y-E USB floppy.
2000-04-08Initial check-in for support of 32-bit CardBus PC Cards; from NetBSD. On manyAaron Campbell
machines, this code needs the new PCIBIOS* options enabled in the kernel config file to work, but your mileage may vary. Included is a working 3c575 driver for 3Com 10/100 CardBus PC Card NICs (tested only with the 'C' revision). The 3c575 is the pccard version of the PCI EtherLink XL cards, and thus the xl driver has been split into /sys/dev/ic.
2000-04-07correct debug printoutsNiklas Hallqvist
2000-04-07remove staticsNiklas Hallqvist
2000-04-06Don't match AIC6915 -- that's a network card, supported by sf(4).Aaron Campbell
2000-04-06Get FC connection topology out of f/w during startup. Reset restrictionmjacob
against targets < 129 if we're on a Public Loop- we can have those, yes. Fix all the settings isp_sendmarker all throughout this file to OR in the bus that we are trying to synchronize (e.g., after a bus reset)- this way we don't wipe out pending sendmarker settings that haven't been done yet.
2000-04-06Remove restriction against bus resets for Ultra3 cards (and whatmjacob
would have been for Ultra2)- we've fixed the problem in isp_control.
2000-04-06Roll internal revision level. Put in Fibre Channel topology storagemjacob
and definitions.
2000-04-06hide debugging printfsMichael Shalayeff
2000-04-05run at splnet() instead of splimp()Jason Wright
2000-04-05maintain state about keys, upload them to context ram once (and avoid theJason Wright
300 clock penalty on key upload) XXX hifn_freesession should probably zot the keys from context ram but XXX does not yet.
2000-04-05regenNiklas Hallqvist
2000-04-05Correct RCSIdNiklas Hallqvist
2000-04-05Changed boot messages and fixed Ultra160 boot messages.Steve Murphree
AHA-29160 Ultra160 verified working.
2000-04-05Add USB modem driver stubs; from NetBSD. Not yet tested.Aaron Campbell
2000-04-04Sync with NetBSD.Aaron Campbell
2000-04-04New USB mass storage driver. Improvements: Uses asynchronous USB requests,Aaron Campbell
supports more transport protocols (bulk-only and CBI), supports more command sets (SCSI and ATAPI); from NetBSD. Not yet tested.
2000-04-04add mac result pointer to the callback routineJason Wright
register as supporting MD5_HMAC96 and SHA1_HMAC96 use the correct bit (HIFN_MAC_CMD_NEW_KEY) when checking the mac_cmd mask don't append the mac result to the dest buffer, add it to the result buffer remove incorrect source count calculation involving mac length add order checking to hifn_process so that we can verify the request is possible given the ordering of processing units within the hifn. correct hifn_callback()'s handling of mac checking and copy the computed mac into the right place in the mbuf.
2000-04-04regenMichael Shalayeff
2000-04-04make the comment and definition of HIFN_MAX_COMMAND more readableJason Wright
define HIFN_MAC_CMD_RESULT bit (append MAC to result buffer)
2000-04-04new cards supported by if_awi (new coming soon); also extraneous spaces removedMichael Shalayeff
2000-04-04regenMichael Shalayeff
2000-04-04i82802AB/AC firmware hubMichael Shalayeff
2000-04-04Import tagging code and try to resolve locking problem.Steve Murphree
2000-04-03fix dmesg outputTheo de Raadt
2000-04-03change overriding messageTheo de Raadt