Age | Commit message (Expand) | Author |
2015-03-25 | Expand ehci_{add,del}_intr_list() macros. | Martin Pieuchot |
2015-03-25 | Merge ehci_device_request() into ehci_device_ctrl_start() to match | Martin Pieuchot |
2015-03-25 | Remove more DPRINTFs, this file is almost in a readable state now. | Martin Pieuchot |
2015-03-25 | Use KASSERT() to check when/if URQ_REQUEST is correctly set just like | Martin Pieuchot |
2015-03-25 | Remove EHCI_DEBUG chunks that make things harder to understand. | Martin Pieuchot |
2015-03-17 | Prevent a race resulting in an infinite loop printing "ehci_idone" messages. | Martin Pieuchot |
2015-03-06 | Revert previous, the fix is not right and causes a regression as | Martin Pieuchot |
2015-02-28 | Prevent a race resulting in an infinite loop printing "ehci_idone" messages. | Martin Pieuchot |
2015-02-09 | Whitespace. | Masao Uebayashi |
2014-12-19 | Use <sys/endian.h> instead of <machine/endian.h> | Philip Guenther |
2014-12-17 | Avoid premature masking in the interrupt handler code that checks for removed | Mark Kettenis |
2014-12-09 | More malloc() -> mallocarray() in the kernel. | Doug Hogan |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-10-05 | Do not re-establish the default pipe twice for every controller. Move | Martin Pieuchot |
2014-09-01 | Revert previous, it puts too much pressure on memory allocation as | Martin Pieuchot |
2014-08-30 | Rewrite how queue heads are inserted and removed from the asynchronous | Martin Pieuchot |
2014-08-10 | Since USB xfer pools are accessed in interrupt context, initialize them | Martin Pieuchot |
2014-08-10 | Set and check for XFER_BUSY in the common methods instead of doing it | Martin Pieuchot |
2014-08-05 | Only check if the abort transfer is the interrupt one if the pipe is | Martin Pieuchot |
2014-08-03 | don't return unitialised memory on error in ehci_alloc_sqtd() | Jonathan Gray |
2014-07-12 | Protect the freelists of transfer descriptors with the appropriate spl | Martin Pieuchot |
2014-07-12 | Use the correct poll interval for HS root hub before it gets copied, no | Martin Pieuchot |
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-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-05-04 | Get rid of EHCI_NULL. No functional change. | Martin Pieuchot |
2014-04-29 | Finally plug the public xfer leak #1 in our USB stack. | Martin Pieuchot |
2014-04-29 | Get rid of the per-softc freelist of transfer descriptors and use a | 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 |
2014-02-24 | Partially revert r1.134, bring back the code suspending root hub's ports | Martin Pieuchot |
2014-01-15 | Remove a hack to update the address and packet length for every device | Martin Pieuchot |
2013-12-06 | Add a DVACT_WAKEUP op to the *_activate() API. This is called after the | Theo de Raadt |
2013-11-09 | In our USB world, timeouts are in milliseconds, so use timeout_add_msec() | Martin Pieuchot |
2013-11-09 | Reduce the differences between our controller drivers and initialize | Martin Pieuchot |
2013-11-07 | Remove isoc_len from the transfer descriptor, it is assigned once but | Martin Pieuchot |
2013-11-01 | Move the abort_task storage to the generic USB xfer structure instead | Martin Pieuchot |
2013-06-12 | Rework of the suspend/resume logic. | Martin Pieuchot |
2013-05-30 | Enforce ca_activate tree-walks over the entire heirarchy for all events, | Theo de Raadt |