summaryrefslogtreecommitdiff
path: root/sys/dev/usb
AgeCommit message (Collapse)Author
2002-05-19Provide a correct timeout behaviour, fixes some panics people had beenMiod Vallat
experienting. Discussed and brought to this shape by art@, drahn@ and myself.
2002-05-11I HATE it when things that we fix come back from bad mergesTheo de Raadt
2002-05-09Fix ioctl handlingNathan Binkert
Add default MTU fix typo errors noted by Jason Ackley <jason@ackley.net>
2002-05-09Sync hid stuff including ukbd, ums, and uhid with NetBSDNathan Binkert
This adds a uhidev device which can be thought of as something like a uhid bus. It allows more than one ukbd, ums, or uhid to attach to the same device instance. This functionality is found on many of the newer keyboards that have extra buttons. (The extra buttons show up as uhid device(s)). Tested by me on i386, dale on macppc, and jason on sparc64
2002-05-07Fix uvisor for what's currently in the treeNathan Binkert
2002-05-07Sync quirks with NetBSDNathan Binkert
2002-05-07Sync uvisor driver with NetBSD. This adds support for PALM4 devicesNathan Binkert
2002-05-07Add a driver for Realtek RTL8150L based ethernet devicesNathan Binkert
From NetBSD
2002-05-07Meant to commit only ulpt and committed everything. Most things weren't readyNathan Binkert
2002-05-07Sync ulpt driver with NetBSDNathan Binkert
2002-05-06sync uaudio with NetBSDNathan Binkert
2002-05-06typedef for proc * for portabilityNathan Binkert
2002-05-06Make more portable with NetBSDNathan Binkert
Whitespace sync with NetBSD
2002-05-06sync with NetBSDNathan Binkert
2002-05-06Sync with NetBSDNathan Binkert
2002-05-05Use correct $NetBSD$Nathan Binkert
2002-05-05whitespace sync with netbsd.Nathan Binkert
2002-05-02prefix structure members to avoid name clashes.Nathan Binkert
From NetBSD
2002-04-03move the "ukbd_enable: %s: bad call on=%d" from DIAGNOSTIC to UKBD_DEBUGJason Wright
2002-04-01Add support for a bunch of new adapters.Nathan Binkert
Sync with NetBSD. ok deraadt
2002-04-01syncNathan Binkert
2002-04-01More USB devices.Nathan Binkert
From NetBSD ok deraadt
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2002-03-12swiss german and french keymaps; from pckbd by Mathias Schmocker ↵Michael Shalayeff
<smat@polaris.smat.ch>
2002-03-12sync with KAMEKenjiro Cho
ALTQify more drivers. ok millert@
2002-02-27We have memcpy and memset in the kernel.Artur Grabowski
2002-01-30Move SET/CLR/ISSET macros to param.h. fgsch@ and millert@ okThomas Nordin
2002-01-10Check result from malloc(9) when using M_NOWAIT. nate@ okThomas Nordin
2002-01-03new names, nate broke the treeTheo de Raadt
2002-01-03more devices from NetBSDNathan Binkert
2002-01-03syncNathan Binkert
2002-01-03Add devices and reorganize.Nathan Binkert
Some stuff from NetBSD
2001-12-17and of course, since the tree is so volatile now, i mess it upTheo de Raadt
2001-12-17move more microcode, so that it does not end up in /usr/includeTheo de Raadt
2001-11-25regenMichael Shalayeff
2001-11-25nikon e880; from Dan Weeks <danimal@danimal.org>Michael Shalayeff
2001-11-06syncPeter Stromberg
2001-11-06new devicePeter Stromberg
2001-11-02i do not think everybody needs USB_DEBUGMichael Shalayeff
2001-10-31syncNathan Binkert
2001-10-31new deviceNathan Binkert
2001-10-31syncNathan Binkert
2001-10-31Synchronize usb code with NetBSD.Nathan Binkert
2001-10-26syncNathan Binkert
2001-10-26MCT USB-232 interfaceNathan Binkert
from S@mSmith.net
2001-10-25ddb entry support using usb (console) keyboard.Dale Rahn
Do not send characters directly from usb interrupt handler for console keyboard. entering ddb from within the usb interrupt handler is _bad_. Instead delay until next timeout check and deliver characters then. Tested on mappc. From NetBSD.
2001-10-25If a usb keyboard is detached, check if the intrpipe is still active.Dale Rahn
Console keyboard will still be active and must be shut down for successful detach. This change and previous change to wskbd.c both from NetBSD. Tested by miod@ and myself. Hot plug/unplug on USB console keyboard now works on macppc. (this and wskbd.c may be errata candidates).
2001-10-04Match a IEEE 1284.4 protocol. We do not support this protocol directly,Grigoriy Orlov
but USB_ATTACH will switch printer to bidirectional protocol. Read status from printer. From NetBSD. This forces newest usb printers works. Tested by drahn@ (Epson 740) and me (HP LaserJet 2200). Ok aaron@
2001-10-02make usb work across apm suspends. okay millert@, niklas@, aaron@, deraadt@Niels Provos