Home | History | Annotate | Line # | Download | only in usb
TODO revision 1.40.4.1
      1 Some things that need to be done:
      2 ---------------------------------
      3 
      4 High priority:
      5 --------------
      6 
      7 On a short control transfer the status phase needs to be executed anyway.
      8 
      9 Allow interrupt out endpoints. (USB 1.1)
     10 
     11 Fix flow control in ucom (copy from com driver).
     12 
     13 Use some encapsulation in the upl driver to allow multiple protocols.
     14 
     15 Get the uezcom driver (with Doug Ambrisko's firmware) running.
     16 
     17 
     18 Bug reports:
     19 ------------
     20 
     21 Bernd Ernesti's problem: host controller halted with umodem
     22 
     23 umass problem with Ricoh flash reader
     24 
     25 wskbd for X
     26 
     27 mel kravitz's problem, lockups with disk and printer
     28 
     29 Aaron's problem: Test aue with ohci.
     30 
     31 
     32 General:
     33 --------
     34 
     35 Figure out why uvisor is so slow.
     36 Try to get specs, and check if Linux driver is really right.
     37 
     38 Add lots of bus_dmamap_sync().
     39 
     40 Do bandwidth accounting.
     41 
     42 Use lock manager locks.
     43 
     44 Use the pool allocator for TDs et al.
     45 
     46 Throw out more USBDI gunk.
     47 
     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.
     51 
     52 Make it possible to open any device in a "generic" way, i.e., like ugen.
     53 Perhaps usbdevfs?
     54 
     55 Rotate the QHs for bulk transport to get fairer scheduling.
     56 
     57 Change HC drivers to queue multiple request for an endpoint
     58 to get better performance.
     59 
     60 Do memory deallocation when HC driver is detached.
     61 
     62 uaudio problems:
     63 	mixer names are awful, use some heuristics.
     64 	implement selector units
     65 	debug input
     66 	test with more devices
     67 
     68 Stylistic changes:
     69 	use usb_ and usbd_ consistently
     70 	rearrange the contents and names of some files (Nick)
     71 
     72 Use splsoftusb() or a thread to deliver callbacks.
     73 
     74 Add threads to the Ethernet drivers.
     75 
     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.
     78 
     79 Factor out the common code from the Ethernet drivers and reuse that.
     80 
     81 Rewrite HID driver to handle report IDs properly.  Perhaps there should
     82 be a hiddev to which hid with different IDs can attach?
     83 
     84 Get rid of hcpriv.
     85 
     86 Keyspan serial driver
     87 
     88 Clean up umass driver
     89 
     90 
     91 Documentation:
     92 --------------
     93 
     94 Document device driver API.
     95 
     96 Document HC driver API.
     97 
     98 Update ugen(4)
     99