Age | Commit message (Expand) | Author |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-10 | Do not set the bus dying flag during DVACT_DEACTIVATE otherwise the | Martin Pieuchot |
2014-07-09 | Adds an optional bus function to set the address of a new device and | Martin Pieuchot |
2014-06-04 | Clearing the data toggle bit only makes sense for endpoints that use it, | Martin Pieuchot |
2014-06-04 | Use C99 initializers for pipe and bus methods. | Martin Pieuchot |
2014-05-30 | Remove unused fields from the pipes. | Martin Pieuchot |
2014-05-25 | The default case in uhci_deactivate() was missing. Because of that, | Martin Pieuchot |
2014-05-19 | unbreak the build when DIAGNOSTIC is not defined | Jonathan Gray |
2014-05-18 | Do not pass an xfer pointer to the timeout routine checking for root hub | Martin Pieuchot |
2014-05-16 | Reduce the difference between HC drivers by always passing a generic | Martin Pieuchot |
2014-05-16 | There is no need to remember which usb(4) device is the child of an USB | Martin Pieuchot |
2014-05-09 | Plug an xfer leak when detaching root hubs. | Martin Pieuchot |
2014-05-08 | Plug one more xfer leak. | Martin Pieuchot |
2014-05-04 | Make use of usbd_xfer_isread() instead of rerolling it everywhere. | Martin Pieuchot |
2014-04-29 | Get rid of the per-softc freelist of transfer descriptors and use a | Martin Pieuchot |
2014-04-29 | Finally plug the public xfer leak #1 in our USB stack. | Martin Pieuchot |
2014-04-27 | Start de-obfuscating the HC drivers. | Martin Pieuchot |
2014-03-25 | Instead of matching root hubs with a custom address, that only works | Martin Pieuchot |
2014-03-15 | Unify the *hci_timeout() functions, there should be no functional change. | Martin Pieuchot |
2014-03-11 | Kill dead links. | Martin Pieuchot |
2014-03-07 | Transfer descriptors already have a back pointer to the USB device | Martin Pieuchot |
2014-03-07 | We already have three identical copies of the *hci_str() function, | Martin Pieuchot |
2013-12-09 | Mark a few functions with __unused. | Brad Smith |
2013-11-09 | In our USB world, timeouts are in milliseconds, so use timeout_add_msec() | Martin Pieuchot |
2013-11-07 | In polling mode since r1.101 we could end up dereferencing an | Martin Pieuchot |
2013-11-07 | Make sure to mark the controller as dying in order to stop processing | Martin Pieuchot |
2013-11-01 | Reduce the differences with ehci(4)'s transfer decriptors. This is a | Martin Pieuchot |
2013-11-01 | Move the abort_task storage to the generic USB xfer structure instead | Martin Pieuchot |
2013-06-25 | Bring ohci(4) and uhci(4) in sync with ehci(4) by ensuring that a | Martin Pieuchot |
2013-05-30 | Enforce ca_activate tree-walks over the entire heirarchy for all events, | Theo de Raadt |
2013-05-20 | Remove `abort_task' from usb task queue before recycling a `struct | YASUOKA Masahiko |
2013-04-19 | Remove allocm() and freem() from the USB bus interface now that they | Martin Pieuchot |
2013-04-16 | Don't be too clever when allocating a buffer for a transfer and do not | Martin Pieuchot |
2013-04-15 | Get rid of various 'typedef struct' definitions and use plain structure | Marcus Glocker |
2013-03-28 | proc.h is way too much header for usb to handle. | Ted Unangst |
2012-08-17 | Fix typos in DPRINTF() so error messages refer to correct *hci. | Kenneth R Westerback |
2012-08-07 | Make all *_device_*_start() functions (e.g. ohci_device_intr_start()) | Kenneth R Westerback |
2011-07-03 | Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing | Matthew Dempsky |
2010-12-14 | use the dying flag in struct usbd_bus instead of a private dying flag | Jacob Meuser |
2010-12-06 | * if we got an undercoverable error, set the dying flag | Jacob Meuser |
2010-12-06 | as in ehci and ohci, delete the interrupt timeout in the detach | Jacob Meuser |
2010-11-21 | Properly handle when uhci_alloc_sqh() fails to allocate memory in | Matthew Dempsky |
2010-11-19 | Do not allow malloc() to wait in uhci_device_setintr(), instead check for | Miod Vallat |
2010-10-23 | create another kthread to run xfer abort tasks. xfer abort tasks cannot | Jacob Meuser |
2010-09-20 | If during resume we get an interrupt, sure, be a bit noisy about it | Theo de Raadt |
2010-09-20 | Fix unitialised variable access in the suspend/resume case | Jonathan Gray |
2010-09-07 | remove the powerhook code. All architectures now use the ca_activate tree | Theo de Raadt |
2010-09-06 | All PWR_{SUSPEND,RESUME} can now be replaced by DVACT_{SUSPEND,RESUME} | Theo de Raadt |
2010-08-31 | sort DVACT_ actions according to the order likely to be used | Theo de Raadt |
2010-08-31 | uhci is apparently is unaware that it could be on a shared interrupt | Theo de Raadt |