summaryrefslogtreecommitdiff
path: root/sys/dev/usb
AgeCommit message (Collapse)Author
2009-11-22regenJonathan Gray
2009-11-22add a bunch of Ethernet and zyd devices found in linux drivers.Jonathan Gray
2009-11-22syncKevin Lo
2009-11-22add the Terminus Technology vendor id found on VIA VT6571Kevin Lo
2009-11-21in the detach function remove our usb task before calling any otherTheo de Raadt
teardown functions which could potentially sleep (and then, the usb task would get called for a half-torn down device)
2009-11-21Do the operations in atu_detach in the right order, as done inTheo de Raadt
other drivers recently.
2009-11-18- regenJasper Lievisse Adriaanse
2009-11-18- add startech.com and the product id for their ICUSB2321X/2X/4X devices,Jasper Lievisse Adriaanse
which seem to be a multiport TIUSB3410, which uticom(4) can't deal with yet. hints from sthen@
2009-11-17regenDamien Bergamini
2009-11-17another shitload of run(4) usb idsDamien Bergamini
we have 159 ids now just for run(4)
2009-11-17regenDamien Bergamini
2009-11-17the D-Link DWA-160 rev A2 is an otus(4) too.Damien Bergamini
2009-11-13do not need to pad up the uhub allocation anymore, from miodTheo de Raadt
2009-11-12Avoid using the trick of malloc'ing more than a struct to grow the arrayTheo de Raadt
of the last element. Bad technique. Use a pointer to the array. The author (or later people) will often not pay attention to the consequences of structure padding & alignment issues when they add new fields to the base structure, and there will be fireworks. tested by jasper, too
2009-11-09Every selwakeup() should have a matching KNOTE() (even if kqueue isn'tNicholas Marriott
supported it doesn't do any harm), so put the KNOTE() in selwakeup() itself and remove it from any occurences where both are used, except one for kqueue itself and one in sys_pipe.c (where the selwakeup is under a PIPE_SEL flag). Based on a diff from tedu. ok deraadt
2009-11-04Get rid of __HAVE_GENERIC_SOFT_INTERRUPTS now that all our platforms support it.Mark Kettenis
ok jsing@, miod@
2009-11-03setting of WEP keys is defered until interface is brought up,Damien Bergamini
so do nothing in set_key() if the interface is not up and running. fixes a panic reported by Steph (frlinux at gmail dot com) with run(4) on misc
2009-11-03don't take playback blocksize constraints into account when roundingJacob Meuser
blocksizes if the device doesn't support playback.
2009-11-03don't claim to support full-duplex if the device doesn't support bothJacob Meuser
recording and playback
2009-11-03provide a get_default_params method. tries aucat(1) defaults firstJacob Meuser
but returns the closest parameters the device supports. ok rathcov
2009-11-03rewrite supported audio parameter matching codeJacob Meuser
- easier to read/follow - if can't match desired parameters exactly, find closest match instead of returning an error. this is how most other audio drivers work. ok ratchov
2009-10-31Use suser when possible. Suggested by miod@.Federico G. Schwindt
miod@ deraadt@ ok.
2009-10-31Add missing KNOTE() calls after selwakeup(), until we decide if the KNOTE()Theo de Raadt
calls can go directly into selwakeup() safely long discussion with nicm, murmers of consent from tedu and miod, noone else seems to care of kqueue is busted as long as it makes their sockets move data fast... pretty sad.
2009-10-26better test for if the parent is ohci; ok mglockerTheo de Raadt
2009-10-22add Option GT HSUPA 380E, as found in the Acer AspireOne AOA150-BG model.Stuart Henderson
ok mpf@, jsg@
2009-10-22regenStuart Henderson
2009-10-22add Option GT HSUPA 380E, as found in the Acer AspireOne AOA150-BG model. ok ↵Stuart Henderson
mpf@, jsg@
2009-10-17remove bogus quirk. these devices do not lie about their type, butJacob Meuser
they do have bSynchAddress set to 0 in their endpoint descriptor. uaudio(4) used to not handle that correctly, but now does. positive response from krw, deraadt, ratchov
2009-10-15If the bSynchAddress of the AudioStreaming isochronous audio dataJacob Meuser
endpoint descriptor is set to 0, it means that a synchronization pipe is not needed.
2009-10-13Pass audio keys to the audio layer even when the keyboard is in raw mode,Miod Vallat
to match what pckbd does; reported by mk@
2009-10-13Get rid of devact enum, substitute it with an int and coresponding defines.Paul Irofti
This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@.
2009-10-12TCT Mobile modem, rebadged as Alcatel One Touch X060/X200.Jonathan Gray
From David Coppa <dcoppa@gmail.com>
2009-10-12regenJonathan Gray
2009-10-12TCT Mobile modem, rebadged as Alcatel One Touch X060/X200.Jonathan Gray
From David Coppa <dcoppa@gmail.com>
2009-10-11Minor cleanup run, no functional changes;Marcus Glocker
- Spacing / comments. - Be constant in using variable types. - Avoid repeating function-inline definitions for the same variable.
2009-10-10Let udl select the maximum resolution supported by the udl device and theMats O Jansson
monitor. Use the EDID parsing from videomode. -moj ok mglocker@
2009-09-27If no xfer buffer is free for the UDLIO_DAMAGE ioctl, sleep in the kernelMarcus Glocker
until one xfer buffer gets freed again, instead userland needs to handle this. Help and OK miod@, matthieu@
2009-09-26Fix artefacts in compression mode especially seen when running X.Marcus Glocker
2009-09-23Disable SPLUSBCHECK for now, as these turn out to be harmful on sparc64.Miod Vallat
2009-09-21Document a private ioctl range for wscons drivers (from Miod). ThereforeMarcus Glocker
change the UDLIO_DAMAGE ioctl from 0 to 128 and move the ioctl part from udl.h to udlio.h so we can include it in userland applications. Suggested and OK miod@
2009-09-20syncTheo de Raadt
2009-09-20Support the AX88772A model (found while shopping today); tested by mtuTheo de Raadt
2009-09-20Remove XXX content about missing screen repaint when switching to EMULMarcus Glocker
mode. Miod mentioned that is it OK to loose screen content when switching DUMBFB -> EMUL. Thanks.
2009-09-20For now just clear the screen when switching to emulation mode (need toMarcus Glocker
figure out how we can repaint it as well).
2009-09-20Add WSDISPLAYIO_SMODE, WSDISPLAYIO_SVIDEO, WSDISPLAYIO_GVIDEO ioctl. ToMarcus Glocker
be completed.
2009-09-19Rename another function; udl_cmd_set_xfer -> udl_cmd_set_xfer_type isMarcus Glocker
a bit more self explaining. No functional changes.
2009-09-19Rename two functions; udl_cmd_get_offset -> udl_cmd_save_offset, andMarcus Glocker
udl_cmd_set_offset -> udl_cmd_restore_offset, matches better what we do. No functional changes.
2009-09-19Re-sort function pointer assignments. No functional changes.Marcus Glocker
2009-09-19If UDLIO_DAMAGE fails to queue the damage drawing request, undo theMarcus Glocker
operation and tell the X11 driver to retry later (same as for rasops).
2009-09-19Add bits for X11 support over the wsdisplay framework (fully HuffmanMarcus Glocker
compressed). The upcoming X11 driver mmaps its framebuffer from the kernel and sends updates via the Damage mechanism. Committed from a X session on udl, of course.