Home
last modified time | relevance | path

Searched refs:QtdHw (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
DEhciDebug.c79 QTD_HW *QtdHw; in EhcDumpQtd() local
88 QtdHw = &Qtd->QtdHw; in EhcDumpQtd()
90 DEBUG ((EFI_D_VERBOSE, "Next QTD : %x\n", QtdHw->NextQtd)); in EhcDumpQtd()
91 DEBUG ((EFI_D_VERBOSE, "AltNext QTD : %x\n", QtdHw->AltNext)); in EhcDumpQtd()
92 DEBUG ((EFI_D_VERBOSE, "Status : %x\n", QtdHw->Status)); in EhcDumpQtd()
93 EhcDumpStatus (QtdHw->Status); in EhcDumpQtd()
95 if (QtdHw->Pid == QTD_PID_SETUP) { in EhcDumpQtd()
98 } else if (QtdHw->Pid == QTD_PID_INPUT) { in EhcDumpQtd()
101 } else if (QtdHw->Pid == QTD_PID_OUTPUT) { in EhcDumpQtd()
106 DEBUG ((EFI_D_VERBOSE, "Error Count : %d\n", QtdHw->ErrCnt)); in EhcDumpQtd()
[all …]
DEhciUrb.c46 QTD_HW *QtdHw; in EhcCreateQtd() local
65 QtdHw = &Qtd->QtdHw; in EhcCreateQtd()
66 QtdHw->NextQtd = QTD_LINK (NULL, TRUE); in EhcCreateQtd()
67 QtdHw->AltNext = QTD_LINK (NULL, TRUE); in EhcCreateQtd()
68 QtdHw->Status = QTD_STAT_ACTIVE; in EhcCreateQtd()
69 QtdHw->Pid = PktId; in EhcCreateQtd()
70 QtdHw->ErrCnt = QTD_MAX_ERR; in EhcCreateQtd()
71 QtdHw->Ioc = 0; in EhcCreateQtd()
72 QtdHw->TotalBytes = 0; in EhcCreateQtd()
73 QtdHw->DataToggle = Toggle; in EhcCreateQtd()
[all …]
DEhciSched.c48 Qtd->QtdHw.Status = QTD_STAT_HALTED; in EhcCreateHelpQ()
569 QTD_HW *QtdHw; in EhcCheckUrbResult() local
588 QtdHw = &Qtd->QtdHw; in EhcCheckUrbResult()
589 State = (UINT8) QtdHw->Status; in EhcCheckUrbResult()
608 if (EHC_BIT_IS_SET (State, QTD_STAT_TRANS_ERR) && (QtdHw->ErrCnt == 0)) { in EhcCheckUrbResult()
629 if (QtdHw->Pid != QTD_PID_SETUP) { in EhcCheckUrbResult()
630 Urb->Completed += Qtd->DataLen - QtdHw->TotalBytes; in EhcCheckUrbResult()
633 if ((QtdHw->TotalBytes != 0) && (QtdHw->Pid == QTD_PID_INPUT)) { in EhcCheckUrbResult()
643 if (QtdHw->AltNext == QTD_LINK (PciAddr, FALSE)) { in EhcCheckUrbResult()
889 QTD_HW *QtdHw; in EhcUpdateAsyncRequest() local
[all …]
DEhciUrb.h174 QTD_HW QtdHw; member
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
DEhciUrb.c45 QTD_HW *QtdHw; in EhcCreateQtd() local
64 QtdHw = &Qtd->QtdHw; in EhcCreateQtd()
65 QtdHw->NextQtd = QTD_LINK (NULL, TRUE); in EhcCreateQtd()
66 QtdHw->AltNext = QTD_LINK (NULL, TRUE); in EhcCreateQtd()
67 QtdHw->Status = QTD_STAT_ACTIVE; in EhcCreateQtd()
68 QtdHw->Pid = PktId; in EhcCreateQtd()
69 QtdHw->ErrCnt = QTD_MAX_ERR; in EhcCreateQtd()
70 QtdHw->Ioc = 0; in EhcCreateQtd()
71 QtdHw->TotalBytes = 0; in EhcCreateQtd()
72 QtdHw->DataToggle = Toggle; in EhcCreateQtd()
[all …]
DEhciSched.c48 Qtd->QtdHw.Status = QTD_STAT_HALTED; in EhcCreateHelpQ()
309 QTD_HW *QtdHw; in EhcCheckUrbResult() local
327 QtdHw = &Qtd->QtdHw; in EhcCheckUrbResult()
328 State = (UINT8) QtdHw->Status; in EhcCheckUrbResult()
347 if (EHC_BIT_IS_SET (State, QTD_STAT_TRANS_ERR) && (QtdHw->ErrCnt == 0)) { in EhcCheckUrbResult()
368 if (QtdHw->Pid != QTD_PID_SETUP) { in EhcCheckUrbResult()
369 Urb->Completed += Qtd->DataLen - QtdHw->TotalBytes; in EhcCheckUrbResult()
372 if ((QtdHw->TotalBytes != 0) && (QtdHw->Pid == QTD_PID_INPUT)) { in EhcCheckUrbResult()
381 if (QtdHw->AltNext == QTD_LINK (Ehc->ShortReadStop, FALSE)) { in EhcCheckUrbResult()
DEhciUrb.h170 QTD_HW QtdHw; member