summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uhub.c
Commit message (Collapse)AuthorAgeFilesLines
* Bugfix: device_resume should be connected to bus_generic_resume notNick Hibma2001-01-051-1/+1
| | | | | | | | | *_suspend. Submitted by: kazu Notes: svn path=/head/; revision=70683
* Sync with NetBSD:Nick Hibma2000-10-161-22/+14
| | | | | | | | | Add seatbelts. Be more lenient towards restarting the ports: If a port manages to connect successfully reset the restartcount. Notes: svn path=/head/; revision=67215
* Remove __P prototypes to reduce diffs between the NetBSD and FreeBSDNick Hibma2000-07-171-2/+2
| | | | | | | versions. Notes: svn path=/head/; revision=63319
* Sync with NetBSD:Nick Hibma2000-05-141-88/+79
| | | | | | | | Make the behaviour more similar to what the Microsoft uhub driver does. Notes: svn path=/head/; revision=60560
* Change Lennart's e-mail address.Nick Hibma2000-05-141-1/+1
| | | | Notes: svn path=/head/; revision=60545
* Initialise the debug value.Nick Hibma2000-05-071-1/+1
| | | | Notes: svn path=/head/; revision=60178
* OpenBSD has a broken debugger that does not grok static. Use aNick Hibma2000-04-031-7/+7
| | | | | | | | | #define Static static that the OpenBSD folks can define it to be empty if they like. Notes: svn path=/head/; revision=58986
* Add support for DEVICE_SUSPEND, DEVICE_RESUME and DEVICE_SHUTDOWNNick Hibma2000-01-201-2/+8
| | | | | | | | | | | | | methods for USB devices. However: with none of the devices I have here suspend seems to work properly. This is probably a bug in uhci_power which I still have to look at. Prodded and pushed by: Christopher Masto <chris@netmonger.net> Notes: svn path=/head/; revision=56348
* More USB ethernet tweaks:Bill Paul2000-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Sync ohci, uhci and usbdi modules with NetBSD in order to obtain the following improvements: o New USBD_NO_TSLEEP flag can be used in place of UQ_NO_TSLEEP quirk. This allows drivers to specify busy waiting only for certain transfers (namely control transfers for reading/writing registers and stuff). o New USBD_FORCE_SHORT_XFER flag can be used to deal with devices like the ADMtek Pegasus that sense the end of bulk OUT transfers in a special way (if a transfer is exactly a multiple of 64 bytes in size, you need to send an extra empty packet to terminate the transfer). o usbd_open_pipe_intr() now accepts an interval argument which can be used to change the rate at which the interrupt callback routine is invoked. Specifying USBD_DEFAULT_INTERVAL uses the value specified in the device's config data, but drivers can override it if needed. - Change if_aue to use USBD_FORCE_SHORT_XFER for packet transmissions. - Change if_aue, if_kue and if_cue to use USBD_NO_TSLEEP for all control transfers. We no longer force the non-tsleep hack for bulk transfers since these are done asynchronously anyway. - Removed quirk entry fiddling from if_aue and if_kue since we don't need it anymore now that we have the USBD_NO_TSLEEP flag. - Tweak ulpt, uhid, ums and ukbd drivers to use the new arg to usbd_open_pipe_intr(). - Add a flag to the softc struct in the ethernet drivers to indicate when a device has been detached, and use this flag to perform tests to prevent the drivers from trying to do control transfers if this is the case. This is necessary because calling if_detach() with INET6 enabled will eventually result in a call to the driver's ioctl() routine to delete the multicast groups on the interface, which will result in attempts to perform control transfers. (It's possible this also happens even without INET6 support enabled.) This is pointless since we know that if the detach method has been called, the hardware has been unplugged. - Changed watchdog timeout routines to just call the driver init routines to initialize the device states without trying to close and re-open the pipes. This is partly because we don't want to frob things at interrupt context, but also because this doesn't seem to work right and I don't want to panic the system just because a USB device may have stopped responding. - Fix aue_rxeof() to be a little smarter about detecting when a double transfer is needed. Unfortunately, the design of the chip makes it hard to get this exactly right. Hopefully, this will go away once either Nick or Lennart finds the bug in the uhci driver that makes this ugly hack necessary. - Also sync usbdevs with NetBSD. Notes: svn path=/head/; revision=56318
* Synchronisation with NetBSD 1999/11/27Nick Hibma1999-11-281-13/+21
| | | | | | | | | | | | | | | | | | | | - more req[uest]->xfer changes. - get the corresponding NetBSD Id's right ohci.c - move untimeout above print statement - remove usb_delay that panics the system (tsleep in intr context) when ohcidebug > 5. ugen.c - create the devices for endpoints with make_dev. uhub.c - change from using usbdebug to uhubdebug - add more debugging statements Notes: svn path=/head/; revision=53853
* Synchronisation with NetBSD as of 1999/11/16:Nick Hibma1999-11-171-185/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleaning up the code: - Declare many functions static - Change variable names to make them more self explanatory - Change usbd_request_handle -> usbd_xfer_handle - Syntactical changes - Remove some unused code - Other KNF changes Interrupt context handling - Change delay to usbd_delay_ms were possible (takes polling mode into account) - Change detection mechanism for interrupt context Add support for pre-allocation DMA-able memory by device driver Add preliminary support for isochronous to the UHCI driver (not for OHCI yet). usb.c, uhci.c, ohci.c - Initial attempt at detachable USB host controllers - Handle the use_polling flag with a lttle more care and only set it if we are cold booting. usb.c, uhci.c ohci.c, usbdi.c usbdi_util.c usb_subr.c - Make sure an aborted pipe is marked as not running. - Start queued request in the right order. - Insert some more DIAGNOSTIC sanity checks. - Remove (almost) unused definitions USBD_XFER_OUT and USBD_XFER_IN. usb.c, usb_subr.c - Add an event mechanism so that a userland process can watch devices come and go. ohci.c - Handle the case when a USB transfer is so long that it crosses two page (4K) boundaries. OHCI cannot do that with a single TD so we make a chain. ulpt.c - Use a bigger buffer when transferring data. - Pre-allocate the DMA buffer. This makes the driver slightly more efficient. - Comment out the GET_DEVICE_ID code, because for some unknown reason it causes printing to fail sometimes. usb.h - Add a macro to extract the isoc type. - Add a macro to check whether the routine has been entered after splusb and if not, complain. usbdi.c - Fix a glitch in dequeueing and aborting requests on interrupt pipes. - Add a flag in the request to determine if the data copying is done by the driver or the usbdi layer. Notes: svn path=/head/; revision=53313
* Remove superfluous header file includesNick Hibma1999-11-081-4/+7
| | | | | | | | | Remove definition of initialiser. Some clean up. Notes: svn path=/head/; revision=53028
* Major synchronisation with the NetBSD USB stack:Nick Hibma1999-10-071-99/+212
| | | | | | | | | | | | | | - Some cleanup and improvements in the uhci and ohci drivers - Support for plugging and unplugging devices improved - Now available is bulk transport over OHCI controllers - Resume and suspend have been temporarily been disabled again. Proper support for it is available in the uhci.c and ohci.c files but I have not yet spent the brain cycles to use it. - OpenBSD now uses the USB stack as well - Add FreeBSD tags Notes: svn path=/head/; revision=51991
* Move the declaration of the interrupt type from the driver structureDoug Rabson1999-05-081-1/+0
| | | | | | | to the BUS_SETUP_INTR call. Notes: svn path=/head/; revision=46743
* Remove double removal of children of a hub. (remove disconnected method)Nick Hibma1999-05-031-29/+2
| | | | | | | | | This was introduced when merging a patch for the newbus people. And change the debugging flag from USB_DEBUG to UHUB_DEBUG. Notes: svn path=/head/; revision=46374
* Bring the 'new-bus' to the i386. This extensively changes the way thePeter Wemm1999-04-161-5/+19
| | | | | | | | | | | | | | | | | | | | | i386 platform boots, it is no longer ISA-centric, and is fully dynamic. Most old drivers compile and run without modification via 'compatability shims' to enable a smoother transition. eisa, isapnp and pccard* are not yet using the new resource manager. Once fully converted, all drivers will be loadable, including PCI and ISA. (Some other changes appear to have snuck in, including a port of Soren's ATA driver to the Alpha. Soren, back this out if you need to.) This is a checkpoint of work-in-progress, but is quite functional. The bulk of the work was done over the last few years by Doug Rabson and Garrett Wollman. Approved by: core Notes: svn path=/head/; revision=45720
* 1) Make debugging more selective.Nick Hibma1999-04-111-14/+11
| | | | | | | | | | 2) create function usbd_errstr which turns a usbd_status into a sensible error message 3) Change the printf in DPRINTF to logprintf which is a define for log(KERN_DEBUG, x) Notes: svn path=/head/; revision=45604
* Reenable the recursive disconnection from a hub. Stop gap solutionNick Hibma1999-04-111-7/+9
| | | | | | | | | until the newbus version of uhub.c is ready. Submitted by: Kazutaka YOKOTA Notes: svn path=/head/; revision=45594
* Cosmetical changes.Nick Hibma1999-03-221-2/+2
| | | | Notes: svn path=/head/; revision=44944
* Bug fix: Trap 12 when ugen not present and therefore unattached physicalNick Hibma1999-02-211-2/+7
| | | | | | | device removed. Notes: svn path=/head/; revision=44191
* Textual changesNick Hibma1999-01-221-20/+35
| | | | Notes: svn path=/head/; revision=43025
* Corrected the latent fact that the uhub driver was providing a driver forNick Hibma1999-01-141-4/+22
| | | | | | | | the usb device class instead of the uhub devclass. Only a problem with more than one USB host controller. Notes: svn path=/head/; revision=42640
* Sync with NetBSD sources. Almost there. Mostly style fixes.Nick Hibma1999-01-101-3/+5
| | | | Notes: svn path=/head/; revision=42490
* Major synchronisation with NetBSD USB codeNick Hibma1999-01-071-174/+181
| | | | Notes: svn path=/head/; revision=42384
* Added Id to all filesNick Hibma1998-12-141-0/+1
| | | | Notes: svn path=/head/; revision=41783
* Various bug fixes:Nick Hibma1998-12-091-1/+4
| | | | | | | | | | | 1) Removed 'emulation' of bitmaps in printfs, FreeBSD seems to have caught up on that one 2) Fixed a few bugs in the timeout/timo timeout variables 3) First attempt at fixing a bug mentioned by Kazu: uhci_run is not able start/stop his USB host on his motherboard. Notes: svn path=/head/; revision=41625
* Initial commit of ported NetBSD USB stackNick Hibma1998-11-261-0/+490
Notes: svn path=/head/; revision=41366