Home | History | Annotate | Line # | Download | only in usb
TODO revision 1.37
      1 Some things that need to be done:
      2 ---------------------------------
      3 
      4 Before 1.5:
      5 -----------
      6 
      7 Allow interrupt out endpoints. (USB 1.1)
      8 
      9 Fix flow control in ucom (copy from com driver).
     10 
     11 Use some encapsulation in the upl driver to allow multiple protocols.
     12 
     13 Get the uezcom driver (with Doug Ambrisko's firmware) running.
     14 
     15 Allow a device to be moved to the unconfigured state.
     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 Y-E data floppy doesn't work.
     32 
     33 
     34 General:
     35 --------
     36 
     37 Figure out why uvisor is so slow.
     38 Try to get specs, and check if Linux driver is really right.
     39 
     40 Translate UFI commands?
     41 
     42 Add lots of bus_dmamap_sync().
     43 
     44 Do bandwidth accounting.
     45 
     46 Use lock manager locks.
     47 
     48 Use the pool allocator for TDs et al.
     49 
     50 Throw out more USBDI gunk.
     51 
     52 Make hub driver notice transition between self and bus powered state.
     53 Some hubs change the number of available ports on this transition. :(
     54 Handle overcurrent conditions.
     55 
     56 Make it possible to open any device in a "generic" way, i.e., like ugen.
     57 Perhaps usbdevfs?
     58 
     59 Rotate the QHs for bulk transport to get fairer scheduling.
     60 
     61 Change HC drivers to queue multiple request for an endpoint
     62 to get better performance.
     63 
     64 Do memory deallocation when HC driver is detached.
     65 
     66 uaudio problems:
     67 	mixer names are awful, use some heuristics.
     68 	implement selector units
     69 	debug input
     70 	test with more devices
     71 
     72 Stylistic changes:
     73 	use usb_ and usbd_ consistently
     74 	rearrange the contents and names of some files (Nick)
     75 
     76 Use splsoftusb() or a thread to deliver callbacks.
     77 
     78 Add threads to the Ethernet drivers.
     79 
     80 Change what's done at watchdog timeout inb if_{a,c,k}ue.c; what we have
     81 now doesn't work because it's done in an interrupt context.
     82 
     83 Factor out the common code from the Ethernet drivers and reuse that.
     84 
     85 Rewrite HID driver to handle report IDs properly.  Perhaps there should
     86 be a hiddev to which hid with different IDs can attach?
     87 
     88 Get rid of hcpriv.
     89 
     90 Keyspan serial driver
     91 
     92 Factor out comon code in network drivers.
     93 
     94 
     95 Documentation:
     96 --------------
     97 
     98 Document device driver API.
     99 
    100 Document HC driver API.
    101 
    102 Update ugen(4)
    103