mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +00:00
[USBPORT] Add USB2_CheckTtEndpointInsert().
This commit is contained in:
parent
e701da4923
commit
c3803bed8a
1 changed files with 46 additions and 0 deletions
|
@ -38,6 +38,52 @@ USB2_AddDataBitStuff(IN USHORT DataTime)
|
||||||
return (DataTime + (DataTime / 16));
|
return (DataTime + (DataTime / 16));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
USB2_CheckTtEndpointInsert(IN PUSB2_TT_ENDPOINT nextTtEndpoint,
|
||||||
|
IN PUSB2_TT_ENDPOINT TtEndpoint)
|
||||||
|
{
|
||||||
|
ULONG TransferType;
|
||||||
|
|
||||||
|
DPRINT("USB2_CheckTtEndpointInsert: nextTtEndpoint - %p, TtEndpoint - %p\n",
|
||||||
|
nextTtEndpoint,
|
||||||
|
TtEndpoint);
|
||||||
|
|
||||||
|
ASSERT(TtEndpoint);
|
||||||
|
|
||||||
|
if (TtEndpoint->CalcBusTime >= (USB2_FS_MAX_PERIODIC_ALLOCATION / 2))
|
||||||
|
{
|
||||||
|
DPRINT1("USB2_CheckTtEndpointInsert: Result - FALSE\n");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!nextTtEndpoint)
|
||||||
|
{
|
||||||
|
DPRINT("USB2_CheckTtEndpointInsert: Result - TRUE\n");
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
TransferType = TtEndpoint->TtEndpointParams.TransferType;
|
||||||
|
|
||||||
|
if (nextTtEndpoint->ActualPeriod < TtEndpoint->ActualPeriod &&
|
||||||
|
TransferType == USBPORT_TRANSFER_TYPE_INTERRUPT)
|
||||||
|
{
|
||||||
|
DPRINT("USB2_CheckTtEndpointInsert: Result - TRUE\n");
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((nextTtEndpoint->ActualPeriod <= TtEndpoint->ActualPeriod &&
|
||||||
|
TransferType == USBPORT_TRANSFER_TYPE_ISOCHRONOUS) ||
|
||||||
|
nextTtEndpoint == TtEndpoint)
|
||||||
|
{
|
||||||
|
DPRINT("USB2_CheckTtEndpointInsert: Result - TRUE\n");
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
DPRINT("USB2_CheckTtEndpointInsert: Result - FALSE\n");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
ULONG
|
ULONG
|
||||||
NTAPI
|
NTAPI
|
||||||
USB2_GetOverhead(IN PUSB2_TT_ENDPOINT TtEndpoint)
|
USB2_GetOverhead(IN PUSB2_TT_ENDPOINT TtEndpoint)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue