summaryrefslogtreecommitdiff
path: root/sys/dev/usb
AgeCommit message (Collapse)Author
2008-05-26Add more ioctl's (still unfinished); VIDIOC_ENUM_FMT, VIDIOC_ENUMINPUT,Marcus Glocker
VIDIOC_S_INPUT, VIDIOC_TRY_FMT. Allows me at least to use a small V4L2 compatible webcam application to capture some images.
2008-05-26Limit to 80 char width and tweak comments for readability.Jonathan Gray
2008-05-26Properly handle usbd_get_interface_descriptor() returning NULL.Jonathan Gray
From Jacek Masiulaniec <jacekm@dobremiasto.net>
2008-05-25Don't define EHCI_DEBUG when USB_DEBUG is defined. This to be consistentMarc Balmer
with other USB host controller interfaces. From Karl Sjodahl <dunceor@gmail.com>; ok jsg
2008-05-25Spacing. Comments. strncpy() -> strlcpy().Marcus Glocker
2008-05-24Add a quirk to prevent this LCD device from attaching as a HID. This is aChris Kuethe
not somewhere we want to go in the long term - adding a quirk for every device out there that does something a little funky. It would be better if devices that claimed they are HIDs actually acted like it. Failing that, passing usb commands though uhid would be nice.
2008-05-24- Enable userland to read(2) video stream from /dev/video.Marcus Glocker
- Prepare for mmap(2).
2008-05-24regenerateChris Kuethe
2008-05-24USB LCD+keyboard panelChris Kuethe
2008-05-19regenMiod Vallat
2008-05-19Add the Sun extended keys (L keys, volume keys) to the console mode layouts.Miod Vallat
2008-05-19do not leak memory if there is no power source. code is ifdef USB_DEBUG.Federico G. Schwindt
2008-05-19try a few times before giving up while getting the device descriptor. ifFederico G. Schwindt
it fails, reset the port and try again. this seems to fix some devices that would punt with "device problem, disabling port" otherwise. from augustss@netbsd with some change as per discussion with theo. set the address before getting the descriptor. from peterbu at bemac dot com via netbsd kern/24716. tested by many.
2008-05-18avoid leaking pipes by not zeroing the pipe after aborting it, soFederico G. Schwindt
umass_disco() have a chance to free'em later. from nathanw@netbsd. miod@ ok.
2008-05-18Move the code which starts the video stream to the right place;Marcus Glocker
The video stream gets started/stopped when userland open/closes /dev/video*. The debug file gets written to /tmp/uvideo.mjpeg now.
2008-05-18There is no need to pass uvideo_vs_open() usb_attach_arg.Marcus Glocker
2008-05-16Free sample buffer on detach. Noted by miod@Marcus Glocker
2008-05-16Fix kernel crash when device gets detached.Marcus Glocker
2008-05-15Avoid clearing the port enable bit when bringing the port out of reset.Mark Kettenis
Makes the on-board ehci(4) on the Freescale MPC8349E work. ok jsg@
2008-05-15#ifdef UVIDEO_DEBUG wrap all debug routines. Shrinks the kernel. NotedMarcus Glocker
by miod@. Fix some spacing while there.
2008-05-14Remove the duplicate Billionton id.Brad Smith
2008-05-14regenBrad Smith
2008-05-14Remove the duplicate Billionton product id named SnapPort which isBrad Smith
the same as the USB2AR product id and was placed separately further down.
2008-05-14regenBrad Smith
2008-05-14Add the CONWISE Technology vendor id and the CW6622 product id.Brad Smith
From Jason George
2008-05-12If we find an E220 device in umass mode send the magic commandJonathan Gray
to enable the serial portions of the device. From Yojiro UO <yuo@iijlab.net>, tested by bernd@
2008-05-11Add the Buffalo (MELCO) LUA-U2-GT id.Brad Smith
ok jsg@
2008-05-11regenBrad Smith
2008-05-11Add the USB id for the Melco (Buffalo) LUA-U2-GT Ethernet adapter.Brad Smith
From the Linux ASIX driver
2008-05-09Add support for NTT DoCoMo A2502.Jonathan Gray
From/tested by Yojiro UO <yuo@iijlab.net>
2008-05-09regenJonathan Gray
2008-05-09NTT DoCoMo A2502.Jonathan Gray
From Yojiro UO <yuo@iijlab.net>
2008-05-09Increase buffer size to 4k and make use of interrupt endpointJonathan Gray
to increase responsiveness. From Yojiro UO <yuo@iijlab.net>
2008-05-08regenMiod Vallat
2008-05-08Add support for yet another exotic Microsoft Mouse, this time theMiod Vallat
``Microsoft Notebook Optical Mouse 3000 Model 1049''. From FreeBSD.
2008-05-08Add support for Microsoft Wireless Intellimouse, from FreeBSD. Not only doesMiod Vallat
this device bends the uhid specs backwards, it is also completely unusable for left-handed people due to its shape. Tested on actual hardware thanks to a donation from Maxim Belooussov.
2008-05-06Add support for the Apple USB Ethernet adapter.Marco Pfatschbacher
Work around the "latch in at the first working PHY address hack", that fails for this adapter because it returns 0xffff when reading from lower PHY addresses. Also add more debugging printfs. Testing and OK jsg@
2008-05-06syncMarco Pfatschbacher
2008-05-06Add Apple USB Ethernet.Marco Pfatschbacher
2008-05-06syncTheo de Raadt
2008-05-06someone making usb keyboards.. for oems.. owned by vladas.urbonasTheo de Raadt
2008-05-06syncTheo de Raadt
2008-05-06another omron usb that must be ugen; vladas.urbonas@gmailTheo de Raadt
2008-05-05Make umsm only claim a single interface so it doesn't matchJonathan Gray
on umass interfaces, and add Huawei E220. From rivo nurges <rix@estpak.ee>. And add another device while here.
2008-05-05regenJonathan Gray
2008-05-05Another msm.Jonathan Gray
Reported on misc@ by Denis Doroshenko <denis.doroshenko@gmail.com>
2008-04-25Another HSDPA MSM.Jonathan Gray
From/tested by giovanni <qgiovanni@gmail.com>. No man page addition as it is unclear who makes it.
2008-04-25regenJonathan Gray
2008-04-25Another HSDPA MSM.Jonathan Gray
From giovanni <qgiovanni@gmail.com>
2008-04-21allow low level audio drivers to specify a default sample format,Jacob Meuser
instead of 8-bit mono mulaw @ 8kHz. this is just the infrastructure; no drivers are specifying a default yet. ok ratchov@, deanna@