summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2006-09-22put a few printf's in the interrupt handler under VR_DEBUG.Brad Smith
2006-09-22regenBrad Smith
2006-09-22add the Corollary CCF and the PLX 8532 PCIE switch.Brad Smith
2006-09-22add support for hotplugging devices on sas controllers. this is disabledDavid Gwynne
for now until we deal more appropriately with events generated by other variants of mpi controllers.
2006-09-21code for acking event notifications that require acks.David Gwynne
2006-09-21deref the right rcb by using i as the index, not 1 all the time.David Gwynne
2006-09-21start cleaning up the completion path for event notifications.David Gwynne
2006-09-21missing args for printf; some from Aurelien <aurelien26 at free dot fr>.Federico G. Schwindt
2006-09-21add a debug flag type thing for event handlingDavid Gwynne
2006-09-21wrap the hardware replies up in a structure called mpi_rcb which isDavid Gwynne
similair to the one used for requests. take the reply bits out of the ccb, but point it at the rcb instead. this lets us defer processing of the reply some time after we reuse or free the ccb.
2006-09-21factor the common code out of mpi_intr and mpi_complete. they wereDavid Gwynne
basically identical apart from the conditions they looped on.
2006-09-21event data for the sas phy and sas status change messagesDavid Gwynne
2006-09-20export a structure for the firmware file header. Unfortunately this isTheo de Raadt
one of the more gross firmwares around (as in, the broadcom supplied header file has 30+ ugly global variables.. which we must copy into a header. Kernel and userland must agree about this header, then the kernel can rip the header apart back into it's driver specific "globals"..)
2006-09-20build a bnx firmware file, for firmloadTheo de Raadt
2006-09-20implement a zero-copy RX data path.Damien Bergamini
instead of copying the xfer buffer's content into a mbuf cluster, attach the xfer buffer as a mbuf external storage and pass it to the net80211 layer as is. maintain a reference count on the softc structure and wait in detach() until all references have been released by the network layer.
2006-09-20syncBrad Smith
2006-09-20regenBrad Smith
2006-09-20HPSA_6 -> HPSAE500 (Smart ARRAY E500)Brad Smith
board model name from the Linux driver.
2006-09-20Make vnd(4) work on read-only file systems, from Paul Stoeber, okay tedu@Pedro Martelletto
2006-09-19Typo fixes.Michael Knudsen
ok marco
2006-09-19attach and enable the newer chipset generations AR2413, AR5413, andReyk Floeter
AR5424. unlike the previous chipset generations, these chipsets are single chip solutions. the AR5424 is a PCI Express chipset as found in various intel Macs. support is still incomplete- 11a mode works and 11b mode is rx-only. i need some more test reports, hardware donations (there are several different subrevisions) and time to finish it. thanks for help from kettenis@ "of course!" deraadt@
2006-09-19add missing sys/device.h.Brad Smith
ok mglocker@
2006-09-19detect the newer single chip generations AR2413, AR5413 and AR5224 butReyk Floeter
don't attach them, yet.
2006-09-19"pure g" is a special, non-standard ofdm-only mode. use the standardReyk Floeter
dynamic cck/ofdm "11g" mode instead.
2006-09-19better mode setup in the ar5211 and ar5212 reset functionsReyk Floeter
2006-09-19syncReyk Floeter
2006-09-19add atheros AR2413 and AR5413 device idsReyk Floeter
2006-09-19fix 11a/b antenna mode setupReyk Floeter
2006-09-19use the correct antenna mode settings and fix a bug in the txReyk Floeter
descriptor setup. this will fix various issues including 11a mode with ar5212.
2006-09-19disable 11g mode for nowReyk Floeter
2006-09-19fix all malloc()s to nowait|canfail and do not ignore errors reading sensor ↵Michael Shalayeff
status; marco@ ok
2006-09-19no externs on protots ad no casts from void *Michael Shalayeff
2006-09-19add a missing space to a DMA load error printf.Brad Smith
2006-09-18Fix for re_stop() being called from re_cardbus_shutdown() with theDimitry Andric
wrong arguments, causing uvm_fault on halt/reboot, with a cardbus re inserted. While here, cleanup prototypes and use revar.h everywhere. ok brad@
2006-09-18fix my 1.7 commit.Damien Bergamini
in uath_reset(), return on error if tsleep() fails.
2006-09-18better uath_set_rates().Damien Bergamini
2006-09-18cleanup the list of supported devices.Damien Bergamini
2006-09-18don't use IF_PREPEND() on altq's.Damien Bergamini
use IFQ_POLL()/IFQ_DEQUEUE() logic instead as described in altq(4).
2006-09-18macros and types for event notifications from the hardware.David Gwynne
2006-09-18tiny whitespace nitDavid Gwynne
2006-09-18get rid of the usb_port.h macros that wrap our kthread create functions.David Gwynne
looks ok pascoe@
2006-09-18regenGordon Willem Klok
2006-09-18Add some pci device types for Integrated Micro Solutions.Gordon Willem Klok
2006-09-18g/c unused SK_{SET,CLR}BIT macrosBrad Smith
From riz@NetBSD
2006-09-18There's no need to walk the list of devices to find the SCSI bus wePedro Martelletto
should attach to, since config_found() already returns a pointer to it. Pointed out by Quentin Garnier, okay dlg@.
2006-09-18regenBrad Smith
2006-09-18add entries for unknown Marvell SATA and ServerWorks IDE PCI ids.Brad Smith
2006-09-18regenBrad Smith
2006-09-18- fix typo in Corollary vendor nameBrad Smith
- add the Silicom vendor id - add the Compaq Hotplug PCI host bridge id - add the Hint HB6 PCI bridge ids
2006-09-18More uath devices, also properly mark some of the UB52/AR5005UX devicesJonathan Gray
with the dual band flag.