Home
last modified time | relevance | path

Searched refs:Qtd (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
DEhciUrb.c44 PEI_EHC_QTD *Qtd; in EhcCreateQtd() local
52 Qtd = UsbHcAllocateMem (Ehc, Ehc->MemPool, sizeof (PEI_EHC_QTD)); in EhcCreateQtd()
54 if (Qtd == NULL) { in EhcCreateQtd()
58 Qtd->Signature = EHC_QTD_SIG; in EhcCreateQtd()
59 Qtd->Data = Data; in EhcCreateQtd()
60 Qtd->DataLen = 0; in EhcCreateQtd()
62 InitializeListHead (&Qtd->QtdList); in EhcCreateQtd()
64 QtdHw = &Qtd->QtdHw; in EhcCreateQtd()
111 Qtd->DataLen = Len; in EhcCreateQtd()
114 return Qtd; in EhcCreateQtd()
[all …]
DEhciSched.c37 PEI_EHC_QTD *Qtd; in EhcCreateHelpQ() local
42 Qtd = EhcCreateQtd (Ehc, NULL, 0, QTD_PID_INPUT, 0, 64); in EhcCreateHelpQ()
44 if (Qtd == NULL) { in EhcCreateHelpQ()
48 Qtd->QtdHw.Status = QTD_STAT_HALTED; in EhcCreateHelpQ()
49 Ehc->ShortReadStop = Qtd; in EhcCreateHelpQ()
308 PEI_EHC_QTD *Qtd; in EhcCheckUrbResult() local
326 Qtd = EFI_LIST_CONTAINER (Entry, PEI_EHC_QTD, QtdList); in EhcCheckUrbResult()
327 QtdHw = &Qtd->QtdHw; in EhcCheckUrbResult()
369 Urb->Completed += Qtd->DataLen - QtdHw->TotalBytes; in EhcCheckUrbResult()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
DEhciUrb.c45 EHC_QTD *Qtd; in EhcCreateQtd() local
53 Qtd = UsbHcAllocateMem (Ehc->MemPool, sizeof (EHC_QTD)); in EhcCreateQtd()
55 if (Qtd == NULL) { in EhcCreateQtd()
59 Qtd->Signature = EHC_QTD_SIG; in EhcCreateQtd()
60 Qtd->Data = Data; in EhcCreateQtd()
61 Qtd->DataLen = 0; in EhcCreateQtd()
63 InitializeListHead (&Qtd->QtdList); in EhcCreateQtd()
65 QtdHw = &Qtd->QtdHw; in EhcCreateQtd()
113 Qtd->DataLen = Len; in EhcCreateQtd()
116 return Qtd; in EhcCreateQtd()
[all …]
DEhciDebug.c75 IN EHC_QTD *Qtd, in EhcDumpQtd() argument
86 DEBUG ((EFI_D_VERBOSE, "Queue TD @ 0x%p, data length %d\n", Qtd, (UINT32)Qtd->DataLen)); in EhcDumpQtd()
88 QtdHw = &Qtd->QtdHw; in EhcDumpQtd()
133 EHC_QTD *Qtd; in EhcDumpQh() local
195 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList); in EhcDumpQh()
196 EhcDumpQtd (Qtd, NULL); in EhcDumpQh()
198 if (DumpBuf && (Qtd->DataLen != 0)) { in EhcDumpQh()
199 EhcDumpBuf (Qtd->Data, Qtd->DataLen); in EhcDumpQh()
DEhciSched.c36 EHC_QTD *Qtd; in EhcCreateHelpQ() local
42 Qtd = EhcCreateQtd (Ehc, NULL, NULL, 0, QTD_PID_INPUT, 0, 64); in EhcCreateHelpQ()
44 if (Qtd == NULL) { in EhcCreateHelpQ()
48 Qtd->QtdHw.Status = QTD_STAT_HALTED; in EhcCreateHelpQ()
49 Ehc->ShortReadStop = Qtd; in EhcCreateHelpQ()
568 EHC_QTD *Qtd; in EhcCheckUrbResult() local
587 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList); in EhcCheckUrbResult()
588 QtdHw = &Qtd->QtdHw; in EhcCheckUrbResult()
630 Urb->Completed += Qtd->DataLen - QtdHw->TotalBytes; in EhcCheckUrbResult()
888 EHC_QTD *Qtd; in EhcUpdateAsyncRequest() local
[all …]
DEhciDebug.h29 IN EHC_QTD *Qtd,