Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / dev / usb / TODO
blob4c9bf8eeb3cb053ed66ab2ba00fcaa4c0ebafa62
1 Some things that need to be done:
2 ---------------------------------
4 High priority:
5 --------------
7 On a short control transfer the status phase needs to be executed anyway.
9 Allow interrupt out endpoints. (USB 1.1)
11 Fix flow control in ucom (copy from com driver).
13 Use some encapsulation in the upl driver to allow multiple protocols.
15 Get the uezcom driver (with Doug Ambrisko's firmware) running.
18 Bug reports:
19 ------------
21 Bernd Ernesti's problem: host controller halted with umodem
23 umass problem with Ricoh flash reader
25 wskbd for X
27 mel kravitz's problem, lockups with disk and printer
29 Aaron's problem: Test aue with ohci.
32 General:
33 --------
35 Figure out why uvisor is so slow.
36 Try to get specs, and check if Linux driver is really right.
38 Add lots of bus_dmamap_sync().
40 Do bandwidth accounting.
42 Use lock manager locks.
44 Use the pool allocator for TDs et al.
46 Throw out more USBDI gunk.
48 Make hub driver notice transition between self and bus powered state.
49 Some hubs change the number of available ports on this transition. :(
50 Handle overcurrent conditions.
52 Make it possible to open any device in a "generic" way, i.e., like ugen.
53 Perhaps usbdevfs?
55 Rotate the QHs for bulk transport to get fairer scheduling.
57 Change HC drivers to queue multiple request for an endpoint
58 to get better performance.
60 Do memory deallocation when HC driver is detached.
62 uaudio problems:
63         mixer names are awful, use some heuristics.
64         implement selector units
65         debug input
66         test with more devices
68 Stylistic changes:
69         use usb_ and usbd_ consistently
70         rearrange the contents and names of some files (Nick)
72 Use splsoftusb() or a thread to deliver callbacks.
74 Add threads to the Ethernet drivers.
76 Change what's done at watchdog timeout inb if_{a,c,k}ue.c; what we have
77 now doesn't work because it's done in an interrupt context.
79 Factor out the common code from the Ethernet drivers and reuse that.
81 Get rid of hcpriv.
83 Keyspan serial driver
85 Clean up umass driver
88 Documentation:
89 --------------
91 Document device driver API.
93 Document HC driver API.
95 Update ugen(4)