summaryrefslogtreecommitdiff
path: root/sys/dev/usb
AgeCommit message (Collapse)Author
2006-11-19restore the workaround for rate==0 bug.Damien Bergamini
i removed it in my last commit because i thought it was gone. looks like it's not the case. pointed out by niallo@
2006-11-17syncTheo de Raadt
2006-11-17usb hub found on ibm x3455; Srebrenko SehicTheo de Raadt
2006-11-16syncTheo de Raadt
2006-11-16another cdceTheo de Raadt
2006-11-16add support for 4 new radios: AL2210, CGT, Maxim New, Maxim New2Damien Bergamini
untested because of lack of hardware. if you have a ZD1211 adapter with one of these radios, please drop us a mail. code written by Florian Stoehr <ich AT florian-stoehr DOT de>
2006-11-15Fix an integer type promotion that can lead to wrong offsets on 64 bit arches.Marc Balmer
Problem and solution found by Christian "Naddy" Weisgerber <naddy@openbsd.org>, thanks!
2006-11-13first round of commits for proper 11b/g protection support:Damien Bergamini
- use the newly introduced ieee80211_get_rts() and ieee80211_get_cts_to_self() functions. - use CTS-to-self instead of RTS/CTS to protect OFDM frames in a mixed 11b/g BSS. - make sure multicast frames are sent using CCK modulation. remove support for 5GHz radios in ral(4) RT2560 and ural(4). i'm not aware of any such adapters on the market and 11a code is known to be broken. some cleanup while i'm here.
2006-11-11regen -mojMats O Jansson
2006-11-11Add some USR Wlan adapters. -mojMats O Jansson
2006-11-11add quirk for the usb missile launcherJolan Luff
2006-11-11regenJolan Luff
2006-11-11usb missile launcherJolan Luff
2006-11-03add new code to handle the AL7230B radios.Damien Bergamini
code written by Florian Stoehr. not tested due to lack of hardware. if you happen to have an adapter with this radio please report success/ failure.
2006-11-01abort bulk-in and bulk-out pipes in zyd_stop() before freeing theDamien Bergamini
Rx/Tx xfer lists.
2006-11-01regenJolan Luff
2006-11-01BWCT serialJolan Luff
2006-11-01poll errors should be POLLERR, not some random E valueTed Unangst
from alexandre ratchov. ok claudio
2006-10-28- Use better names for the variables containing the timeouts in Hz instead ofMarc Balmer
just t1-t10. - Remove some unused variables. - Restructure some functions to remove some levels of indentation.
2006-10-27udcf(4) degraded the sensor status from OK to WARNING on the first receiptionMarc Balmer
error, which is to fast as this does not give ntpd the opportunity to use the sensor value. If we decode a valid time information, it has to be available to applications for some minimal time. I choose a value of 5 minutes. If we do not receive any new valid time information during this period, the sensor will be degraded to WARNING, and after another fifteen minutes it will be further degraded to CRITICAL. "makes sense to me" henning@, "sure" deraadt@
2006-10-26Move from a switch based baud rate selection to range checkingJonathan Gray
based selection as hardware is not limited to fixed rates. Suggested by deraadt
2006-10-26Driver for MosChip MCS7703 based USB Serial devices.Jonathan Gray
Support for hardware flow control not yet implemented.
2006-10-26regenJonathan Gray
2006-10-26MosChip serial & EthernetJonathan Gray
2006-10-24Fix indentation to not imply, that USB_ATTACH_ERROR_RETURNMoritz Jodeit
is an argument of printf(). No binary change.
2006-10-23simplify zyd_read_eeprom().Damien Bergamini
2006-10-23turn link led off when returning to the S_INIT state.Damien Bergamini
implement fast channel switching for monitor mode.
2006-10-22make data LED blink upon TX.Damien Bergamini
2006-10-22make sure ni->ni_txrate is always initialized to a meaningful value byDamien Bergamini
redefining ic->ic_newassoc. this should prevent "bogus xmit rate" panics when operating in HostAP mode.
2006-10-22do per-node rate control.Damien Bergamini
2006-10-21some extra const disease damien was testing slipped in; ok damienTheo de Raadt
2006-10-21huge diff to bring zyd(4) into a working state.Damien Bergamini
should work with ZD1211 (not ZD1211B!) adapters with either a RFMD or AL2230 radio chip. does not support IBSS or HostAP modes yet. committed over a Billion 3011G (ZD1211/AL2230). "commit it!" deraadt@
2006-10-19regenJonathan Gray
2006-10-19Support later versions of the ASUS WL-167g which have switchedJonathan Gray
from ural to rum. From Jason Crawford <jasonrcrawford@gmail.com>
2006-10-16Fix some "is is"s. ok otto@.Tom Cosgrove
2006-10-14Apply some formatting.Marc Balmer
2006-10-11Make the timedelta sensor appear right when a device is plugged-in, with aMarc Balmer
status of SENSOR_S_UNKNOWN. Do not set the SENSOR_FINVALID bit, sysctl hw.sensors does not list sensors with this flags set and we want to the sensor when the device is present. ok henning
2006-10-08Implement bus searching.Alexander Yurchenko
2006-10-08Add status register bits string for pretty %b printf.Alexander Yurchenko
2006-10-03make sure to call SLIST_INIT on sc->rx_freelist.Damien Bergamini
sanity check length field in RX descriptors.
2006-10-03don't use IF_PREPEND() on altq's.Damien Bergamini
use IFQ_POLL()/IFQ_DEQUEUE() logic instead as described in altq(4). tested by jolan@ on macppc "diffs look ok" brad@
2006-09-30Implement match rom command.Alexander Yurchenko
2006-09-30Reset device on errors.Alexander Yurchenko
2006-09-30Pretty.Alexander Yurchenko
2006-09-30More useful error messages.Alexander Yurchenko
2006-09-30Reset device on attach.Alexander Yurchenko
2006-09-30Add new parameter to uow_cmd() to set command type.Alexander Yurchenko
Create aliases uow_ctlcmd(), uow_commcmd() and uow_modecmd() for sending control, communication and mode commands. No functional changes.
2006-09-29Implement block read/write operations.Alexander Yurchenko
2006-09-29Add command and data FIFO size constants.Alexander Yurchenko
2006-09-29regenJonathan Gray