We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac820f commit 8a95c9eCopy full SHA for 8a95c9e
drivers/usb/host/xhci-caps.h
@@ -83,3 +83,9 @@
83
#define HCC2_CIC(p) ((p) & (1 << 5))
84
/* true: HC support Extended TBC Capability, Isoc burst count > 65535 */
85
#define HCC2_ETC(p) ((p) & (1 << 6))
86
+/* true: HC support Extended TBC TRB Status Capability */
87
+#define HCC2_ETC_TSC(p) ((p) & (1 << 7))
88
+/* true: HC support Get/Set Extended Property Capability */
89
+#define HCC2_GSC(p) ((p) & (1 << 8))
90
+/* true: HC support Virtualization Based Trusted I/O Capability */
91
+#define HCC2_VTC(p) ((p) & (1 << 9))
0 commit comments