summaryrefslogtreecommitdiff
path: root/src/sys/include/io/usb/xhcivar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/include/io/usb/xhcivar.h')
-rw-r--r--src/sys/include/io/usb/xhcivar.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sys/include/io/usb/xhcivar.h b/src/sys/include/io/usb/xhcivar.h
index bc5f59b..f98207f 100644
--- a/src/sys/include/io/usb/xhcivar.h
+++ b/src/sys/include/io/usb/xhcivar.h
@@ -40,14 +40,19 @@
* @max_slots: Max device slots
* @max_intrs: Max interrupters
* @max_ports: Max ports
+ * @dcbaap_pa: DCBAAP physical address
*/
struct xhci_hcd {
struct xhci_capregs *capspace;
uint8_t max_slots;
uint32_t max_intrs;
uint32_t max_ports;
+ uintptr_t dcbaap_pa;
};
#define XHCI_TIMEOUT_MSEC 500
+/* Length of device context */
+#define XHCI_CTX_SIZE 32
+
#endif /* !_USB_XHCIVAR_H_ */