diff options
author | hselasky <hselasky@FreeBSD.org> | 2012-09-14 07:52:57 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2012-09-14 07:52:57 +0000 |
commit | 5234d2528237939ae2b61d638f1d6c457c8b5f1b (patch) | |
tree | 48fa123c3b3342a0b2bcae13597be05dd9f802c1 /sys/dev/usb/controller/dwc_otgreg.h | |
parent | 2bde8e86c150a1a47aaad7ccacdb85a902ae4235 (diff) | |
download | FreeBSD-src-5234d2528237939ae2b61d638f1d6c457c8b5f1b.zip FreeBSD-src-5234d2528237939ae2b61d638f1d6c457c8b5f1b.tar.gz |
DWC OTG improvements. Implement full support for SPLIT transactions, in other
words FULL/LOW speed devices through HIGH speed HUBs. Improve support for
suspend and resume in host mode.
Diffstat (limited to 'sys/dev/usb/controller/dwc_otgreg.h')
-rw-r--r-- | sys/dev/usb/controller/dwc_otgreg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/dwc_otgreg.h b/sys/dev/usb/controller/dwc_otgreg.h index 257a418..7aada41 100644 --- a/sys/dev/usb/controller/dwc_otgreg.h +++ b/sys/dev/usb/controller/dwc_otgreg.h @@ -541,6 +541,8 @@ #define HCSPLT_PRTADDR_SHIFT 0 #define HCSPLT_PRTADDR_MASK 0x0000007f +#define HCINT_SUSPEND_ONLY (1<<21) /* BSD only */ +#define HCINT_SOFTWARE_ONLY (1<<20) /* BSD only */ #define HCINT_DATATGLERR (1<<10) #define HCINT_FRMOVRUN (1<<9) #define HCINT_BBLERR (1<<8) |