Skip to content

Commit 8a95c9e

Browse files
matnymangregkh
authored andcommitted
xhci: Add missing capability definition bits
Add capability bits for the xHC Capability Parameters 2 (HCCPARAMS2) register described in xHCI specification section 5.3.9 bit 7 Extended TBC TRB Status Capability (ETC_TSC) bit 8 Get/Set Extended Property Capability (GSC) bit 9 Virtualization Based Trusted I/O Capability (VTC) Signed-off-by: Mathias Nyman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 3ac820f commit 8a95c9e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/usb/host/xhci-caps.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,9 @@
8383
#define HCC2_CIC(p) ((p) & (1 << 5))
8484
/* true: HC support Extended TBC Capability, Isoc burst count > 65535 */
8585
#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

Comments
 (0)