// usb.h
typedef struct _USBD_ENDPOINT_OFFLOAD_INFORMATION_V1 {
ULONG Size;
USHORT EndpointAddress;
ULONG ResourceId;
USBD_ENDPOINT_OFFLOAD_MODE Mode;
ULONG RootHubPortNumber : 8;
ULONG RouteString : 20;
ULONG Speed : 4;
ULONG UsbDeviceAddress : 8;
ULONG SlotId : 8;
ULONG MultiTT : 1;
ULONG LSOrFSDeviceConnectedToTTHub : 1;
ULONG Reserved0 : 14;
PHYSICAL_ADDRESS TransferSegmentLA;
PVOID TransferSegmentVA;
size_t TransferRingSize;
ULONG TransferRingInitialCycleBit;
ULONG MessageNumber;
PHYSICAL_ADDRESS EventRingSegmentLA;
PVOID EventRingSegmentVA;
size_t EventRingSize;
ULONG EventRingInitialCycleBit;
} USBD_ENDPOINT_OFFLOAD_INFORMATION_V1, *PUSBD_ENDPOINT_OFFLOAD_INFORMATION_V1;
View the official Windows Driver Kit DDI referenceNo description available.
Stores xHCI-specific V1 information that is used by client drivers to transfer data to and from the offloaded endpoints.
SizeThe size of this structure.
EndpointAddressSpecifies the USB-defined endpoint address.
ResourceIdThe resource identifier.
ModeA USBD_ENDPOINT_OFFLOAD_MODE value that indicates whether endpoint offloading is handled in software or the USB device or host controller.
RootHubPortNumberThe port number of the root hub to which the device is connected.
RouteStringThe route string describing the path from the root hub to the device.
SpeedThe speed of the USB device.
UsbDeviceAddressThe USB address of the device.
SlotIdThe slot ID of the device.
MultiTTIndicates if the device is connected to a hub with transaction translators.
LSOrFSDeviceConnectedToTTHubIndicates if the device is a low-speed or full-speed device connected to a hub with transaction translators.
Reserved0Reserved.
TransferSegmentLAThe physical address of the transfer ring segment.
TransferSegmentVAThe virtual address of the transfer ring segment.
TransferRingSizeThe size of the transfer ring.
TransferRingInitialCycleBitThe initial cycle bit of the transfer ring.
MessageNumberThe message number for the secondary event ring.
EventRingSegmentLAThe physical address of the event ring segment.
EventRingSegmentVAThe virtual address of the event ring segment.
EventRingSizeThe size of the event ring, in bytes.
EventRingInitialCycleBitThe initial cycle bit of the event ring.