diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-05-21 17:39:21 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-05-21 17:39:21 +0000 |
commit | f4c4ceb94b1048adb65b5938741887848b17c24e (patch) | |
tree | 0ef2c96a3ab98a95903c2e7ae5064e6bc61456c0 /sys/dev/usb/controller/uss820dci.h | |
parent | 6cd12e776ba8c5ceb7901cbec696585e6ef53900 (diff) | |
download | FreeBSD-src-f4c4ceb94b1048adb65b5938741887848b17c24e.zip FreeBSD-src-f4c4ceb94b1048adb65b5938741887848b17c24e.tar.gz |
Improve device mode (gadget) stall handling.
Some hardware easily comes out of sync with regard to whether the current or
the next control transfer should be stalled, if a stall command is always
issued before receiving the SETUP packet. After this patch the stall command
will only be issued when a transfer should actually be stalled.
Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/controller/uss820dci.h')
-rw-r--r-- | sys/dev/usb/controller/uss820dci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/uss820dci.h b/sys/dev/usb/controller/uss820dci.h index 24e3ce2..08bbb6a 100644 --- a/sys/dev/usb/controller/uss820dci.h +++ b/sys/dev/usb/controller/uss820dci.h @@ -280,6 +280,7 @@ struct uss820dci_td { uint8_t short_pkt:1; uint8_t support_multi_buffer:1; uint8_t did_stall:1; + uint8_t did_enable:1; }; struct uss820_std_temp { @@ -296,6 +297,7 @@ struct uss820_std_temp { * short_pkt = 1: transfer should not be short terminated */ uint8_t setup_alt_next; + uint8_t did_stall; }; struct uss820dci_config_desc { |