summaryrefslogtreecommitdiff
path: root/sys/dev/usb
AgeCommit message (Collapse)Author
2006-09-26regenJonathan Gray
2006-09-26Match ELECOM LD-USB20Jonathan Gray
From redzonemiata at yahoo.co.jp via FreeBSD PR 86195
2006-09-23syncMarcus Glocker
2006-09-23Add TRENDnet TEW-429UB A.Marcus Glocker
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-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-18get rid of the usb_port.h macros that wrap our kthread create functions.David Gwynne
looks ok pascoe@
2006-09-18More uath devices, also properly mark some of the UB52/AR5005UX devicesJonathan Gray
with the dual band flag.
2006-09-18regenJonathan Gray
2006-09-18More uath devices.Jonathan Gray
2006-09-16add new uath(4) ids and fix existing ones.Damien Bergamini
ok deraadt@
2006-09-16sync (uath)Damien Bergamini
2006-09-16add new uath(4) ids and fix existing ones.Damien Bergamini
ok deraadt@
2006-09-16sync (uath)Damien Bergamini
2006-09-16more uath(4) usb ids.Damien Bergamini
from jsg@
2006-09-16indentDamien Bergamini
2006-09-16fix a buggy printf.Damien Bergamini
in case something wrong happens in the Tx path, don't free a mbuf that is left in if_snd. ok deraadt@
2006-09-16sync (uath)Damien Bergamini
2006-09-16Initial import of uath(4), a driver for Atheros USB2.0 AR5005UG/AR5005UXDamien Bergamini
chipsets. Based on a black-box analysis of the Windows binary driver. Requires a firmware that is not freely redistributable (see man uath). The driver handles both pre- and post-firmware devices. Still a bit experimental but Tx/Rx works great in BSS mode (on i386). No 802.11a, IBSS, or HostAP modes yet but there's more to come. Great thanks to jsg@ for digging the USB IDs out of the Windows driver. Committed over a D-Link DWL-G132.
2006-08-29Fix a possible kernel panic in ucom(4) that is caused by ttyclose() using dataMarc Balmer
already freed by ucom_close(). Problem reported and initial patch provided by Marc Winiger <marc@winiger.ch> ok miod, deraadt
2006-08-24s/IEEE80211_MTU_MAX/IEEE80211_MAX_LEN/ in my previous commit.Damien Bergamini
2006-08-24Be sure to print device name in debug messages, removeJonathan Gray
a few surplus dmesg messages while here.
2006-08-24when shutting down, wrap the variable manipulation in splusb() so weirdJason Wright
stuff doesn't happen if we're interrupted.
2006-08-24regenBrad Smith
2006-08-24add the Epson Perfection 1670 and Stylus CX3650.Brad Smith
From FreeBSD
2006-08-23- fall back to 1Mbps if tx rate is returned as zero. avoids divide by zero. ↵Niall O'Higgins
should never happen, but sometimes it does on my amd64. ok damien@
2006-08-23the maximum MTU allowed for IEEE802.11 is 2290 which is greater thanDamien Bergamini
MCLBYTES (usually 2048). allocate tx xfer buffers of IEEE80211_MTU_MAX instead of MCLBYTES. rx buffers are still limited to MCLBYTES though.
2006-08-23in rum_rxeof(), don't check xfer length against IEEE80211_MIN_LEN sinceDamien Bergamini
the CRC is not included in the xfer. check against sizeof(struct ieee80211_frame_min) instead.
2006-08-23Add Nova Tech NV-902W, and mention another Zinwell ural(4) device.Jonathan Gray
2006-08-23regenJonathan Gray
2006-08-23Add another ural(4) device, Nova Tech NV-902W.Jonathan Gray
2006-08-22Fix possible NULL deref from Alexey V. Vatchenko <avv@mail.zp.ua>Marco Peereboom
2006-08-22Deactivate the QTDs when removing a queue head to prevent the hostChristopher Pascoe
controller from reactivating it. Slight variation on what is suggested in the EHCI spec to work around problems with VIA controllers. ok dlg@
2006-08-22Be more aggressive about waiting for the host controller doorbell,Christopher Pascoe
re-requesting it at half second intervals for up to five seconds. ok dlg@
2006-08-18get the attach args from the right place (honestly, this "worked" on i386)Jason Wright
sparc64? not so much.
2006-08-18set of unrelated cosmetic tweaks.Damien Bergamini
2006-08-18fix a printf format stringDamien Bergamini
2006-08-18sync w/ rum(4):Damien Bergamini
- in ral_newstate(), save the "arg" parameter so we can pass it to the ieee80211_newstate() function in the usb task - merge ral_tx_data() and ral_tx_mgt()
2006-08-18- fix support for RT5225 (802.11a MIMO)Damien Bergamini
- set default Tx power for 802.11a channels - in rum_newstate(), save the "arg" parameter so we can pass it to the ieee80211_new_state() function in the usb task - merge rum_tx_data() and rum_tx_mgt() - s/le32toh/letoh32/g (le32toh is defined in usb_port.h) - cosmetic while i'm here
2006-08-18support for ucycom:Jason Wright
- teach ucom that not all i/o is done via bulk pipes - teach uhidev that i/o interrupt pipes are distinct
2006-08-17Separate rum(4) firmware from ral(4) ones.Damien Bergamini
ral(4) firmwares are built on PCI-capable architectures only while rum(4) firmware is built on USB-capable architectures only. Rename ral-rt2573 into rum-rt2573 and build rum-rt2573 on the zaurus too (pointed out by Patrick Heim). ok deraadt@
2006-08-17EHCI_NULL is already endian swapped. Don't swap it back.Christopher Pascoe
ok dlg
2006-08-16remove unecessary debugging stuffJason Wright
2006-08-16don't quirk the earthmatesJason Wright
2006-08-16Belkin RT2601USB.Jonathan Gray
2006-08-16regenJonathan Gray
2006-08-16Belkin RT2601USB.Jonathan Gray