TODO revision 1.19
1Some things that need to be done in no particular order: 2-------------------------------------------------------- 3 4Add lots of bus_dmamap_sync(). 5 6Do bandwidth accounting. 7 8Use lock manager locks. 9 10Use the pool allocator for TDs et al. 11 12Throw out more USBDI gunk. 13 14Make hub driver notice transition between self and bus powered state. 15Handle overcurrent conditions. 16 17Add an event mechanism to find out about attach and detach. 18 19Make it possible to open any device in a "generic" way, i.e., like ugen. 20 21Rewrite mouse and keyboard driver to handle devices which use the 22report ID. One way would be to attach ums and ukbd to uhid. 23 24Rotate the QHs for bulk transport to get fairer scheduling. 25 26Change HC drivers to queue multiple request for an endpoint 27to get better performance. 28 29Add generic ucom layer for serial adapters. 30 31Add isoc to OHCI driver. 32 33uaudio problems: 34 mixer names are awful, use some heuristics. 35 implement selector units 36 implement input 37 test with more devices 38 39Stylistic changes: 40 use NULL not 0 41 declare all local definitions static 42 rename s/request/xfer/ 43 use usb_ and usbd_ consistently 44 rename s/r/err/ 45 use implicit test for no err 46 indent continuation lines according to KNF 47 rearrange the contents and names of some files (Nick) 48 49Document device driver API. 50 51Document HC driver API. 52