summaryrefslogtreecommitdiff
path: root/sys/dev/usb/ohci.c
AgeCommit message (Expand)Author
2001-12-31Change xfer abort to wait for the softintr to run.augustss
2001-12-27Add some DIAGNOSTIC stuf that I forgot. From Nate Williams.augustss
2001-12-27Update a comment.augustss
2001-11-21Pay more attention to if the HC is being unplugged.augustss
2001-11-21make it compilable without OHCI_DEBUGitojun
2001-11-21Use a task to perform the timeout abort so we have a process context whenaugustss
2001-11-21Some more debug stuff.augustss
2001-11-21Cast some args to bitmask_snprintf().augustss
2001-11-20Don't bother with interrupts when being disconnected.augustss
2001-11-20Use longer reset for root hubs (as told in the spec).augustss
2001-11-20Keep track of device speed for USB 2.0.augustss
2001-11-13add RCSIDslukem
2001-11-10Improve dump routines.augustss
2001-11-09Fix a bug in xfer abort processing when the HC executes ahead of whataugustss
2001-11-07Improve some debug messages.augustss
2001-09-28Reenable RHSC interrupt after one second so hot plugging works.augustss
2001-09-11Don't go top mode OPERATIONAL (before reset) on startup even if BIOS claims toaugustss
2001-04-01Add two missing splx() (inside DIAGNOSTIC). From OpenBSD.augustss
2001-02-20Re-initialize some registers after resuming from suspend.minoura
2001-01-28Put a rate limiter on the scheduling overrun message.augustss
2001-01-21Add code to use soft interrupt to handle USB interrupt processing.augustss
2001-01-20Change some splusb() to splhardusb().augustss
2000-12-31Make the controller survive suspend/resume. Thanks to Steve Woodfordaugustss
2000-12-29Update many URLs.augustss
2000-12-13Make the ohci driver not hang suspend/resume. It still doesn't resumeaugustss
2000-11-10Update frlengths after a isoc transfer.augustss
2000-08-17Add an XXX comment.augustss
2000-08-08%b -> bitmask_snprintf()tv
2000-06-01Bring the coding style into the 80s, i.e., get rid of __P and useaugustss
2000-05-08Quiet some uninitialized variable warnings that do in fact look legitimate.thorpej
2000-04-27Change my email address.augustss
2000-04-25Insert (very conservative!) bus_space_barrier() calls at all register accesses.augustss
2000-04-22Add a clarifying comment.augustss
2000-04-21Add a comment about a non-obvious use of a #define.augustss
2000-04-01Add a delay before reading the number of ports from the controller toaugustss
2000-03-29Some OpenBSD portability fixes.augustss
2000-03-29A first stab at support for isochronous transfers.augustss
2000-03-27Change (almost) all static to Static. The symbol `Static' can then be definedaugustss
2000-03-25Rename and move around callout handles to make it more sane.augustss
2000-03-24Some cleanup and renaming of the callouts used in USB drivers.augustss
2000-03-23New callout mechanism with two major improvements over the oldthorpej
2000-03-20Make sure all packets (except the last) have the maximum packet size evenaugustss
2000-03-19Make control transfer of over 8K possible by using a chain of TDs.augustss
2000-03-16Replace LE() macro with le32toh()/le32toh().tsutsui
2000-03-16Fix thinko in the handling of FORCE_SHORT_XFER so that it actuallyaugustss
2000-02-29Distinguish between device and interface classes.augustss
2000-02-22Fix typos in my last commit that caused the driver to panic.augustss
2000-02-22Prepare a little for having USB interrupt processing done outside the hardaugustss
2000-02-01Put some #ifdefs around power and shutdown hooks.augustss
2000-01-31Rename TAILMASK to HEADMASK, since it really masks the head pointer.augustss