From 0516521f8c8aeaa4c0deed0da0691246afb946a5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 5 Apr 2024 20:01:40 -0400 Subject: kernel: xhci: Add TRB types Signed-off-by: Ian Moffett --- sys/include/dev/usb/xhcivar.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/include/dev/usb/xhcivar.h b/sys/include/dev/usb/xhcivar.h index 12a528c..b36f2d9 100644 --- a/sys/include/dev/usb/xhcivar.h +++ b/sys/include/dev/usb/xhcivar.h @@ -106,4 +106,8 @@ struct xhci_hc { struct xhci_evring_segment *evring_seg; }; +/* TRB types */ +#define XHCI_ENABLE_SLOT 9 +#define XHCI_LINK 6 + #endif /* !_USB_XHCIVAR_H_ */ -- cgit v1.2.3