mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Change use of EFI_D_* to DEBUG_*
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3739 Update all use of EFI_D_* defines in DEBUG() macros to DEBUG_* defines. Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael Kubacki <michael.kubacki@microsoft.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
parent
917e98f3e5
commit
87000d7708
|
@ -1027,7 +1027,7 @@ GetUefiMemoryProfileData (
|
|||
|
||||
Status = gBS->LocateProtocol (&gEdkiiMemoryProfileGuid, NULL, (VOID **) &ProfileProtocol);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UefiMemoryProfile: Locate MemoryProfile protocol - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UefiMemoryProfile: Locate MemoryProfile protocol - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1136,7 +1136,7 @@ GetSmramProfileData (
|
|||
|
||||
Status = gBS->LocateProtocol (&gEfiSmmCommunicationProtocolGuid, NULL, (VOID **) &SmmCommunication);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfile: Locate SmmCommunication protocol - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfile: Locate SmmCommunication protocol - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1157,7 +1157,7 @@ GetSmramProfileData (
|
|||
(VOID **) &PiSmmCommunicationRegionTable
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfile: Get PiSmmCommunicationRegionTable - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfile: Get PiSmmCommunicationRegionTable - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
ASSERT (PiSmmCommunicationRegionTable != NULL);
|
||||
|
@ -1193,7 +1193,7 @@ GetSmramProfileData (
|
|||
CommSize = sizeof (EFI_GUID) + sizeof (UINTN) + CommHeader->MessageLength;
|
||||
Status = SmmCommunication->Communicate (SmmCommunication, CommBuffer, &CommSize);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfile: SmmCommunication - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfile: SmmCommunication - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1349,12 +1349,12 @@ UefiMain (
|
|||
|
||||
Status = GetUefiMemoryProfileData ();
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "GetUefiMemoryProfileData - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "GetUefiMemoryProfileData - %r\n", Status));
|
||||
}
|
||||
|
||||
Status = GetSmramProfileData ();
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "GetSmramProfileData - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "GetSmramProfileData - %r\n", Status));
|
||||
}
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
|
|
@ -1723,7 +1723,7 @@ AhciAtaSmartReturnStatusCheck (
|
|||
//
|
||||
// The threshold exceeded condition is not detected by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "The S.M.A.R.T threshold exceeded condition is not detected\n"));
|
||||
DEBUG ((DEBUG_INFO, "The S.M.A.R.T threshold exceeded condition is not detected\n"));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_PROGRESS_CODE,
|
||||
(EFI_IO_BUS_ATA_ATAPI | EFI_IOB_ATA_BUS_SMART_UNDERTHRESHOLD)
|
||||
|
@ -1732,7 +1732,7 @@ AhciAtaSmartReturnStatusCheck (
|
|||
//
|
||||
// The threshold exceeded condition is detected by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "The S.M.A.R.T threshold exceeded condition is detected\n"));
|
||||
DEBUG ((DEBUG_INFO, "The S.M.A.R.T threshold exceeded condition is detected\n"));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_PROGRESS_CODE,
|
||||
(EFI_IO_BUS_ATA_ATAPI | EFI_IOB_ATA_BUS_SMART_OVERTHRESHOLD)
|
||||
|
@ -1775,7 +1775,7 @@ AhciAtaSmartSupport (
|
|||
//
|
||||
// S.M.A.R.T is not supported by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "S.M.A.R.T feature is not supported at port [%d] PortMultiplier [%d]!\n",
|
||||
DEBUG ((DEBUG_INFO, "S.M.A.R.T feature is not supported at port [%d] PortMultiplier [%d]!\n",
|
||||
Port, PortMultiplier));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_ERROR_CODE | EFI_ERROR_MINOR,
|
||||
|
@ -1851,7 +1851,7 @@ AhciAtaSmartSupport (
|
|||
AtaStatusBlock
|
||||
);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Enabled S.M.A.R.T feature at port [%d] PortMultiplier [%d]!\n",
|
||||
DEBUG ((DEBUG_INFO, "Enabled S.M.A.R.T feature at port [%d] PortMultiplier [%d]!\n",
|
||||
Port, PortMultiplier));
|
||||
}
|
||||
|
||||
|
@ -2785,7 +2785,7 @@ AhciModeInitialization (
|
|||
NULL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"AhciModeInitialization: failed to enable 64-bit DMA on 64-bit capable controller (%r)\n",
|
||||
Status));
|
||||
}
|
||||
|
@ -2991,7 +2991,7 @@ AhciModeInitialization (
|
|||
&SupportedModes
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Calculate Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Calculate Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -3022,7 +3022,7 @@ AhciModeInitialization (
|
|||
|
||||
Status = AhciDeviceSetFeature (PciIo, AhciRegisters, Port, 0, 0x03, (UINT32)(*(UINT8 *)&TransferMode), ATA_ATAPI_TIMEOUT);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -3061,4 +3061,3 @@ AhciModeInitialization (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -682,7 +682,7 @@ AtaAtapiPassThruStart (
|
|||
Instance = NULL;
|
||||
OriginalPciAttributes = 0;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "==AtaAtapiPassThru Start== Controller = %x\n", Controller));
|
||||
DEBUG ((DEBUG_INFO, "==AtaAtapiPassThru Start== Controller = %x\n", Controller));
|
||||
|
||||
Status = gBS->OpenProtocol (
|
||||
Controller,
|
||||
|
@ -694,7 +694,7 @@ AtaAtapiPassThruStart (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Open Ide_Controller_Init Error, Status=%r", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Open Ide_Controller_Init Error, Status=%r", Status));
|
||||
goto ErrorExit;
|
||||
}
|
||||
|
||||
|
@ -707,7 +707,7 @@ AtaAtapiPassThruStart (
|
|||
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Get Pci_Io Protocol Error, Status=%r", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Get Pci_Io Protocol Error, Status=%r", Status));
|
||||
goto ErrorExit;
|
||||
}
|
||||
|
||||
|
@ -872,7 +872,7 @@ AtaAtapiPassThruStop (
|
|||
EFI_PCI_IO_PROTOCOL *PciIo;
|
||||
EFI_AHCI_REGISTERS *AhciRegisters;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "==AtaAtapiPassThru Stop== Controller = %x\n", Controller));
|
||||
DEBUG ((DEBUG_INFO, "==AtaAtapiPassThru Stop== Controller = %x\n", Controller));
|
||||
|
||||
Status = gBS->OpenProtocol (
|
||||
Controller,
|
||||
|
@ -2646,4 +2646,3 @@ Exit:
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -252,36 +252,36 @@ DumpAllIdeRegisters (
|
|||
|
||||
DEBUG_CODE_BEGIN ();
|
||||
if ((StatusBlock.AtaStatus & ATA_STSREG_DWF) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Write Fault\n", StatusBlock.AtaStatus));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Write Fault\n", StatusBlock.AtaStatus));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaStatus & ATA_STSREG_CORR) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Corrected Data\n", StatusBlock.AtaStatus));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Corrected Data\n", StatusBlock.AtaStatus));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaStatus & ATA_STSREG_ERR) != 0) {
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_BBK) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Bad Block Detected\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Bad Block Detected\n", StatusBlock.AtaError));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_UNC) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Uncorrectable Data\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Uncorrectable Data\n", StatusBlock.AtaError));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_MC) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Media Change\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Media Change\n", StatusBlock.AtaError));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_ABRT) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Abort\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Abort\n", StatusBlock.AtaError));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_TK0NF) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Track 0 Not Found\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Track 0 Not Found\n", StatusBlock.AtaError));
|
||||
}
|
||||
|
||||
if ((StatusBlock.AtaError & ATA_ERRREG_AMNF) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "CheckRegisterStatus()-- %02x : Error : Address Mark Not Found\n", StatusBlock.AtaError));
|
||||
DEBUG ((DEBUG_ERROR, "CheckRegisterStatus()-- %02x : Error : Address Mark Not Found\n", StatusBlock.AtaError));
|
||||
}
|
||||
}
|
||||
DEBUG_CODE_END ();
|
||||
|
@ -1162,7 +1162,7 @@ AtaUdmStatusWait (
|
|||
IoPortForBmis = (UINT16) (IdeRegisters->BusMasterBaseAddr + BMIS_OFFSET);
|
||||
RegisterValue = IdeReadPortB (PciIo, IoPortForBmis);
|
||||
if (((RegisterValue & BMIS_ERROR) != 0) || (Timeout == 0)) {
|
||||
DEBUG ((EFI_D_ERROR, "ATA UDMA operation fails\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ATA UDMA operation fails\n"));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
break;
|
||||
}
|
||||
|
@ -1217,7 +1217,7 @@ AtaUdmStatusCheck (
|
|||
RegisterValue = IdeReadPortB (PciIo, IoPortForBmis);
|
||||
|
||||
if ((RegisterValue & BMIS_ERROR) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "ATA UDMA operation fails\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ATA UDMA operation fails\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -2077,7 +2077,7 @@ IdeAtaSmartReturnStatusCheck (
|
|||
//
|
||||
// The threshold exceeded condition is not detected by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "The S.M.A.R.T threshold exceeded condition is not detected\n"));
|
||||
DEBUG ((DEBUG_INFO, "The S.M.A.R.T threshold exceeded condition is not detected\n"));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_PROGRESS_CODE,
|
||||
(EFI_IO_BUS_ATA_ATAPI | EFI_IOB_ATA_BUS_SMART_UNDERTHRESHOLD)
|
||||
|
@ -2086,7 +2086,7 @@ IdeAtaSmartReturnStatusCheck (
|
|||
//
|
||||
// The threshold exceeded condition is detected by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "The S.M.A.R.T threshold exceeded condition is detected\n"));
|
||||
DEBUG ((DEBUG_INFO, "The S.M.A.R.T threshold exceeded condition is detected\n"));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_PROGRESS_CODE,
|
||||
(EFI_IO_BUS_ATA_ATAPI | EFI_IOB_ATA_BUS_SMART_OVERTHRESHOLD)
|
||||
|
@ -2126,7 +2126,7 @@ IdeAtaSmartSupport (
|
|||
//
|
||||
// S.M.A.R.T is not supported by the device
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "S.M.A.R.T feature is not supported at [%a] channel [%a] device!\n",
|
||||
DEBUG ((DEBUG_INFO, "S.M.A.R.T feature is not supported at [%a] channel [%a] device!\n",
|
||||
(Channel == 1) ? "secondary" : "primary", (Device == 1) ? "slave" : "master"));
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_ERROR_CODE | EFI_ERROR_MINOR,
|
||||
|
@ -2195,7 +2195,7 @@ IdeAtaSmartSupport (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Enabled S.M.A.R.T feature at [%a] channel [%a] device!\n",
|
||||
DEBUG ((DEBUG_INFO, "Enabled S.M.A.R.T feature at [%a] channel [%a] device!\n",
|
||||
(Channel == 1) ? "secondary" : "primary", (Device == 1) ? "slave" : "master"));
|
||||
|
||||
}
|
||||
|
@ -2392,7 +2392,7 @@ DetectAndConfigIdeDevice (
|
|||
|
||||
Status = WaitForBSYClear (PciIo, IdeRegisters, 350000000);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG((EFI_D_ERROR, "New detecting method: Send Execute Diagnostic Command: WaitForBSYClear: Status: %d\n", Status));
|
||||
DEBUG((DEBUG_ERROR, "New detecting method: Send Execute Diagnostic Command: WaitForBSYClear: Status: %d\n", Status));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -2453,7 +2453,7 @@ DetectAndConfigIdeDevice (
|
|||
continue;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "[%a] channel [%a] [%a] device\n",
|
||||
DEBUG ((DEBUG_INFO, "[%a] channel [%a] [%a] device\n",
|
||||
(IdeChannel == 1) ? "secondary" : "primary ", (IdeDevice == 1) ? "slave " : "master",
|
||||
DeviceType == EfiIdeCdrom ? "cdrom " : "harddisk"));
|
||||
//
|
||||
|
@ -2484,7 +2484,7 @@ DetectAndConfigIdeDevice (
|
|||
&SupportedModes
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Calculate Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Calculate Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -2503,7 +2503,7 @@ DetectAndConfigIdeDevice (
|
|||
Status = SetDeviceTransferMode (Instance, IdeChannel, IdeDevice, &TransferMode, NULL);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
@ -2520,7 +2520,7 @@ DetectAndConfigIdeDevice (
|
|||
Status = SetDeviceTransferMode (Instance, IdeChannel, IdeDevice, &TransferMode, NULL);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
} else if (SupportedModes->MultiWordDmaMode.Valid) {
|
||||
|
@ -2529,7 +2529,7 @@ DetectAndConfigIdeDevice (
|
|||
Status = SetDeviceTransferMode (Instance, IdeChannel, IdeDevice, &TransferMode, NULL);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Set transfer Mode Fail, Status = %r\n", Status));
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
@ -2619,7 +2619,7 @@ IdeModeInitialization (
|
|||
&MaxDevices
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "[GetChannel, Status=%x]", Status));
|
||||
DEBUG ((DEBUG_ERROR, "[GetChannel, Status=%x]", Status));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -2658,4 +2658,3 @@ IdeModeInitialization (
|
|||
ErrorExit:
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -358,7 +358,7 @@ RegisterAtaDevice (
|
|||
// If yes, then install Storage Security Protocol at the ata device handle.
|
||||
//
|
||||
if ((AtaDevice->IdentifyData->trusted_computing_support & BIT0) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "Found TCG support in Port %x PortMultiplierPort %x\n", Port, PortMultiplierPort));
|
||||
DEBUG ((DEBUG_INFO, "Found TCG support in Port %x PortMultiplierPort %x\n", Port, PortMultiplierPort));
|
||||
Status = gBS->InstallProtocolInterface (
|
||||
&AtaDevice->Handle,
|
||||
&gEfiStorageSecurityCommandProtocolGuid,
|
||||
|
@ -368,7 +368,7 @@ RegisterAtaDevice (
|
|||
if (EFI_ERROR (Status)) {
|
||||
goto Done;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "Successfully Install Storage Security Protocol on the ATA device\n"));
|
||||
DEBUG ((DEBUG_INFO, "Successfully Install Storage Security Protocol on the ATA device\n"));
|
||||
}
|
||||
|
||||
gBS->OpenProtocol (
|
||||
|
@ -387,7 +387,7 @@ Done:
|
|||
|
||||
if (EFI_ERROR (Status) && (AtaDevice != NULL)) {
|
||||
ReleaseAtaResources (AtaDevice);
|
||||
DEBUG ((EFI_D_ERROR | EFI_D_INIT, "Failed to initialize Port %x PortMultiplierPort %x, status = %r\n", Port, PortMultiplierPort, Status));
|
||||
DEBUG ((DEBUG_ERROR | DEBUG_INIT, "Failed to initialize Port %x PortMultiplierPort %x, status = %r\n", Port, PortMultiplierPort, Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -1537,7 +1537,7 @@ AtaStorageSecurityReceiveData (
|
|||
ATA_DEVICE *Private;
|
||||
EFI_TPL OldTpl;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EFI Storage Security Protocol - Read\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI Storage Security Protocol - Read\n"));
|
||||
if ((PayloadBuffer == NULL || PayloadTransferSize == NULL) && PayloadBufferSize != 0) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
@ -1647,7 +1647,7 @@ AtaStorageSecuritySendData (
|
|||
ATA_DEVICE *Private;
|
||||
EFI_TPL OldTpl;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EFI Storage Security Protocol - Send\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI Storage Security Protocol - Send\n"));
|
||||
if ((PayloadBuffer == NULL) && (PayloadBufferSize != 0)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
@ -1709,4 +1709,3 @@ InitializeAtaBus(
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -309,7 +309,7 @@ IdentifyAtaDevice (
|
|||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "AtaBus - Identify Device: Port %x PortMultiplierPort %x\n", AtaDevice->Port, AtaDevice->PortMultiplierPort));
|
||||
DEBUG ((DEBUG_INFO, "AtaBus - Identify Device: Port %x PortMultiplierPort %x\n", AtaDevice->Port, AtaDevice->PortMultiplierPort));
|
||||
|
||||
//
|
||||
// Check whether the WORD 88 (supported UltraDMA by drive) is valid
|
||||
|
@ -674,7 +674,7 @@ AtaNonBlockingCallBack (
|
|||
}
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_BLKIO,
|
||||
DEBUG_BLKIO,
|
||||
"NON-BLOCKING EVENT FINISHED!- STATUS = %r\n",
|
||||
Task->Token->TransactionStatus
|
||||
));
|
||||
|
@ -683,7 +683,7 @@ AtaNonBlockingCallBack (
|
|||
// Reduce the SubEventCount, till it comes to zero.
|
||||
//
|
||||
(*Task->UnsignalledEventCount) --;
|
||||
DEBUG ((EFI_D_BLKIO, "UnsignalledEventCount = %d\n", *Task->UnsignalledEventCount));
|
||||
DEBUG ((DEBUG_BLKIO, "UnsignalledEventCount = %d\n", *Task->UnsignalledEventCount));
|
||||
|
||||
//
|
||||
// Remove the SubTask from the Task list.
|
||||
|
@ -696,7 +696,7 @@ AtaNonBlockingCallBack (
|
|||
//
|
||||
if (!(*Task->IsError)) {
|
||||
gBS->SignalEvent (Task->Token->Event);
|
||||
DEBUG ((EFI_D_BLKIO, "Signal the upper layer event!\n"));
|
||||
DEBUG ((DEBUG_BLKIO, "Signal the upper layer event!\n"));
|
||||
}
|
||||
|
||||
FreePool (Task->UnsignalledEventCount);
|
||||
|
@ -709,8 +709,8 @@ AtaNonBlockingCallBack (
|
|||
if (!IsListEmpty (&AtaDevice->AtaTaskList)) {
|
||||
Entry = GetFirstNode (&AtaDevice->AtaTaskList);
|
||||
AtaTask = ATA_ASYN_TASK_FROM_ENTRY (Entry);
|
||||
DEBUG ((EFI_D_BLKIO, "Start to embark a new Ata Task\n"));
|
||||
DEBUG ((EFI_D_BLKIO, "AtaTask->NumberOfBlocks = %x; AtaTask->Token=%x\n", AtaTask->NumberOfBlocks, AtaTask->Token));
|
||||
DEBUG ((DEBUG_BLKIO, "Start to embark a new Ata Task\n"));
|
||||
DEBUG ((DEBUG_BLKIO, "AtaTask->NumberOfBlocks = %x; AtaTask->Token=%x\n", AtaTask->NumberOfBlocks, AtaTask->Token));
|
||||
Status = AccessAtaDevice (
|
||||
AtaTask->AtaDevice,
|
||||
AtaTask->Buffer,
|
||||
|
@ -729,7 +729,7 @@ AtaNonBlockingCallBack (
|
|||
}
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_BLKIO,
|
||||
DEBUG_BLKIO,
|
||||
"PACKET INFO: Write=%s, Length=%x, LowCylinder=%x, HighCylinder=%x, SectionNumber=%x\n",
|
||||
Task->Packet.OutDataBuffer != NULL ? L"YES" : L"NO",
|
||||
Task->Packet.OutDataBuffer != NULL ? Task->Packet.OutTransferLength : Task->Packet.InTransferLength,
|
||||
|
@ -838,13 +838,13 @@ AccessAtaDevice(
|
|||
FreePool (EventCount);
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
DEBUG ((EFI_D_BLKIO, "Allocation IsError Addr=%x\n", IsError));
|
||||
DEBUG ((DEBUG_BLKIO, "Allocation IsError Addr=%x\n", IsError));
|
||||
*IsError = FALSE;
|
||||
TempCount = (NumberOfBlocks + MaxTransferBlockNumber - 1) / MaxTransferBlockNumber;
|
||||
*EventCount = TempCount;
|
||||
DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, NumberOfBlocks=%x\n", NumberOfBlocks));
|
||||
DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, MaxTransferBlockNumber=%x\n", MaxTransferBlockNumber));
|
||||
DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, EventCount=%x\n", TempCount));
|
||||
DEBUG ((DEBUG_BLKIO, "AccessAtaDevice, NumberOfBlocks=%x\n", NumberOfBlocks));
|
||||
DEBUG ((DEBUG_BLKIO, "AccessAtaDevice, MaxTransferBlockNumber=%x\n", MaxTransferBlockNumber));
|
||||
DEBUG ((DEBUG_BLKIO, "AccessAtaDevice, EventCount=%x\n", TempCount));
|
||||
} else {
|
||||
while (!IsListEmpty (&AtaDevice->AtaTaskList) || !IsListEmpty (&AtaDevice->AtaSubTaskList)) {
|
||||
//
|
||||
|
@ -906,7 +906,7 @@ AccessAtaDevice(
|
|||
//
|
||||
// Blocking Mode.
|
||||
//
|
||||
DEBUG ((EFI_D_BLKIO, "Blocking AccessAtaDevice, TransferBlockNumber=%x; StartLba = %x\n", TransferBlockNumber, StartLba));
|
||||
DEBUG ((DEBUG_BLKIO, "Blocking AccessAtaDevice, TransferBlockNumber=%x; StartLba = %x\n", TransferBlockNumber, StartLba));
|
||||
Status = TransferAtaDevice (AtaDevice, NULL, Buffer, StartLba, (UINT32) TransferBlockNumber, IsWrite, NULL);
|
||||
}
|
||||
|
||||
|
|
|
@ -312,7 +312,7 @@ CheckRemainingDevicePath (
|
|||
((!SystemHasControllerNode) && (RemainingHasControllerNode) && (RemainingControllerNumber == 0)) ||
|
||||
((SystemHasControllerNode) && (RemainingHasControllerNode) && (SystemControllerNumber == RemainingControllerNumber)) ||
|
||||
((!SystemHasControllerNode) && (!RemainingHasControllerNode))) {
|
||||
DEBUG ((EFI_D_ERROR, "This I2C device has been already started.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "This I2C device has been already started.\n"));
|
||||
Status = EFI_UNSUPPORTED;
|
||||
break;
|
||||
}
|
||||
|
@ -572,7 +572,7 @@ I2cBusDriverStart (
|
|||
EFI_OPEN_PROTOCOL_BY_DRIVER
|
||||
);
|
||||
if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: open I2C host error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: open I2C host error, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -586,7 +586,7 @@ I2cBusDriverStart (
|
|||
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: open private protocol error, Status = %r.\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: open private protocol error, Status = %r.\n", Status));
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
@ -603,7 +603,7 @@ I2cBusDriverStart (
|
|||
EFI_OPEN_PROTOCOL_BY_DRIVER
|
||||
);
|
||||
if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: open I2C enumerate error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: open I2C enumerate error, Status = %r\n", Status));
|
||||
goto Error;
|
||||
}
|
||||
|
||||
|
@ -616,7 +616,7 @@ I2cBusDriverStart (
|
|||
EFI_OPEN_PROTOCOL_BY_DRIVER
|
||||
);
|
||||
if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: open device path error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: open device path error, Status = %r\n", Status));
|
||||
goto Error;
|
||||
}
|
||||
|
||||
|
@ -637,7 +637,7 @@ I2cBusDriverStart (
|
|||
//
|
||||
I2cBusContext = AllocateZeroPool (sizeof (I2C_BUS_CONTEXT));
|
||||
if (I2cBusContext == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: there is no enough memory to allocate.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: there is no enough memory to allocate.\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto Error;
|
||||
}
|
||||
|
@ -676,7 +676,7 @@ I2cBusDriverStart (
|
|||
NULL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: install private protocol error, Status = %r.\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: install private protocol error, Status = %r.\n", Status));
|
||||
goto Error;
|
||||
}
|
||||
}
|
||||
|
@ -690,7 +690,7 @@ I2cBusDriverStart (
|
|||
|
||||
Error:
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cBus: Start() function failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cBus: Start() function failed, Status = %r\n", Status));
|
||||
if (ParentDevicePath != NULL) {
|
||||
gBS->CloseProtocol (
|
||||
Controller,
|
||||
|
@ -921,7 +921,7 @@ RegisterI2cDevice (
|
|||
// Determine if the device info is valid
|
||||
//
|
||||
if ((Device->DeviceGuid == NULL) || (Device->SlaveAddressCount == 0) || (Device->SlaveAddressArray == NULL)) {
|
||||
DEBUG ((EFI_D_ERROR, "Invalid EFI_I2C_DEVICE reported by I2c Enumerate protocol.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Invalid EFI_I2C_DEVICE reported by I2c Enumerate protocol.\n"));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -343,7 +343,7 @@ I2cHostDriverStart (
|
|||
EFI_OPEN_PROTOCOL_BY_DRIVER
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: Open I2C bus configuration error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: Open I2C bus configuration error, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -359,7 +359,7 @@ I2cHostDriverStart (
|
|||
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: Open I2C master error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: Open I2C master error, Status = %r\n", Status));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
@ -368,7 +368,7 @@ I2cHostDriverStart (
|
|||
//
|
||||
I2cHostContext = AllocateZeroPool (sizeof (I2C_HOST_CONTEXT));
|
||||
if (I2cHostContext == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: there is no enough memory to allocate.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: there is no enough memory to allocate.\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto Exit;
|
||||
}
|
||||
|
@ -387,7 +387,7 @@ I2cHostDriverStart (
|
|||
//
|
||||
Status = I2cMaster->Reset (I2cMaster);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: I2C controller reset failed!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: I2C controller reset failed!\n"));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
@ -402,7 +402,7 @@ I2cHostDriverStart (
|
|||
&I2cHostContext->I2cEvent
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: create complete event error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: create complete event error, Status = %r\n", Status));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
@ -417,7 +417,7 @@ I2cHostDriverStart (
|
|||
&I2cHostContext->I2cBusConfigurationEvent
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: create bus available event error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: create bus available event error, Status = %r\n", Status));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
@ -438,7 +438,7 @@ I2cHostDriverStart (
|
|||
);
|
||||
Exit:
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: Start() function failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: Start() function failed, Status = %r\n", Status));
|
||||
if (I2cBusConfigurationManagement != NULL) {
|
||||
gBS->CloseProtocol (
|
||||
Controller,
|
||||
|
@ -514,7 +514,7 @@ I2cHostDriverStop (
|
|||
|
||||
TplPrevious = EfiGetCurrentTpl ();
|
||||
if (TplPrevious > TPL_I2C_SYNC) {
|
||||
DEBUG ((EFI_D_ERROR, "I2cHost: TPL %d is too high in Stop.\n", TplPrevious));
|
||||
DEBUG ((DEBUG_ERROR, "I2cHost: TPL %d is too high in Stop.\n", TplPrevious));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -982,7 +982,7 @@ I2cHostQueueRequest (
|
|||
//
|
||||
TplPrevious = EfiGetCurrentTpl ();
|
||||
if ((TplPrevious > TPL_I2C_SYNC) || ((Event == NULL) && (TplPrevious > TPL_CALLBACK))) {
|
||||
DEBUG ((EFI_D_ERROR, "ERROR - TPL %d is too high!\n", TplPrevious));
|
||||
DEBUG ((DEBUG_ERROR, "ERROR - TPL %d is too high!\n", TplPrevious));
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
|
@ -991,7 +991,7 @@ I2cHostQueueRequest (
|
|||
//
|
||||
I2cRequest = AllocateZeroPool (sizeof (I2C_REQUEST));
|
||||
if (I2cRequest == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "WARNING - Failed to allocate I2C_REQUEST!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "WARNING - Failed to allocate I2C_REQUEST!\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ EhcGetCapability (
|
|||
*PortNumber = (UINT8) (Ehc->HcStructParams & HCSP_NPORTS);
|
||||
*Is64BitCapable = (UINT8) Ehc->Support64BitDma;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcGetCapability: %d ports, 64 bit %d\n", *PortNumber, *Is64BitCapable));
|
||||
DEBUG ((DEBUG_INFO, "EhcGetCapability: %d ports, 64 bit %d\n", *PortNumber, *Is64BitCapable));
|
||||
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
return EFI_SUCCESS;
|
||||
|
@ -181,7 +181,7 @@ EhcReset (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "EhcReset: exit status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcReset: exit status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
return Status;
|
||||
}
|
||||
|
@ -225,7 +225,7 @@ EhcGetState (
|
|||
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcGetState: current state %d\n", *State));
|
||||
DEBUG ((DEBUG_INFO, "EhcGetState: current state %d\n", *State));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -299,7 +299,7 @@ EhcSetState (
|
|||
Status = EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcSetState: exit status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcSetState: exit status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
return Status;
|
||||
}
|
||||
|
@ -470,7 +470,7 @@ EhcSetRootHubPortFeature (
|
|||
Status = EhcRunHC (Ehc, EHC_GENERIC_TIMEOUT);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "EhcSetRootHubPortFeature :failed to start HC - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcSetRootHubPortFeature :failed to start HC - %r\n", Status));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -503,7 +503,7 @@ EhcSetRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "EhcSetRootHubPortFeature: exit status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcSetRootHubPortFeature: exit status %r\n", Status));
|
||||
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
return Status;
|
||||
|
@ -638,7 +638,7 @@ EhcClearRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "EhcClearRootHubPortFeature: exit status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcClearRootHubPortFeature: exit status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
return Status;
|
||||
}
|
||||
|
@ -729,7 +729,7 @@ EhcControlTransfer (
|
|||
*TransferResult = EFI_USB_ERR_SYSTEM;
|
||||
|
||||
if (EhcIsHalt (Ehc) || EhcIsSysError (Ehc)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcControlTransfer: HC halted at entrance\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcControlTransfer: HC halted at entrance\n"));
|
||||
|
||||
EhcAckAllInterrupt (Ehc);
|
||||
goto ON_EXIT;
|
||||
|
@ -765,7 +765,7 @@ EhcControlTransfer (
|
|||
);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcControlTransfer: failed to create URB"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcControlTransfer: failed to create URB"));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
|
@ -794,7 +794,7 @@ ON_EXIT:
|
|||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "EhcControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -878,7 +878,7 @@ EhcBulkTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (EhcIsHalt (Ehc) || EhcIsSysError (Ehc)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcBulkTransfer: HC is halted\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcBulkTransfer: HC is halted\n"));
|
||||
|
||||
EhcAckAllInterrupt (Ehc);
|
||||
goto ON_EXIT;
|
||||
|
@ -908,7 +908,7 @@ EhcBulkTransfer (
|
|||
);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcBulkTransfer: failed to create URB\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcBulkTransfer: failed to create URB\n"));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
|
@ -934,7 +934,7 @@ ON_EXIT:
|
|||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "EhcBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -1023,14 +1023,14 @@ EhcAsyncInterruptTransfer (
|
|||
if (!IsNewTransfer) {
|
||||
Status = EhciDelAsyncIntTransfer (Ehc, DeviceAddress, EndPointAddress, DataToggle);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcAsyncInterruptTransfer: remove old transfer - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EhcAsyncInterruptTransfer: remove old transfer - %r\n", Status));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
if (EhcIsHalt (Ehc) || EhcIsSysError (Ehc)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcAsyncInterruptTransfer: HC is halt\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcAsyncInterruptTransfer: HC is halt\n"));
|
||||
EhcAckAllInterrupt (Ehc);
|
||||
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
|
@ -1139,7 +1139,7 @@ EhcSyncInterruptTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (EhcIsHalt (Ehc) || EhcIsSysError (Ehc)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcSyncInterruptTransfer: HC is halt\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcSyncInterruptTransfer: HC is halt\n"));
|
||||
|
||||
EhcAckAllInterrupt (Ehc);
|
||||
goto ON_EXIT;
|
||||
|
@ -1165,7 +1165,7 @@ EhcSyncInterruptTransfer (
|
|||
);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcSyncInterruptTransfer: failed to create URB\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcSyncInterruptTransfer: failed to create URB\n"));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
|
@ -1189,7 +1189,7 @@ ON_EXIT:
|
|||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcSyncInterruptTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "EhcSyncInterruptTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -1562,7 +1562,7 @@ EhcCreateUsb2Hc (
|
|||
Ehc->HcCapParams = EhcReadCapRegister (Ehc, EHC_HCCPARAMS_OFFSET);
|
||||
Ehc->CapLen = EhcReadCapRegister (Ehc, EHC_CAPLENGTH_OFFSET) & 0x0FF;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcCreateUsb2Hc: capability length %d\n", Ehc->CapLen));
|
||||
DEBUG ((DEBUG_INFO, "EhcCreateUsb2Hc: capability length %d\n", Ehc->CapLen));
|
||||
|
||||
//
|
||||
// EHCI Controllers with a CapLen of 0 are ignored.
|
||||
|
@ -1723,7 +1723,7 @@ EhcDriverBindingStart (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcDriverBindingStart: failed to enable controller\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcDriverBindingStart: failed to enable controller\n"));
|
||||
goto CLOSE_PCIIO;
|
||||
}
|
||||
|
||||
|
@ -1834,7 +1834,7 @@ EhcDriverBindingStart (
|
|||
Ehc = EhcCreateUsb2Hc (PciIo, HcDevicePath, OriginalPciAttributes);
|
||||
|
||||
if (Ehc == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcDriverBindingStart: failed to create USB2_HC\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcDriverBindingStart: failed to create USB2_HC\n"));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto CLOSE_PCIIO;
|
||||
|
@ -1854,7 +1854,7 @@ EhcDriverBindingStart (
|
|||
if (!EFI_ERROR (Status)) {
|
||||
Ehc->Support64BitDma = TRUE;
|
||||
} else {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"%a: failed to enable 64-bit DMA on 64-bit capable controller @ %p (%r)\n",
|
||||
__FUNCTION__, Controller, Status));
|
||||
}
|
||||
|
@ -1868,7 +1868,7 @@ EhcDriverBindingStart (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcDriverBindingStart: failed to install USB2_HC Protocol\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcDriverBindingStart: failed to install USB2_HC Protocol\n"));
|
||||
goto FREE_POOL;
|
||||
}
|
||||
|
||||
|
@ -1887,7 +1887,7 @@ EhcDriverBindingStart (
|
|||
Status = EhcInitHC (Ehc);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcDriverBindingStart: failed to init host controller\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcDriverBindingStart: failed to init host controller\n"));
|
||||
goto UNINSTALL_USBHC;
|
||||
}
|
||||
|
||||
|
@ -1897,7 +1897,7 @@ EhcDriverBindingStart (
|
|||
Status = gBS->SetTimer (Ehc->PollTimer, TimerPeriodic, EHC_ASYNC_POLL_INTERVAL);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcDriverBindingStart: failed to start async interrupt monitor\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcDriverBindingStart: failed to start async interrupt monitor\n"));
|
||||
|
||||
EhcHaltHC (Ehc, EHC_GENERIC_TIMEOUT);
|
||||
goto UNINSTALL_USBHC;
|
||||
|
@ -1938,7 +1938,7 @@ EhcDriverBindingStart (
|
|||
);
|
||||
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcDriverBindingStart: EHCI started for controller @ %p\n", Controller));
|
||||
DEBUG ((DEBUG_INFO, "EhcDriverBindingStart: EHCI started for controller @ %p\n", Controller));
|
||||
return EFI_SUCCESS;
|
||||
|
||||
UNINSTALL_USBHC:
|
||||
|
@ -2083,4 +2083,3 @@ EhcDriverBindingStop (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -23,38 +23,38 @@ EhcDumpStatus (
|
|||
)
|
||||
{
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_DO_PING)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Do_Ping"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Do_Ping"));
|
||||
} else {
|
||||
DEBUG ((EFI_D_VERBOSE, " Do_Out"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Do_Out"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_DO_CS)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Do_CS"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Do_CS"));
|
||||
} else {
|
||||
DEBUG ((EFI_D_VERBOSE, " Do_SS"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Do_SS"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_TRANS_ERR)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Transfer_Error"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Transfer_Error"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_BABBLE_ERR)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Babble_Error"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Babble_Error"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_BUFF_ERR)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Buffer_Error"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Buffer_Error"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_HALTED)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Halted"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Halted"));
|
||||
}
|
||||
|
||||
if (EHC_BIT_IS_SET (State, QTD_STAT_ACTIVE)) {
|
||||
DEBUG ((EFI_D_VERBOSE, " Active"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Active"));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "\n"));
|
||||
}
|
||||
|
||||
|
||||
|
@ -75,37 +75,37 @@ EhcDumpQtd (
|
|||
UINTN Index;
|
||||
|
||||
if (Msg != NULL) {
|
||||
DEBUG ((EFI_D_VERBOSE, Msg));
|
||||
DEBUG ((DEBUG_VERBOSE, Msg));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Queue TD @ 0x%p, data length %d\n", Qtd, (UINT32)Qtd->DataLen));
|
||||
DEBUG ((DEBUG_VERBOSE, "Queue TD @ 0x%p, data length %d\n", Qtd, (UINT32)Qtd->DataLen));
|
||||
|
||||
QtdHw = &Qtd->QtdHw;
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Next QTD : %x\n", QtdHw->NextQtd));
|
||||
DEBUG ((EFI_D_VERBOSE, "AltNext QTD : %x\n", QtdHw->AltNext));
|
||||
DEBUG ((EFI_D_VERBOSE, "Status : %x\n", QtdHw->Status));
|
||||
DEBUG ((DEBUG_VERBOSE, "Next QTD : %x\n", QtdHw->NextQtd));
|
||||
DEBUG ((DEBUG_VERBOSE, "AltNext QTD : %x\n", QtdHw->AltNext));
|
||||
DEBUG ((DEBUG_VERBOSE, "Status : %x\n", QtdHw->Status));
|
||||
EhcDumpStatus (QtdHw->Status);
|
||||
|
||||
if (QtdHw->Pid == QTD_PID_SETUP) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : Setup\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : Setup\n"));
|
||||
|
||||
} else if (QtdHw->Pid == QTD_PID_INPUT) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : IN\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : IN\n"));
|
||||
|
||||
} else if (QtdHw->Pid == QTD_PID_OUTPUT) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : OUT\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : OUT\n"));
|
||||
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Error Count : %d\n", QtdHw->ErrCnt));
|
||||
DEBUG ((EFI_D_VERBOSE, "Current Page : %d\n", QtdHw->CurPage));
|
||||
DEBUG ((EFI_D_VERBOSE, "IOC : %d\n", QtdHw->Ioc));
|
||||
DEBUG ((EFI_D_VERBOSE, "Total Bytes : %d\n", QtdHw->TotalBytes));
|
||||
DEBUG ((EFI_D_VERBOSE, "Data Toggle : %d\n", QtdHw->DataToggle));
|
||||
DEBUG ((DEBUG_VERBOSE, "Error Count : %d\n", QtdHw->ErrCnt));
|
||||
DEBUG ((DEBUG_VERBOSE, "Current Page : %d\n", QtdHw->CurPage));
|
||||
DEBUG ((DEBUG_VERBOSE, "IOC : %d\n", QtdHw->Ioc));
|
||||
DEBUG ((DEBUG_VERBOSE, "Total Bytes : %d\n", QtdHw->TotalBytes));
|
||||
DEBUG ((DEBUG_VERBOSE, "Data Toggle : %d\n", QtdHw->DataToggle));
|
||||
|
||||
for (Index = 0; Index < 5; Index++) {
|
||||
DEBUG ((EFI_D_VERBOSE, "Page[%d] : 0x%x\n", (UINT32)Index, QtdHw->Page[Index]));
|
||||
DEBUG ((DEBUG_VERBOSE, "Page[%d] : 0x%x\n", (UINT32)Index, QtdHw->Page[Index]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -131,60 +131,60 @@ EhcDumpQh (
|
|||
UINTN Index;
|
||||
|
||||
if (Msg != NULL) {
|
||||
DEBUG ((EFI_D_VERBOSE, Msg));
|
||||
DEBUG ((DEBUG_VERBOSE, Msg));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Queue head @ 0x%p, interval %ld, next qh %p\n",
|
||||
DEBUG ((DEBUG_VERBOSE, "Queue head @ 0x%p, interval %ld, next qh %p\n",
|
||||
Qh, (UINT64)Qh->Interval, Qh->NextQh));
|
||||
|
||||
QhHw = &Qh->QhHw;
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Hoziontal link: %x\n", QhHw->HorizonLink));
|
||||
DEBUG ((EFI_D_VERBOSE, "Device address: %d\n", QhHw->DeviceAddr));
|
||||
DEBUG ((EFI_D_VERBOSE, "Inactive : %d\n", QhHw->Inactive));
|
||||
DEBUG ((EFI_D_VERBOSE, "EP number : %d\n", QhHw->EpNum));
|
||||
DEBUG ((EFI_D_VERBOSE, "EP speed : %d\n", QhHw->EpSpeed));
|
||||
DEBUG ((EFI_D_VERBOSE, "DT control : %d\n", QhHw->DtCtrl));
|
||||
DEBUG ((EFI_D_VERBOSE, "Reclaim head : %d\n", QhHw->ReclaimHead));
|
||||
DEBUG ((EFI_D_VERBOSE, "Max packet len: %d\n", QhHw->MaxPacketLen));
|
||||
DEBUG ((EFI_D_VERBOSE, "Ctrl EP : %d\n", QhHw->CtrlEp));
|
||||
DEBUG ((EFI_D_VERBOSE, "Nak reload : %d\n", QhHw->NakReload));
|
||||
DEBUG ((DEBUG_VERBOSE, "Hoziontal link: %x\n", QhHw->HorizonLink));
|
||||
DEBUG ((DEBUG_VERBOSE, "Device address: %d\n", QhHw->DeviceAddr));
|
||||
DEBUG ((DEBUG_VERBOSE, "Inactive : %d\n", QhHw->Inactive));
|
||||
DEBUG ((DEBUG_VERBOSE, "EP number : %d\n", QhHw->EpNum));
|
||||
DEBUG ((DEBUG_VERBOSE, "EP speed : %d\n", QhHw->EpSpeed));
|
||||
DEBUG ((DEBUG_VERBOSE, "DT control : %d\n", QhHw->DtCtrl));
|
||||
DEBUG ((DEBUG_VERBOSE, "Reclaim head : %d\n", QhHw->ReclaimHead));
|
||||
DEBUG ((DEBUG_VERBOSE, "Max packet len: %d\n", QhHw->MaxPacketLen));
|
||||
DEBUG ((DEBUG_VERBOSE, "Ctrl EP : %d\n", QhHw->CtrlEp));
|
||||
DEBUG ((DEBUG_VERBOSE, "Nak reload : %d\n", QhHw->NakReload));
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "SMask : %x\n", QhHw->SMask));
|
||||
DEBUG ((EFI_D_VERBOSE, "CMask : %x\n", QhHw->CMask));
|
||||
DEBUG ((EFI_D_VERBOSE, "Hub address : %d\n", QhHw->HubAddr));
|
||||
DEBUG ((EFI_D_VERBOSE, "Hub port : %d\n", QhHw->PortNum));
|
||||
DEBUG ((EFI_D_VERBOSE, "Multiplier : %d\n", QhHw->Multiplier));
|
||||
DEBUG ((DEBUG_VERBOSE, "SMask : %x\n", QhHw->SMask));
|
||||
DEBUG ((DEBUG_VERBOSE, "CMask : %x\n", QhHw->CMask));
|
||||
DEBUG ((DEBUG_VERBOSE, "Hub address : %d\n", QhHw->HubAddr));
|
||||
DEBUG ((DEBUG_VERBOSE, "Hub port : %d\n", QhHw->PortNum));
|
||||
DEBUG ((DEBUG_VERBOSE, "Multiplier : %d\n", QhHw->Multiplier));
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Cur QTD : %x\n", QhHw->CurQtd));
|
||||
DEBUG ((DEBUG_VERBOSE, "Cur QTD : %x\n", QhHw->CurQtd));
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Next QTD : %x\n", QhHw->NextQtd));
|
||||
DEBUG ((EFI_D_VERBOSE, "AltNext QTD : %x\n", QhHw->AltQtd));
|
||||
DEBUG ((EFI_D_VERBOSE, "Status : %x\n", QhHw->Status));
|
||||
DEBUG ((DEBUG_VERBOSE, "Next QTD : %x\n", QhHw->NextQtd));
|
||||
DEBUG ((DEBUG_VERBOSE, "AltNext QTD : %x\n", QhHw->AltQtd));
|
||||
DEBUG ((DEBUG_VERBOSE, "Status : %x\n", QhHw->Status));
|
||||
|
||||
EhcDumpStatus (QhHw->Status);
|
||||
|
||||
if (QhHw->Pid == QTD_PID_SETUP) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : Setup\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : Setup\n"));
|
||||
|
||||
} else if (QhHw->Pid == QTD_PID_INPUT) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : IN\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : IN\n"));
|
||||
|
||||
} else if (QhHw->Pid == QTD_PID_OUTPUT) {
|
||||
DEBUG ((EFI_D_VERBOSE, "PID : OUT\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "PID : OUT\n"));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "Error Count : %d\n", QhHw->ErrCnt));
|
||||
DEBUG ((EFI_D_VERBOSE, "Current Page : %d\n", QhHw->CurPage));
|
||||
DEBUG ((EFI_D_VERBOSE, "IOC : %d\n", QhHw->Ioc));
|
||||
DEBUG ((EFI_D_VERBOSE, "Total Bytes : %d\n", QhHw->TotalBytes));
|
||||
DEBUG ((EFI_D_VERBOSE, "Data Toggle : %d\n", QhHw->DataToggle));
|
||||
DEBUG ((DEBUG_VERBOSE, "Error Count : %d\n", QhHw->ErrCnt));
|
||||
DEBUG ((DEBUG_VERBOSE, "Current Page : %d\n", QhHw->CurPage));
|
||||
DEBUG ((DEBUG_VERBOSE, "IOC : %d\n", QhHw->Ioc));
|
||||
DEBUG ((DEBUG_VERBOSE, "Total Bytes : %d\n", QhHw->TotalBytes));
|
||||
DEBUG ((DEBUG_VERBOSE, "Data Toggle : %d\n", QhHw->DataToggle));
|
||||
|
||||
for (Index = 0; Index < 5; Index++) {
|
||||
DEBUG ((EFI_D_VERBOSE, "Page[%d] : 0x%x\n", Index, QhHw->Page[Index]));
|
||||
DEBUG ((DEBUG_VERBOSE, "Page[%d] : 0x%x\n", Index, QhHw->Page[Index]));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "\n"));
|
||||
|
||||
BASE_LIST_FOR_EACH (Entry, &Qh->Qtds) {
|
||||
Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
|
||||
|
@ -214,13 +214,11 @@ EhcDumpBuf (
|
|||
|
||||
for (Index = 0; Index < Len; Index++) {
|
||||
if (Index % 16 == 0) {
|
||||
DEBUG ((EFI_D_VERBOSE,"\n"));
|
||||
DEBUG ((DEBUG_VERBOSE,"\n"));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "%02x ", Buf[Index]));
|
||||
DEBUG ((DEBUG_VERBOSE, "%02x ", Buf[Index]));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "\n"));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ EhcReadCapRegister (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcReadCapRegister: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "EhcReadCapRegister: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFF;
|
||||
}
|
||||
|
||||
|
@ -76,7 +76,7 @@ EhcReadDbgRegister (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcReadDbgRegister: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "EhcReadDbgRegister: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFF;
|
||||
}
|
||||
|
||||
|
@ -168,7 +168,7 @@ EhcReadOpReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcReadOpReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "EhcReadOpReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFF;
|
||||
}
|
||||
|
||||
|
@ -205,7 +205,7 @@ EhcWriteOpReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "EhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -310,7 +310,7 @@ EhcClearLegacySupport (
|
|||
UINT32 Value;
|
||||
UINT32 TimeOut;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "EhcClearLegacySupport: called to clear legacy support\n"));
|
||||
DEBUG ((DEBUG_INFO, "EhcClearLegacySupport: called to clear legacy support\n"));
|
||||
|
||||
PciIo = Ehc->PciIo;
|
||||
ExtendCap = (Ehc->HcCapParams >> 8) & 0xFF;
|
||||
|
@ -654,14 +654,14 @@ EhcInitHC (
|
|||
Status = EhcEnablePeriodSchd (Ehc, EHC_GENERIC_TIMEOUT);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcInitHC: failed to enable period schedule\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcInitHC: failed to enable period schedule\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = EhcEnableAsyncSchd (Ehc, EHC_GENERIC_TIMEOUT);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcInitHC: failed to enable async schedule\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcInitHC: failed to enable async schedule\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -377,7 +377,7 @@ EhcUnlinkQhFromAsync (
|
|||
Status = EhcSetAndWaitDoorBell (Ehc, EHC_GENERIC_TIMEOUT);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcUnlinkQhFromAsync: Failed to synchronize with doorbell\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcUnlinkQhFromAsync: Failed to synchronize with doorbell\n"));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -636,13 +636,13 @@ EhcCheckUrbResult (
|
|||
//
|
||||
PciAddr = UsbHcGetPciAddressForHostMem (Ehc->MemPool, Ehc->ShortReadStop, sizeof (EHC_QTD));
|
||||
if (QtdHw->AltNext == QTD_LINK (PciAddr, FALSE)) {
|
||||
DEBUG ((EFI_D_VERBOSE, "EhcCheckUrbResult: Short packet read, break\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "EhcCheckUrbResult: Short packet read, break\n"));
|
||||
|
||||
Finished = TRUE;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, "EhcCheckUrbResult: Short packet read, continue\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "EhcCheckUrbResult: Short packet read, continue\n"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -713,13 +713,13 @@ EhcExecTransfer (
|
|||
}
|
||||
|
||||
if (!Finished) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcExecTransfer: transfer not finished in %dms\n", (UINT32)TimeOut));
|
||||
DEBUG ((DEBUG_ERROR, "EhcExecTransfer: transfer not finished in %dms\n", (UINT32)TimeOut));
|
||||
EhcDumpQh (Urb->Qh, NULL, FALSE);
|
||||
|
||||
Status = EFI_TIMEOUT;
|
||||
|
||||
} else if (Urb->Result != EFI_USB_NOERROR) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcExecTransfer: transfer failed with %x\n", Urb->Result));
|
||||
DEBUG ((DEBUG_ERROR, "EhcExecTransfer: transfer failed with %x\n", Urb->Result));
|
||||
EhcDumpQh (Urb->Qh, NULL, FALSE);
|
||||
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
|
@ -1069,7 +1069,7 @@ EhcMonitorAsyncRequests (
|
|||
//
|
||||
Status = EhcFlushAsyncIntMap (Ehc, Urb);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcMonitorAsyncRequests: Fail to Flush AsyncInt Mapped Memeory\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcMonitorAsyncRequests: Fail to Flush AsyncInt Mapped Memeory\n"));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -470,7 +470,7 @@ UsbHcAllocateMem (
|
|||
NewBlock = UsbHcAllocMemBlock (Pool, Pages);
|
||||
|
||||
if (NewBlock == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ AtapiPeimEntry (
|
|||
AtapiBlkIoDev->PpiDescriptor2.Guid = &gEfiPeiVirtualBlockIo2PpiGuid;
|
||||
AtapiBlkIoDev->PpiDescriptor2.Ppi = &AtapiBlkIoDev->AtapiBlkIo2;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Atatpi Device Count is %d\n", AtapiBlkIoDev->DeviceCount));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi Device Count is %d\n", AtapiBlkIoDev->DeviceCount));
|
||||
if (AtapiBlkIoDev->DeviceCount != 0) {
|
||||
Status = PeiServicesInstallPpi (&AtapiBlkIoDev->PpiDescriptor);
|
||||
if (EFI_ERROR (Status)) {
|
||||
|
@ -189,11 +189,11 @@ AtapiGetBlockDeviceMediaInfo (
|
|||
//
|
||||
// probe media and retrieve latest media information
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo DevicePosition is %d\n", AtapiBlkIoDev->DeviceInfo[Index].DevicePosition));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo DeviceType is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.DeviceType));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo MediaPresent is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.MediaPresent));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo BlockSize is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.BlockSize));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo LastBlock is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.LastBlock));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo DevicePosition is %d\n", AtapiBlkIoDev->DeviceInfo[Index].DevicePosition));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo DeviceType is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.DeviceType));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo MediaPresent is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.MediaPresent));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo BlockSize is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.BlockSize));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo LastBlock is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.LastBlock));
|
||||
|
||||
Status = DetectMedia (
|
||||
AtapiBlkIoDev,
|
||||
|
@ -205,11 +205,11 @@ AtapiGetBlockDeviceMediaInfo (
|
|||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo DevicePosition is %d\n", AtapiBlkIoDev->DeviceInfo[Index].DevicePosition));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo DeviceType is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.DeviceType));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo MediaPresent is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.MediaPresent));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo BlockSize is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.BlockSize));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi GetInfo LastBlock is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.LastBlock));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo DevicePosition is %d\n", AtapiBlkIoDev->DeviceInfo[Index].DevicePosition));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo DeviceType is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.DeviceType));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo MediaPresent is %d\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.MediaPresent));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo BlockSize is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.BlockSize));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi GetInfo LastBlock is 0x%x\n", AtapiBlkIoDev->DeviceInfo[Index].MediaInfo.LastBlock));
|
||||
|
||||
//
|
||||
// Get media info from AtapiBlkIoDev
|
||||
|
@ -549,7 +549,7 @@ AtapiEnumerateDevices (
|
|||
// Allow SATA Devices to spin-up. This is needed if
|
||||
// SEC and PEI phase is too short, for example Release Build.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Delay for %d seconds for SATA devices to spin-up\n", PcdGet16 (PcdSataSpinUpDelayInSecForRecoveryPath)));
|
||||
DEBUG ((DEBUG_INFO, "Delay for %d seconds for SATA devices to spin-up\n", PcdGet16 (PcdSataSpinUpDelayInSecForRecoveryPath)));
|
||||
MicroSecondDelay (PcdGet16 (PcdSataSpinUpDelayInSecForRecoveryPath) * 1000 * 1000); //
|
||||
|
||||
//
|
||||
|
@ -600,10 +600,10 @@ AtapiEnumerateDevices (
|
|||
CopyMem (&(AtapiBlkIoDev->DeviceInfo[DeviceCount].MediaInfo), &MediaInfo, sizeof (MediaInfo));
|
||||
CopyMem (&(AtapiBlkIoDev->DeviceInfo[DeviceCount].MediaInfo2), &MediaInfo2, sizeof (MediaInfo2));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Atatpi Device Position is %d\n", DevicePosition));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi DeviceType is %d\n", MediaInfo.DeviceType));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi MediaPresent is %d\n", MediaInfo.MediaPresent));
|
||||
DEBUG ((EFI_D_INFO, "Atatpi BlockSize is 0x%x\n", MediaInfo.BlockSize));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi Device Position is %d\n", DevicePosition));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi DeviceType is %d\n", MediaInfo.DeviceType));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi MediaPresent is %d\n", MediaInfo.MediaPresent));
|
||||
DEBUG ((DEBUG_INFO, "Atatpi BlockSize is 0x%x\n", MediaInfo.BlockSize));
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
AtapiBlkIoDev->DeviceInfo[DeviceCount].MediaInfo.MediaPresent = FALSE;
|
||||
|
@ -1764,7 +1764,7 @@ DetectMedia (
|
|||
SenseBuffers,
|
||||
&SenseCounts
|
||||
);
|
||||
DEBUG ((EFI_D_INFO, "Atapi Request Sense Count is %d\n", SenseCounts));
|
||||
DEBUG ((DEBUG_INFO, "Atapi Request Sense Count is %d\n", SenseCounts));
|
||||
if (IsDeviceStateUnclear (SenseBuffers, SenseCounts) || IsNoMedia (SenseBuffers, SenseCounts)) {
|
||||
//
|
||||
// We are not sure whether the media is present or not, try again
|
||||
|
|
|
@ -271,11 +271,11 @@ EnumerateNvmeDevNamespace (
|
|||
//
|
||||
// Dump NvmExpress Identify Namespace Data
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, " == NVME IDENTIFY NAMESPACE [%d] DATA ==\n", NamespaceId));
|
||||
DEBUG ((EFI_D_INFO, " NSZE : 0x%x\n", NamespaceData->Nsze));
|
||||
DEBUG ((EFI_D_INFO, " NCAP : 0x%x\n", NamespaceData->Ncap));
|
||||
DEBUG ((EFI_D_INFO, " NUSE : 0x%x\n", NamespaceData->Nuse));
|
||||
DEBUG ((EFI_D_INFO, " LBAF0.LBADS : 0x%x\n", (NamespaceData->LbaFormat[0].Lbads)));
|
||||
DEBUG ((DEBUG_INFO, " == NVME IDENTIFY NAMESPACE [%d] DATA ==\n", NamespaceId));
|
||||
DEBUG ((DEBUG_INFO, " NSZE : 0x%x\n", NamespaceData->Nsze));
|
||||
DEBUG ((DEBUG_INFO, " NCAP : 0x%x\n", NamespaceData->Ncap));
|
||||
DEBUG ((DEBUG_INFO, " NUSE : 0x%x\n", NamespaceData->Nuse));
|
||||
DEBUG ((DEBUG_INFO, " LBAF0.LBADS : 0x%x\n", (NamespaceData->LbaFormat[0].Lbads)));
|
||||
|
||||
//
|
||||
// Build controller name for Component Name (2) protocol.
|
||||
|
@ -906,7 +906,7 @@ NvmExpressDriverBindingStart (
|
|||
UINTN Bytes;
|
||||
EFI_NVM_EXPRESS_PASS_THRU_PROTOCOL *Passthru;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "NvmExpressDriverBindingStart: start\n"));
|
||||
DEBUG ((DEBUG_INFO, "NvmExpressDriverBindingStart: start\n"));
|
||||
|
||||
Private = NULL;
|
||||
Passthru = NULL;
|
||||
|
@ -944,7 +944,7 @@ NvmExpressDriverBindingStart (
|
|||
Private = AllocateZeroPool (sizeof (NVME_CONTROLLER_PRIVATE_DATA));
|
||||
|
||||
if (Private == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "NvmExpressDriverBindingStart: allocating pool for Nvme Private Data failed!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "NvmExpressDriverBindingStart: allocating pool for Nvme Private Data failed!\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto Exit;
|
||||
}
|
||||
|
@ -1084,7 +1084,7 @@ NvmExpressDriverBindingStart (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "NvmExpressDriverBindingStart: end successfully\n"));
|
||||
DEBUG ((DEBUG_INFO, "NvmExpressDriverBindingStart: end successfully\n"));
|
||||
return EFI_SUCCESS;
|
||||
|
||||
Exit:
|
||||
|
@ -1122,7 +1122,7 @@ Exit:
|
|||
Controller
|
||||
);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "NvmExpressDriverBindingStart: end with %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "NvmExpressDriverBindingStart: end with %r\n", Status));
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
|
|
@ -128,13 +128,13 @@ WriteNvmeControllerConfiguration (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Cc.En: %d\n", Cc->En));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Css: %d\n", Cc->Css));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Mps: %d\n", Cc->Mps));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Ams: %d\n", Cc->Ams));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Shn: %d\n", Cc->Shn));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Iosqes: %d\n", Cc->Iosqes));
|
||||
DEBUG ((EFI_D_INFO, "Cc.Iocqes: %d\n", Cc->Iocqes));
|
||||
DEBUG ((DEBUG_INFO, "Cc.En: %d\n", Cc->En));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Css: %d\n", Cc->Css));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Mps: %d\n", Cc->Mps));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Ams: %d\n", Cc->Ams));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Shn: %d\n", Cc->Shn));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Iosqes: %d\n", Cc->Iosqes));
|
||||
DEBUG ((DEBUG_INFO, "Cc.Iocqes: %d\n", Cc->Iocqes));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -214,8 +214,8 @@ WriteNvmeAdminQueueAttributes (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Aqa.Asqs: %d\n", Aqa->Asqs));
|
||||
DEBUG ((EFI_D_INFO, "Aqa.Acqs: %d\n", Aqa->Acqs));
|
||||
DEBUG ((DEBUG_INFO, "Aqa.Asqs: %d\n", Aqa->Asqs));
|
||||
DEBUG ((DEBUG_INFO, "Aqa.Acqs: %d\n", Aqa->Acqs));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -257,7 +257,7 @@ WriteNvmeAdminSubmissionQueueBaseAddress (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Asq: %lx\n", *Asq));
|
||||
DEBUG ((DEBUG_INFO, "Asq: %lx\n", *Asq));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -300,7 +300,7 @@ WriteNvmeAdminCompletionQueueBaseAddress (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Acq: %lxh\n", *Acq));
|
||||
DEBUG ((DEBUG_INFO, "Acq: %lxh\n", *Acq));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -379,7 +379,7 @@ NvmeDisableController (
|
|||
);
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "NVMe controller is disabled with status [%r].\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "NVMe controller is disabled with status [%r].\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -453,7 +453,7 @@ NvmeEnableController (
|
|||
);
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "NVMe controller is enabled with status [%r].\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "NVMe controller is enabled with status [%r].\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -764,7 +764,7 @@ NvmeControllerInit (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "NvmeControllerInit: failed to enable controller\n"));
|
||||
DEBUG ((DEBUG_INFO, "NvmeControllerInit: failed to enable controller\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -778,7 +778,7 @@ NvmeControllerInit (
|
|||
NULL
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_WARN, "NvmeControllerInit: failed to enable 64-bit DMA (%r)\n", Status));
|
||||
DEBUG ((DEBUG_WARN, "NvmeControllerInit: failed to enable 64-bit DMA (%r)\n", Status));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -790,7 +790,7 @@ NvmeControllerInit (
|
|||
}
|
||||
|
||||
if (Private->Cap.Css != 0x01) {
|
||||
DEBUG ((EFI_D_INFO, "NvmeControllerInit: the controller doesn't support NVMe command set\n"));
|
||||
DEBUG ((DEBUG_INFO, "NvmeControllerInit: the controller doesn't support NVMe command set\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -854,15 +854,15 @@ NvmeControllerInit (
|
|||
Private->CqBuffer[2] = (NVME_CQ *)(UINTN)(Private->Buffer + 5 * EFI_PAGE_SIZE);
|
||||
Private->CqBufferPciAddr[2] = (NVME_CQ *)(UINTN)(Private->BufferPciAddr + 5 * EFI_PAGE_SIZE);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Private->Buffer = [%016X]\n", (UINT64)(UINTN)Private->Buffer));
|
||||
DEBUG ((EFI_D_INFO, "Admin Submission Queue size (Aqa.Asqs) = [%08X]\n", Aqa.Asqs));
|
||||
DEBUG ((EFI_D_INFO, "Admin Completion Queue size (Aqa.Acqs) = [%08X]\n", Aqa.Acqs));
|
||||
DEBUG ((EFI_D_INFO, "Admin Submission Queue (SqBuffer[0]) = [%016X]\n", Private->SqBuffer[0]));
|
||||
DEBUG ((EFI_D_INFO, "Admin Completion Queue (CqBuffer[0]) = [%016X]\n", Private->CqBuffer[0]));
|
||||
DEBUG ((EFI_D_INFO, "Sync I/O Submission Queue (SqBuffer[1]) = [%016X]\n", Private->SqBuffer[1]));
|
||||
DEBUG ((EFI_D_INFO, "Sync I/O Completion Queue (CqBuffer[1]) = [%016X]\n", Private->CqBuffer[1]));
|
||||
DEBUG ((EFI_D_INFO, "Async I/O Submission Queue (SqBuffer[2]) = [%016X]\n", Private->SqBuffer[2]));
|
||||
DEBUG ((EFI_D_INFO, "Async I/O Completion Queue (CqBuffer[2]) = [%016X]\n", Private->CqBuffer[2]));
|
||||
DEBUG ((DEBUG_INFO, "Private->Buffer = [%016X]\n", (UINT64)(UINTN)Private->Buffer));
|
||||
DEBUG ((DEBUG_INFO, "Admin Submission Queue size (Aqa.Asqs) = [%08X]\n", Aqa.Asqs));
|
||||
DEBUG ((DEBUG_INFO, "Admin Completion Queue size (Aqa.Acqs) = [%08X]\n", Aqa.Acqs));
|
||||
DEBUG ((DEBUG_INFO, "Admin Submission Queue (SqBuffer[0]) = [%016X]\n", Private->SqBuffer[0]));
|
||||
DEBUG ((DEBUG_INFO, "Admin Completion Queue (CqBuffer[0]) = [%016X]\n", Private->CqBuffer[0]));
|
||||
DEBUG ((DEBUG_INFO, "Sync I/O Submission Queue (SqBuffer[1]) = [%016X]\n", Private->SqBuffer[1]));
|
||||
DEBUG ((DEBUG_INFO, "Sync I/O Completion Queue (CqBuffer[1]) = [%016X]\n", Private->CqBuffer[1]));
|
||||
DEBUG ((DEBUG_INFO, "Async I/O Submission Queue (SqBuffer[2]) = [%016X]\n", Private->SqBuffer[2]));
|
||||
DEBUG ((DEBUG_INFO, "Async I/O Completion Queue (CqBuffer[2]) = [%016X]\n", Private->CqBuffer[2]));
|
||||
|
||||
//
|
||||
// Program admin queue attributes.
|
||||
|
@ -925,20 +925,20 @@ NvmeControllerInit (
|
|||
Sn[20] = 0;
|
||||
CopyMem (Mn, Private->ControllerData->Mn, sizeof (Private->ControllerData->Mn));
|
||||
Mn[40] = 0;
|
||||
DEBUG ((EFI_D_INFO, " == NVME IDENTIFY CONTROLLER DATA ==\n"));
|
||||
DEBUG ((EFI_D_INFO, " PCI VID : 0x%x\n", Private->ControllerData->Vid));
|
||||
DEBUG ((EFI_D_INFO, " PCI SSVID : 0x%x\n", Private->ControllerData->Ssvid));
|
||||
DEBUG ((EFI_D_INFO, " SN : %a\n", Sn));
|
||||
DEBUG ((EFI_D_INFO, " MN : %a\n", Mn));
|
||||
DEBUG ((EFI_D_INFO, " FR : 0x%x\n", *((UINT64*)Private->ControllerData->Fr)));
|
||||
DEBUG ((DEBUG_INFO, " == NVME IDENTIFY CONTROLLER DATA ==\n"));
|
||||
DEBUG ((DEBUG_INFO, " PCI VID : 0x%x\n", Private->ControllerData->Vid));
|
||||
DEBUG ((DEBUG_INFO, " PCI SSVID : 0x%x\n", Private->ControllerData->Ssvid));
|
||||
DEBUG ((DEBUG_INFO, " SN : %a\n", Sn));
|
||||
DEBUG ((DEBUG_INFO, " MN : %a\n", Mn));
|
||||
DEBUG ((DEBUG_INFO, " FR : 0x%x\n", *((UINT64*)Private->ControllerData->Fr)));
|
||||
DEBUG ((DEBUG_INFO, " TNVMCAP (high 8-byte) : 0x%lx\n", *((UINT64*)(Private->ControllerData->Tnvmcap + 8))));
|
||||
DEBUG ((DEBUG_INFO, " TNVMCAP (low 8-byte) : 0x%lx\n", *((UINT64*)Private->ControllerData->Tnvmcap)));
|
||||
DEBUG ((EFI_D_INFO, " RAB : 0x%x\n", Private->ControllerData->Rab));
|
||||
DEBUG ((EFI_D_INFO, " IEEE : 0x%x\n", *(UINT32*)Private->ControllerData->Ieee_oui));
|
||||
DEBUG ((EFI_D_INFO, " AERL : 0x%x\n", Private->ControllerData->Aerl));
|
||||
DEBUG ((EFI_D_INFO, " SQES : 0x%x\n", Private->ControllerData->Sqes));
|
||||
DEBUG ((EFI_D_INFO, " CQES : 0x%x\n", Private->ControllerData->Cqes));
|
||||
DEBUG ((EFI_D_INFO, " NN : 0x%x\n", Private->ControllerData->Nn));
|
||||
DEBUG ((DEBUG_INFO, " RAB : 0x%x\n", Private->ControllerData->Rab));
|
||||
DEBUG ((DEBUG_INFO, " IEEE : 0x%x\n", *(UINT32*)Private->ControllerData->Ieee_oui));
|
||||
DEBUG ((DEBUG_INFO, " AERL : 0x%x\n", Private->ControllerData->Aerl));
|
||||
DEBUG ((DEBUG_INFO, " SQES : 0x%x\n", Private->ControllerData->Sqes));
|
||||
DEBUG ((DEBUG_INFO, " CQES : 0x%x\n", Private->ControllerData->Cqes));
|
||||
DEBUG ((DEBUG_INFO, " NN : 0x%x\n", Private->ControllerData->Nn));
|
||||
|
||||
//
|
||||
// Create two I/O completion queues.
|
||||
|
|
|
@ -21,80 +21,80 @@ NvmeDumpStatus (
|
|||
IN NVME_CQ *Cq
|
||||
)
|
||||
{
|
||||
DEBUG ((EFI_D_VERBOSE, "Dump NVMe Completion Entry Status from [0x%x]:\n", Cq));
|
||||
DEBUG ((DEBUG_VERBOSE, "Dump NVMe Completion Entry Status from [0x%x]:\n", Cq));
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, " SQ Identifier : [0x%x], Phase Tag : [%d], Cmd Identifier : [0x%x]\n", Cq->Sqid, Cq->Pt, Cq->Cid));
|
||||
DEBUG ((DEBUG_VERBOSE, " SQ Identifier : [0x%x], Phase Tag : [%d], Cmd Identifier : [0x%x]\n", Cq->Sqid, Cq->Pt, Cq->Cid));
|
||||
|
||||
DEBUG ((EFI_D_VERBOSE, " NVMe Cmd Execution Result - "));
|
||||
DEBUG ((DEBUG_VERBOSE, " NVMe Cmd Execution Result - "));
|
||||
|
||||
switch (Cq->Sct) {
|
||||
case 0x0:
|
||||
switch (Cq->Sc) {
|
||||
case 0x0:
|
||||
DEBUG ((EFI_D_VERBOSE, "Successful Completion\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Successful Completion\n"));
|
||||
break;
|
||||
case 0x1:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Command Opcode\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Command Opcode\n"));
|
||||
break;
|
||||
case 0x2:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Field in Command\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Field in Command\n"));
|
||||
break;
|
||||
case 0x3:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command ID Conflict\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command ID Conflict\n"));
|
||||
break;
|
||||
case 0x4:
|
||||
DEBUG ((EFI_D_VERBOSE, "Data Transfer Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Data Transfer Error\n"));
|
||||
break;
|
||||
case 0x5:
|
||||
DEBUG ((EFI_D_VERBOSE, "Commands Aborted due to Power Loss Notification\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Commands Aborted due to Power Loss Notification\n"));
|
||||
break;
|
||||
case 0x6:
|
||||
DEBUG ((EFI_D_VERBOSE, "Internal Device Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Internal Device Error\n"));
|
||||
break;
|
||||
case 0x7:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command Abort Requested\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command Abort Requested\n"));
|
||||
break;
|
||||
case 0x8:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command Aborted due to SQ Deletion\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command Aborted due to SQ Deletion\n"));
|
||||
break;
|
||||
case 0x9:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command Aborted due to Failed Fused Command\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command Aborted due to Failed Fused Command\n"));
|
||||
break;
|
||||
case 0xA:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command Aborted due to Missing Fused Command\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command Aborted due to Missing Fused Command\n"));
|
||||
break;
|
||||
case 0xB:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Namespace or Format\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Namespace or Format\n"));
|
||||
break;
|
||||
case 0xC:
|
||||
DEBUG ((EFI_D_VERBOSE, "Command Sequence Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Command Sequence Error\n"));
|
||||
break;
|
||||
case 0xD:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid SGL Last Segment Descriptor\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid SGL Last Segment Descriptor\n"));
|
||||
break;
|
||||
case 0xE:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Number of SGL Descriptors\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Number of SGL Descriptors\n"));
|
||||
break;
|
||||
case 0xF:
|
||||
DEBUG ((EFI_D_VERBOSE, "Data SGL Length Invalid\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Data SGL Length Invalid\n"));
|
||||
break;
|
||||
case 0x10:
|
||||
DEBUG ((EFI_D_VERBOSE, "Metadata SGL Length Invalid\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Metadata SGL Length Invalid\n"));
|
||||
break;
|
||||
case 0x11:
|
||||
DEBUG ((EFI_D_VERBOSE, "SGL Descriptor Type Invalid\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "SGL Descriptor Type Invalid\n"));
|
||||
break;
|
||||
case 0x80:
|
||||
DEBUG ((EFI_D_VERBOSE, "LBA Out of Range\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "LBA Out of Range\n"));
|
||||
break;
|
||||
case 0x81:
|
||||
DEBUG ((EFI_D_VERBOSE, "Capacity Exceeded\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Capacity Exceeded\n"));
|
||||
break;
|
||||
case 0x82:
|
||||
DEBUG ((EFI_D_VERBOSE, "Namespace Not Ready\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Namespace Not Ready\n"));
|
||||
break;
|
||||
case 0x83:
|
||||
DEBUG ((EFI_D_VERBOSE, "Reservation Conflict\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Reservation Conflict\n"));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -102,61 +102,61 @@ NvmeDumpStatus (
|
|||
case 0x1:
|
||||
switch (Cq->Sc) {
|
||||
case 0x0:
|
||||
DEBUG ((EFI_D_VERBOSE, "Completion Queue Invalid\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Completion Queue Invalid\n"));
|
||||
break;
|
||||
case 0x1:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Queue Identifier\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Queue Identifier\n"));
|
||||
break;
|
||||
case 0x2:
|
||||
DEBUG ((EFI_D_VERBOSE, "Maximum Queue Size Exceeded\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Maximum Queue Size Exceeded\n"));
|
||||
break;
|
||||
case 0x3:
|
||||
DEBUG ((EFI_D_VERBOSE, "Abort Command Limit Exceeded\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Abort Command Limit Exceeded\n"));
|
||||
break;
|
||||
case 0x5:
|
||||
DEBUG ((EFI_D_VERBOSE, "Asynchronous Event Request Limit Exceeded\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Asynchronous Event Request Limit Exceeded\n"));
|
||||
break;
|
||||
case 0x6:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Firmware Slot\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Firmware Slot\n"));
|
||||
break;
|
||||
case 0x7:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Firmware Image\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Firmware Image\n"));
|
||||
break;
|
||||
case 0x8:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Interrupt Vector\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Interrupt Vector\n"));
|
||||
break;
|
||||
case 0x9:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Log Page\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Log Page\n"));
|
||||
break;
|
||||
case 0xA:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Format\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Format\n"));
|
||||
break;
|
||||
case 0xB:
|
||||
DEBUG ((EFI_D_VERBOSE, "Firmware Application Requires Conventional Reset\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Firmware Application Requires Conventional Reset\n"));
|
||||
break;
|
||||
case 0xC:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Queue Deletion\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Queue Deletion\n"));
|
||||
break;
|
||||
case 0xD:
|
||||
DEBUG ((EFI_D_VERBOSE, "Feature Identifier Not Saveable\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Feature Identifier Not Saveable\n"));
|
||||
break;
|
||||
case 0xE:
|
||||
DEBUG ((EFI_D_VERBOSE, "Feature Not Changeable\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Feature Not Changeable\n"));
|
||||
break;
|
||||
case 0xF:
|
||||
DEBUG ((EFI_D_VERBOSE, "Feature Not Namespace Specific\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Feature Not Namespace Specific\n"));
|
||||
break;
|
||||
case 0x10:
|
||||
DEBUG ((EFI_D_VERBOSE, "Firmware Application Requires NVM Subsystem Reset\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Firmware Application Requires NVM Subsystem Reset\n"));
|
||||
break;
|
||||
case 0x80:
|
||||
DEBUG ((EFI_D_VERBOSE, "Conflicting Attributes\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Conflicting Attributes\n"));
|
||||
break;
|
||||
case 0x81:
|
||||
DEBUG ((EFI_D_VERBOSE, "Invalid Protection Information\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Invalid Protection Information\n"));
|
||||
break;
|
||||
case 0x82:
|
||||
DEBUG ((EFI_D_VERBOSE, "Attempted Write to Read Only Range\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Attempted Write to Read Only Range\n"));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -164,25 +164,25 @@ NvmeDumpStatus (
|
|||
case 0x2:
|
||||
switch (Cq->Sc) {
|
||||
case 0x80:
|
||||
DEBUG ((EFI_D_VERBOSE, "Write Fault\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Write Fault\n"));
|
||||
break;
|
||||
case 0x81:
|
||||
DEBUG ((EFI_D_VERBOSE, "Unrecovered Read Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Unrecovered Read Error\n"));
|
||||
break;
|
||||
case 0x82:
|
||||
DEBUG ((EFI_D_VERBOSE, "End-to-end Guard Check Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "End-to-end Guard Check Error\n"));
|
||||
break;
|
||||
case 0x83:
|
||||
DEBUG ((EFI_D_VERBOSE, "End-to-end Application Tag Check Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "End-to-end Application Tag Check Error\n"));
|
||||
break;
|
||||
case 0x84:
|
||||
DEBUG ((EFI_D_VERBOSE, "End-to-end Reference Tag Check Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "End-to-end Reference Tag Check Error\n"));
|
||||
break;
|
||||
case 0x85:
|
||||
DEBUG ((EFI_D_VERBOSE, "Compare Failure\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Compare Failure\n"));
|
||||
break;
|
||||
case 0x86:
|
||||
DEBUG ((EFI_D_VERBOSE, "Access Denied\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Access Denied\n"));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -268,7 +268,7 @@ NvmeCreatePrpList (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status) || (Bytes != EFI_PAGES_TO_SIZE (*PrpListNo))) {
|
||||
DEBUG ((EFI_D_ERROR, "NvmeCreatePrpList: create PrpList failure!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "NvmeCreatePrpList: create PrpList failure!\n"));
|
||||
goto EXIT;
|
||||
}
|
||||
//
|
||||
|
@ -578,7 +578,7 @@ NvmExpressPassThru (
|
|||
//
|
||||
ASSERT (Sq->Psdt == 0);
|
||||
if (Sq->Psdt != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "NvmExpressPassThru: doesn't support SGL mechanism\n"));
|
||||
DEBUG ((DEBUG_ERROR, "NvmExpressPassThru: doesn't support SGL mechanism\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -1182,4 +1182,3 @@ Exit:
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -1003,7 +1003,7 @@ PciHostBridgeAdjustAllocation (
|
|||
Status = RejectPciDevice (PciResNode->PciDev);
|
||||
if (Status == EFI_SUCCESS) {
|
||||
DEBUG ((
|
||||
EFI_D_ERROR,
|
||||
DEBUG_ERROR,
|
||||
"PciBus: [%02x|%02x|%02x] was rejected due to resource confliction.\n",
|
||||
PciResNode->PciDev->BusNumber, PciResNode->PciDev->DeviceNumber, PciResNode->PciDev->FunctionNumber
|
||||
));
|
||||
|
@ -2207,4 +2207,3 @@ AddHostBridgeEnumerator (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -231,7 +231,7 @@ PciSearchDevice (
|
|||
PciIoDevice = NULL;
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"PciBus: Discovered %s @ [%02x|%02x|%02x]\n",
|
||||
IS_PCI_BRIDGE (Pci) ? L"PPB" :
|
||||
IS_CARDBUS_BRIDGE (Pci) ? L"P2C" :
|
||||
|
@ -398,7 +398,7 @@ DumpPpbPaddingResource (
|
|||
|
||||
if ((Type != PciBarTypeUnknown) && ((ResourceType == PciBarTypeUnknown) || (ResourceType == Type))) {
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" Padding: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx\n",
|
||||
mBarTypeStr[Type], Descriptor->AddrRangeMax, Descriptor->AddrLen
|
||||
));
|
||||
|
@ -425,7 +425,7 @@ DumpPciBars (
|
|||
}
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" BAR[%d]: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx;\tOffset = 0x%02x\n",
|
||||
Index, mBarTypeStr[MIN (PciIoDevice->PciBar[Index].BarType, PciBarTypeMaxType)],
|
||||
PciIoDevice->PciBar[Index].Alignment, PciIoDevice->PciBar[Index].Length, PciIoDevice->PciBar[Index].Offset
|
||||
|
@ -438,13 +438,13 @@ DumpPciBars (
|
|||
}
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" VFBAR[%d]: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx;\tOffset = 0x%02x\n",
|
||||
Index, mBarTypeStr[MIN (PciIoDevice->VfPciBar[Index].BarType, PciBarTypeMaxType)],
|
||||
PciIoDevice->VfPciBar[Index].Alignment, PciIoDevice->VfPciBar[Index].Length, PciIoDevice->VfPciBar[Index].Offset
|
||||
));
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "\n"));
|
||||
DEBUG ((DEBUG_INFO, "\n"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1903,7 +1903,7 @@ PciParseBar (
|
|||
// Fix the length to support some special 64 bit BAR
|
||||
//
|
||||
if (Value == 0) {
|
||||
DEBUG ((EFI_D_INFO, "[PciBus]BAR probing for upper 32bit of MEM64 BAR returns 0, change to 0xFFFFFFFF.\n"));
|
||||
DEBUG ((DEBUG_INFO, "[PciBus]BAR probing for upper 32bit of MEM64 BAR returns 0, change to 0xFFFFFFFF.\n"));
|
||||
Value = (UINT32) -1;
|
||||
} else {
|
||||
Value |= ((UINT32)(-1) << HighBitSet32 (Value));
|
||||
|
@ -2282,7 +2282,7 @@ CreatePciIoDevice (
|
|||
&Data32
|
||||
);
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" ARI: forwarding enabled for PPB[%02x:%02x:%02x]\n",
|
||||
Bridge->BusNumber,
|
||||
Bridge->DeviceNumber,
|
||||
|
@ -2291,7 +2291,7 @@ CreatePciIoDevice (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, " ARI: CapOffset = 0x%x\n", PciIoDevice->AriCapabilityOffset));
|
||||
DEBUG ((DEBUG_INFO, " ARI: CapOffset = 0x%x\n", PciIoDevice->AriCapabilityOffset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2401,12 +2401,12 @@ CreatePciIoDevice (
|
|||
PciIoDevice->ReservedBusNum = (UINT16)(EFI_PCI_BUS_OF_RID (LastVF) - Bus + 1);
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" SR-IOV: SupportedPageSize = 0x%x; SystemPageSize = 0x%x; FirstVFOffset = 0x%x;\n",
|
||||
SupportedPageSize, PciIoDevice->SystemPageSize >> 12, FirstVFOffset
|
||||
));
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
" InitialVFs = 0x%x; ReservedBusNum = 0x%x; CapOffset = 0x%x\n",
|
||||
PciIoDevice->InitialVFs, PciIoDevice->ReservedBusNum, PciIoDevice->SrIovCapabilityOffset
|
||||
));
|
||||
|
@ -2421,7 +2421,7 @@ CreatePciIoDevice (
|
|||
NULL
|
||||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, " MR-IOV: CapOffset = 0x%x\n", PciIoDevice->MrIovCapabilityOffset));
|
||||
DEBUG ((DEBUG_INFO, " MR-IOV: CapOffset = 0x%x\n", PciIoDevice->MrIovCapabilityOffset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2869,4 +2869,3 @@ ResetAllPpbBusNumber (
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -215,7 +215,7 @@ DumpBridgeResource (
|
|||
|
||||
if ((BridgeResource != NULL) && (BridgeResource->Length != 0)) {
|
||||
DEBUG ((
|
||||
EFI_D_INFO, "Type = %s; Base = 0x%lx;\tLength = 0x%lx;\tAlignment = 0x%lx\n",
|
||||
DEBUG_INFO, "Type = %s; Base = 0x%lx;\tLength = 0x%lx;\tAlignment = 0x%lx\n",
|
||||
mBarTypeStr[MIN (BridgeResource->ResType, PciBarTypeMaxType)],
|
||||
BridgeResource->PciDev->PciBar[BridgeResource->Bar].BaseAddress,
|
||||
BridgeResource->Length, BridgeResource->Alignment
|
||||
|
@ -228,7 +228,7 @@ DumpBridgeResource (
|
|||
if (Resource->ResourceUsage == PciResUsageTypical) {
|
||||
Bar = Resource->Virtual ? Resource->PciDev->VfPciBar : Resource->PciDev->PciBar;
|
||||
DEBUG ((
|
||||
EFI_D_INFO, " Base = 0x%lx;\tLength = 0x%lx;\tAlignment = 0x%lx;\tOwner = %s [%02x|%02x|%02x:",
|
||||
DEBUG_INFO, " Base = 0x%lx;\tLength = 0x%lx;\tAlignment = 0x%lx;\tOwner = %s [%02x|%02x|%02x:",
|
||||
Bar[Resource->Bar].BaseAddress, Resource->Length, Resource->Alignment,
|
||||
IS_PCI_BRIDGE (&Resource->PciDev->Pci) ? L"PPB" :
|
||||
IS_CARDBUS_BRIDGE (&Resource->PciDev->Pci) ? L"P2C" :
|
||||
|
@ -244,20 +244,20 @@ DumpBridgeResource (
|
|||
//
|
||||
// The resource requirement comes from the device itself.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "%02x]", Bar[Resource->Bar].Offset));
|
||||
DEBUG ((DEBUG_INFO, "%02x]", Bar[Resource->Bar].Offset));
|
||||
} else {
|
||||
//
|
||||
// The resource requirement comes from the subordinate devices.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "**]"));
|
||||
DEBUG ((DEBUG_INFO, "**]"));
|
||||
}
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, " Base = Padding;\tLength = 0x%lx;\tAlignment = 0x%lx", Resource->Length, Resource->Alignment));
|
||||
DEBUG ((DEBUG_INFO, " Base = Padding;\tLength = 0x%lx;\tAlignment = 0x%lx", Resource->Length, Resource->Alignment));
|
||||
}
|
||||
if (BridgeResource->ResType != Resource->ResType) {
|
||||
DEBUG ((EFI_D_INFO, "; Type = %s", mBarTypeStr[MIN (Resource->ResType, PciBarTypeMaxType)]));
|
||||
DEBUG ((DEBUG_INFO, "; Type = %s", mBarTypeStr[MIN (Resource->ResType, PciBarTypeMaxType)]));
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "\n"));
|
||||
DEBUG ((DEBUG_INFO, "\n"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -321,7 +321,7 @@ DumpResourceMap (
|
|||
PCI_RESOURCE_NODE **ChildResources;
|
||||
UINTN ChildResourceCount;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PciBus: Resource Map for "));
|
||||
DEBUG ((DEBUG_INFO, "PciBus: Resource Map for "));
|
||||
|
||||
Status = gBS->OpenProtocol (
|
||||
Bridge->Handle,
|
||||
|
@ -333,7 +333,7 @@ DumpResourceMap (
|
|||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((
|
||||
EFI_D_INFO, "Bridge [%02x|%02x|%02x]\n",
|
||||
DEBUG_INFO, "Bridge [%02x|%02x|%02x]\n",
|
||||
Bridge->BusNumber, Bridge->DeviceNumber, Bridge->FunctionNumber
|
||||
));
|
||||
} else {
|
||||
|
@ -342,7 +342,7 @@ DumpResourceMap (
|
|||
FALSE,
|
||||
FALSE
|
||||
);
|
||||
DEBUG ((EFI_D_INFO, "Root Bridge %s\n", Str != NULL ? Str : L""));
|
||||
DEBUG ((DEBUG_INFO, "Root Bridge %s\n", Str != NULL ? Str : L""));
|
||||
if (Str != NULL) {
|
||||
FreePool (Str);
|
||||
}
|
||||
|
@ -351,7 +351,7 @@ DumpResourceMap (
|
|||
for (Index = 0; Index < ResourceCount; Index++) {
|
||||
DumpBridgeResource (Resources[Index]);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "\n"));
|
||||
DEBUG ((DEBUG_INFO, "\n"));
|
||||
|
||||
for ( Link = Bridge->ChildList.ForwardLink
|
||||
; Link != &Bridge->ChildList
|
||||
|
@ -622,7 +622,7 @@ PciHostBridgeResourceAllocator (
|
|||
// If SubmitResources returns error, PciBus isn't able to start.
|
||||
// It's a fatal error so assertion is added.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "PciBus: HostBridge->SubmitResources() - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PciBus: HostBridge->SubmitResources() - %r\n", Status));
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
}
|
||||
|
||||
|
@ -654,7 +654,7 @@ PciHostBridgeResourceAllocator (
|
|||
// Notify platform to start to program the resource
|
||||
//
|
||||
Status = NotifyPhase (PciResAlloc, EfiPciHostBridgeAllocateResources);
|
||||
DEBUG ((EFI_D_INFO, "PciBus: HostBridge->NotifyPhase(AllocateResources) - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PciBus: HostBridge->NotifyPhase(AllocateResources) - %r\n", Status));
|
||||
if (!FeaturePcdGet (PcdPciBusHotplugDeviceSupport)) {
|
||||
//
|
||||
// If Hot Plug is not supported
|
||||
|
@ -1340,9 +1340,9 @@ PciScanBus (
|
|||
TempReservedBusNum = PciDevice->ReservedBusNum;
|
||||
|
||||
if (Func == 0) {
|
||||
DEBUG ((EFI_D_INFO, "PCI-IOV ScanBus - SubBusNumber - 0x%x\n", *SubBusNumber));
|
||||
DEBUG ((DEBUG_INFO, "PCI-IOV ScanBus - SubBusNumber - 0x%x\n", *SubBusNumber));
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, "PCI-IOV ScanBus - SubBusNumber - 0x%x (Update)\n", *SubBusNumber));
|
||||
DEBUG ((DEBUG_INFO, "PCI-IOV ScanBus - SubBusNumber - 0x%x (Update)\n", *SubBusNumber));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1522,7 +1522,7 @@ PciHostBridgeEnumerator (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG((EFI_D_INFO, "PCI Bus First Scanning\n"));
|
||||
DEBUG((DEBUG_INFO, "PCI Bus First Scanning\n"));
|
||||
RootBridgeHandle = NULL;
|
||||
while (PciResAlloc->GetNextRootBridge (PciResAlloc, &RootBridgeHandle) == EFI_SUCCESS) {
|
||||
|
||||
|
@ -1601,7 +1601,7 @@ PciHostBridgeEnumerator (
|
|||
Status = AllRootHPCInitialized (STALL_1_SECOND * 15);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Some root HPC failed to initialize\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Some root HPC failed to initialize\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1614,7 +1614,7 @@ PciHostBridgeEnumerator (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG((EFI_D_INFO, "PCI Bus Second Scanning\n"));
|
||||
DEBUG((DEBUG_INFO, "PCI Bus Second Scanning\n"));
|
||||
RootBridgeHandle = NULL;
|
||||
while (PciResAlloc->GetNextRootBridge (PciResAlloc, &RootBridgeHandle) == EFI_SUCCESS) {
|
||||
|
||||
|
|
|
@ -119,13 +119,13 @@ IntersectIoDescriptor (
|
|||
Status = gDS->AddIoSpace (EfiGcdIoTypeIo, IntersectionBase,
|
||||
IntersectionEnd - IntersectionBase);
|
||||
|
||||
DEBUG ((EFI_ERROR (Status) ? EFI_D_ERROR : EFI_D_VERBOSE,
|
||||
DEBUG ((EFI_ERROR (Status) ? DEBUG_ERROR : DEBUG_VERBOSE,
|
||||
"%a: %a: add [%Lx, %Lx): %r\n", gEfiCallerBaseName, __FUNCTION__,
|
||||
IntersectionBase, IntersectionEnd, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "%a: %a: desc [%Lx, %Lx) type %u conflicts with "
|
||||
DEBUG ((DEBUG_ERROR, "%a: %a: desc [%Lx, %Lx) type %u conflicts with "
|
||||
"aperture [%Lx, %Lx)\n", gEfiCallerBaseName, __FUNCTION__,
|
||||
Descriptor->BaseAddress, Descriptor->BaseAddress + Descriptor->Length,
|
||||
(UINT32)Descriptor->GcdIoType, Base, Base + Length));
|
||||
|
@ -155,7 +155,7 @@ AddIoSpace (
|
|||
|
||||
Status = gDS->GetIoSpaceMap (&NumberOfDescriptors, &IoSpaceMap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "%a: %a: GetIoSpaceMap(): %r\n",
|
||||
DEBUG ((DEBUG_ERROR, "%a: %a: GetIoSpaceMap(): %r\n",
|
||||
gEfiCallerBaseName, __FUNCTION__, Status));
|
||||
return Status;
|
||||
}
|
||||
|
@ -263,13 +263,13 @@ IntersectMemoryDescriptor (
|
|||
IntersectionBase, IntersectionEnd - IntersectionBase,
|
||||
Capabilities);
|
||||
|
||||
DEBUG ((EFI_ERROR (Status) ? EFI_D_ERROR : EFI_D_VERBOSE,
|
||||
DEBUG ((EFI_ERROR (Status) ? DEBUG_ERROR : DEBUG_VERBOSE,
|
||||
"%a: %a: add [%Lx, %Lx): %r\n", gEfiCallerBaseName, __FUNCTION__,
|
||||
IntersectionBase, IntersectionEnd, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "%a: %a: desc [%Lx, %Lx) type %u cap %Lx conflicts "
|
||||
DEBUG ((DEBUG_ERROR, "%a: %a: desc [%Lx, %Lx) type %u cap %Lx conflicts "
|
||||
"with aperture [%Lx, %Lx) cap %Lx\n", gEfiCallerBaseName, __FUNCTION__,
|
||||
Descriptor->BaseAddress, Descriptor->BaseAddress + Descriptor->Length,
|
||||
(UINT32)Descriptor->GcdMemoryType, Descriptor->Capabilities,
|
||||
|
@ -302,7 +302,7 @@ AddMemoryMappedIoSpace (
|
|||
|
||||
Status = gDS->GetMemorySpaceMap (&NumberOfDescriptors, &MemorySpaceMap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "%a: %a: GetMemorySpaceMap(): %r\n",
|
||||
DEBUG ((DEBUG_ERROR, "%a: %a: GetMemorySpaceMap(): %r\n",
|
||||
gEfiCallerBaseName, __FUNCTION__, Status));
|
||||
return Status;
|
||||
}
|
||||
|
@ -828,7 +828,7 @@ NotifyPhase (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PciHostBridge: NotifyPhase (AllocateResources)\n"));
|
||||
DEBUG ((DEBUG_INFO, "PciHostBridge: NotifyPhase (AllocateResources)\n"));
|
||||
for (Link = GetFirstNode (&HostBridge->RootBridges)
|
||||
; !IsNull (&HostBridge->RootBridges, Link)
|
||||
; Link = GetNextNode (&HostBridge->RootBridges, Link)
|
||||
|
@ -838,7 +838,7 @@ NotifyPhase (
|
|||
}
|
||||
|
||||
RootBridge = ROOT_BRIDGE_FROM_LINK (Link);
|
||||
DEBUG ((EFI_D_INFO, " RootBridge: %s\n", RootBridge->DevicePathStr));
|
||||
DEBUG ((DEBUG_INFO, " RootBridge: %s\n", RootBridge->DevicePathStr));
|
||||
|
||||
for (Index1 = TypeIo; Index1 < TypeBus; Index1++) {
|
||||
if (RootBridge->ResAllocNode[Index1].Status == ResNone) {
|
||||
|
@ -1360,7 +1360,7 @@ SubmitResources (
|
|||
) {
|
||||
RootBridge = ROOT_BRIDGE_FROM_LINK (Link);
|
||||
if (RootBridgeHandle == RootBridge->Handle) {
|
||||
DEBUG ((EFI_D_INFO, "PciHostBridge: SubmitResources for %s\n", RootBridge->DevicePathStr));
|
||||
DEBUG ((DEBUG_INFO, "PciHostBridge: SubmitResources for %s\n", RootBridge->DevicePathStr));
|
||||
//
|
||||
// Check the resource descriptors.
|
||||
// If the Configuration includes one or more invalid resource descriptors, all the resource
|
||||
|
@ -1371,11 +1371,11 @@ SubmitResources (
|
|||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, " %s: Granularity/SpecificFlag = %ld / %02x%s\n",
|
||||
DEBUG ((DEBUG_INFO, " %s: Granularity/SpecificFlag = %ld / %02x%s\n",
|
||||
mAcpiAddressSpaceTypeStr[Descriptor->ResType], Descriptor->AddrSpaceGranularity, Descriptor->SpecificFlag,
|
||||
(Descriptor->SpecificFlag & EFI_ACPI_MEMORY_RESOURCE_SPECIFIC_FLAG_CACHEABLE_PREFETCHABLE) != 0 ? L" (Prefetchable)" : L""
|
||||
));
|
||||
DEBUG ((EFI_D_INFO, " Length/Alignment = 0x%lx / 0x%lx\n", Descriptor->AddrLen, Descriptor->AddrRangeMax));
|
||||
DEBUG ((DEBUG_INFO, " Length/Alignment = 0x%lx / 0x%lx\n", Descriptor->AddrLen, Descriptor->AddrRangeMax));
|
||||
switch (Descriptor->ResType) {
|
||||
case ACPI_ADDRESS_SPACE_TYPE_MEM:
|
||||
if (Descriptor->AddrSpaceGranularity != 32 && Descriptor->AddrSpaceGranularity != 64) {
|
||||
|
|
|
@ -71,17 +71,17 @@ CreateRootBridge (
|
|||
|
||||
DevicePathStr = NULL;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "RootBridge: "));
|
||||
DEBUG ((EFI_D_INFO, "%s\n", DevicePathStr = ConvertDevicePathToText (Bridge->DevicePath, FALSE, FALSE)));
|
||||
DEBUG ((EFI_D_INFO, " Support/Attr: %lx / %lx\n", Bridge->Supports, Bridge->Attributes));
|
||||
DEBUG ((EFI_D_INFO, " DmaAbove4G: %s\n", Bridge->DmaAbove4G ? L"Yes" : L"No"));
|
||||
DEBUG ((EFI_D_INFO, "NoExtConfSpace: %s\n", Bridge->NoExtendedConfigSpace ? L"Yes" : L"No"));
|
||||
DEBUG ((EFI_D_INFO, " AllocAttr: %lx (%s%s)\n", Bridge->AllocationAttributes,
|
||||
DEBUG ((DEBUG_INFO, "RootBridge: "));
|
||||
DEBUG ((DEBUG_INFO, "%s\n", DevicePathStr = ConvertDevicePathToText (Bridge->DevicePath, FALSE, FALSE)));
|
||||
DEBUG ((DEBUG_INFO, " Support/Attr: %lx / %lx\n", Bridge->Supports, Bridge->Attributes));
|
||||
DEBUG ((DEBUG_INFO, " DmaAbove4G: %s\n", Bridge->DmaAbove4G ? L"Yes" : L"No"));
|
||||
DEBUG ((DEBUG_INFO, "NoExtConfSpace: %s\n", Bridge->NoExtendedConfigSpace ? L"Yes" : L"No"));
|
||||
DEBUG ((DEBUG_INFO, " AllocAttr: %lx (%s%s)\n", Bridge->AllocationAttributes,
|
||||
(Bridge->AllocationAttributes & EFI_PCI_HOST_BRIDGE_COMBINE_MEM_PMEM) != 0 ? L"CombineMemPMem " : L"",
|
||||
(Bridge->AllocationAttributes & EFI_PCI_HOST_BRIDGE_MEM64_DECODE) != 0 ? L"Mem64Decode" : L""
|
||||
));
|
||||
DEBUG ((
|
||||
EFI_D_INFO, " Bus: %lx - %lx Translation=%lx\n",
|
||||
DEBUG_INFO, " Bus: %lx - %lx Translation=%lx\n",
|
||||
Bridge->Bus.Base, Bridge->Bus.Limit, Bridge->Bus.Translation
|
||||
));
|
||||
//
|
||||
|
|
|
@ -943,7 +943,7 @@ SerialControllerDriverStart (
|
|||
Node = NextDevicePathNode (Node);
|
||||
} while (!IsDevicePathEnd (Node));
|
||||
Status = CreateSerialDevice (Controller, Uart, ParentDevicePath, FALSE, Acpi->UID, ParentIo, NULL, NULL);
|
||||
DEBUG ((EFI_D_INFO, "PciSioSerial: Create SIO child serial device - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PciSioSerial: Create SIO child serial device - %r\n", Status));
|
||||
}
|
||||
} else {
|
||||
Status = ParentIo.PciIo->Pci.Read (ParentIo.PciIo, EfiPciIoWidthUint8, 0, sizeof (Pci), &Pci);
|
||||
|
@ -1024,7 +1024,7 @@ SerialControllerDriverStart (
|
|||
}
|
||||
|
||||
Status = CreateSerialDevice (Controller, Uart, ParentDevicePath, FALSE, 0, ParentIo, PciSerialParameter, PciDeviceInfo);
|
||||
DEBUG ((EFI_D_INFO, "PciSioSerial: Create PCI child serial device (single) - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PciSioSerial: Create PCI child serial device (single) - %r\n", Status));
|
||||
if (!EFI_ERROR (Status)) {
|
||||
PciDeviceInfo->ChildCount++;
|
||||
}
|
||||
|
@ -1045,7 +1045,7 @@ SerialControllerDriverStart (
|
|||
//
|
||||
Status = CreateSerialDevice (Controller, Uart, ParentDevicePath, TRUE, PciSerialCount, ParentIo, PciSerialParameter, PciDeviceInfo);
|
||||
PciSerialCount++;
|
||||
DEBUG ((EFI_D_INFO, "PciSioSerial: Create PCI child serial device (multiple) - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PciSioSerial: Create PCI child serial device (multiple) - %r\n", Status));
|
||||
if (!EFI_ERROR (Status)) {
|
||||
PciDeviceInfo->ChildCount++;
|
||||
}
|
||||
|
|
|
@ -134,9 +134,9 @@ VerifyUartParameters (
|
|||
}
|
||||
|
||||
Percent = DivU64x32 (MultU64x32 (BaudRate, 100), ComputedBaudRate);
|
||||
DEBUG ((EFI_D_INFO, "ClockRate = %d\n", ClockRate));
|
||||
DEBUG ((EFI_D_INFO, "Divisor = %ld\n", ComputedDivisor));
|
||||
DEBUG ((EFI_D_INFO, "BaudRate/Actual (%ld/%d) = %d%%\n", BaudRate, ComputedBaudRate, Percent));
|
||||
DEBUG ((DEBUG_INFO, "ClockRate = %d\n", ClockRate));
|
||||
DEBUG ((DEBUG_INFO, "Divisor = %ld\n", ComputedDivisor));
|
||||
DEBUG ((DEBUG_INFO, "BaudRate/Actual (%ld/%d) = %d%%\n", BaudRate, ComputedBaudRate, Percent));
|
||||
|
||||
//
|
||||
// If the requested BaudRate is not supported:
|
||||
|
@ -176,9 +176,9 @@ VerifyUartParameters (
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "ClockRate = %d\n", ClockRate));
|
||||
DEBUG ((EFI_D_INFO, "Divisor = %ld\n", ComputedDivisor));
|
||||
DEBUG ((EFI_D_INFO, "BaudRate/Actual (%ld/%d) = %d%%\n", BaudRate, ComputedBaudRate, Percent));
|
||||
DEBUG ((DEBUG_INFO, "ClockRate = %d\n", ClockRate));
|
||||
DEBUG ((DEBUG_INFO, "Divisor = %ld\n", ComputedDivisor));
|
||||
DEBUG ((DEBUG_INFO, "BaudRate/Actual (%ld/%d) = %d%%\n", BaudRate, ComputedBaudRate, Percent));
|
||||
|
||||
if (ActualBaudRate != NULL) {
|
||||
*ActualBaudRate = ComputedBaudRate;
|
||||
|
|
|
@ -89,7 +89,7 @@ CalculateBestPioMode (
|
|||
if ((IdentifyData->AtaData.field_validity & 0x02) == 0x02) {
|
||||
|
||||
AdvancedPioMode = IdentifyData->AtaData.advanced_pio_modes;
|
||||
DEBUG ((EFI_D_INFO, "CalculateBestPioMode: AdvancedPioMode = %x\n", AdvancedPioMode));
|
||||
DEBUG ((DEBUG_INFO, "CalculateBestPioMode: AdvancedPioMode = %x\n", AdvancedPioMode));
|
||||
|
||||
for (Index = 0; Index < 8; Index++) {
|
||||
if ((AdvancedPioMode & 0x01) != 0) {
|
||||
|
@ -203,7 +203,7 @@ CalculateBestUdmaMode (
|
|||
}
|
||||
|
||||
DeviceUDmaMode = IdentifyData->AtaData.ultra_dma_mode;
|
||||
DEBUG ((EFI_D_INFO, "CalculateBestUdmaMode: DeviceUDmaMode = %x\n", DeviceUDmaMode));
|
||||
DEBUG ((DEBUG_INFO, "CalculateBestUdmaMode: DeviceUDmaMode = %x\n", DeviceUDmaMode));
|
||||
DeviceUDmaMode &= 0x3f;
|
||||
TempMode = 0; // initialize it to UDMA-0
|
||||
|
||||
|
@ -362,7 +362,7 @@ SataControllerStart (
|
|||
UINT64 Supports;
|
||||
UINT8 MaxPortNumber;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SataControllerStart start\n"));
|
||||
DEBUG ((DEBUG_INFO, "SataControllerStart start\n"));
|
||||
|
||||
Private = NULL;
|
||||
|
||||
|
@ -378,7 +378,7 @@ SataControllerStart (
|
|||
EFI_OPEN_PROTOCOL_BY_DRIVER
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SataControllerStart error. return status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SataControllerStart error. return status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -419,7 +419,7 @@ SataControllerStart (
|
|||
}
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"Original PCI Attributes = 0x%llx\n",
|
||||
Private->OriginalPciAttributes
|
||||
));
|
||||
|
@ -434,7 +434,7 @@ SataControllerStart (
|
|||
goto Done;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Supported PCI Attributes = 0x%llx\n", Supports));
|
||||
DEBUG ((DEBUG_INFO, "Supported PCI Attributes = 0x%llx\n", Supports));
|
||||
|
||||
Supports &= (UINT64)EFI_PCI_DEVICE_ENABLE;
|
||||
Status = PciIo->Attributes (
|
||||
|
@ -447,7 +447,7 @@ SataControllerStart (
|
|||
goto Done;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Enabled PCI Attributes = 0x%llx\n", Supports));
|
||||
DEBUG ((DEBUG_INFO, "Enabled PCI Attributes = 0x%llx\n", Supports));
|
||||
Private->PciAttributesChanged = TRUE;
|
||||
|
||||
Status = PciIo->Pci.Read (
|
||||
|
@ -561,7 +561,7 @@ Done:
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SataControllerStart end with %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "SataControllerStart end with %r\n", Status));
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
@ -1048,7 +1048,7 @@ IdeInitCalculateMode (
|
|||
} else {
|
||||
(*SupportedModes)->PioMode.Valid = FALSE;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "IdeInitCalculateMode: PioMode = %x\n", (*SupportedModes)->PioMode.Mode));
|
||||
DEBUG ((DEBUG_INFO, "IdeInitCalculateMode: PioMode = %x\n", (*SupportedModes)->PioMode.Mode));
|
||||
|
||||
Status = CalculateBestUdmaMode (
|
||||
IdentifyData,
|
||||
|
@ -1063,7 +1063,7 @@ IdeInitCalculateMode (
|
|||
} else {
|
||||
(*SupportedModes)->UdmaMode.Valid = FALSE;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "IdeInitCalculateMode: UdmaMode = %x\n", (*SupportedModes)->UdmaMode.Mode));
|
||||
DEBUG ((DEBUG_INFO, "IdeInitCalculateMode: UdmaMode = %x\n", (*SupportedModes)->UdmaMode.Mode));
|
||||
|
||||
//
|
||||
// The modes other than PIO and UDMA are not supported
|
||||
|
@ -1105,4 +1105,3 @@ IdeInitSetTiming (
|
|||
{
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@ InitializeSdMmcHcPeim (
|
|||
|
||||
Private = (SD_MMC_HC_PEI_PRIVATE_DATA *) AllocateZeroPool (sizeof (SD_MMC_HC_PEI_PRIVATE_DATA));
|
||||
if (Private == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for SD_MMC_HC_PEI_PRIVATE_DATA! \n"));
|
||||
DEBUG ((DEBUG_ERROR, "Failed to allocate memory for SD_MMC_HC_PEI_PRIVATE_DATA! \n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ InitializeUfsHcPeim (
|
|||
|
||||
Private = (UFS_HC_PEI_PRIVATE_DATA *) AllocateZeroPool (sizeof (UFS_HC_PEI_PRIVATE_DATA));
|
||||
if (Private == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for UFS_HC_PEI_PRIVATE_DATA! \n"));
|
||||
DEBUG ((DEBUG_ERROR, "Failed to allocate memory for UFS_HC_PEI_PRIVATE_DATA! \n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
|
|
@ -323,7 +323,7 @@ Uhci2GetCapability (
|
|||
|
||||
Uhc->RootPorts = *PortNumber;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Uhci2GetCapability: %d ports\n", (UINT32)Uhc->RootPorts));
|
||||
DEBUG ((DEBUG_INFO, "Uhci2GetCapability: %d ports\n", (UINT32)Uhc->RootPorts));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -378,7 +378,7 @@ Uhci2GetRootHubPortStatus (
|
|||
}
|
||||
|
||||
if ((PortSC & USBPORTSC_SUSP) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "Uhci2GetRootHubPortStatus: port %d is suspended\n", PortNumber));
|
||||
DEBUG ((DEBUG_INFO, "Uhci2GetRootHubPortStatus: port %d is suspended\n", PortNumber));
|
||||
PortStatus->PortStatus |= USB_PORT_STAT_SUSPEND;
|
||||
}
|
||||
|
||||
|
@ -1880,4 +1880,3 @@ UhciDriverBindingStop (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -20,12 +20,12 @@ UhciDumpQh (
|
|||
IN UHCI_QH_SW *QhSw
|
||||
)
|
||||
{
|
||||
DEBUG ((EFI_D_VERBOSE, "&QhSw @ 0x%p\n", QhSw));
|
||||
DEBUG ((EFI_D_VERBOSE, "QhSw.NextQh - 0x%p\n", QhSw->NextQh));
|
||||
DEBUG ((EFI_D_VERBOSE, "QhSw.TDs - 0x%p\n", QhSw->TDs));
|
||||
DEBUG ((EFI_D_VERBOSE, "QhSw.QhHw:\n"));
|
||||
DEBUG ((EFI_D_VERBOSE, " Horizon Link - %x\n", QhSw->QhHw.HorizonLink));
|
||||
DEBUG ((EFI_D_VERBOSE, " Vertical Link - %x\n\n", QhSw->QhHw.VerticalLink));
|
||||
DEBUG ((DEBUG_VERBOSE, "&QhSw @ 0x%p\n", QhSw));
|
||||
DEBUG ((DEBUG_VERBOSE, "QhSw.NextQh - 0x%p\n", QhSw->NextQh));
|
||||
DEBUG ((DEBUG_VERBOSE, "QhSw.TDs - 0x%p\n", QhSw->TDs));
|
||||
DEBUG ((DEBUG_VERBOSE, "QhSw.QhHw:\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Horizon Link - %x\n", QhSw->QhHw.HorizonLink));
|
||||
DEBUG ((DEBUG_VERBOSE, " Vertical Link - %x\n\n", QhSw->QhHw.VerticalLink));
|
||||
}
|
||||
|
||||
|
||||
|
@ -45,27 +45,26 @@ UhciDumpTds (
|
|||
CurTdSw = TdSw;
|
||||
|
||||
while (CurTdSw != NULL) {
|
||||
DEBUG ((EFI_D_VERBOSE, "TdSw @ 0x%p\n", CurTdSw));
|
||||
DEBUG ((EFI_D_VERBOSE, "TdSw.NextTd - 0x%p\n", CurTdSw->NextTd));
|
||||
DEBUG ((EFI_D_VERBOSE, "TdSw.DataLen - %d\n", CurTdSw->DataLen));
|
||||
DEBUG ((EFI_D_VERBOSE, "TdSw.Data - 0x%p\n", CurTdSw->Data));
|
||||
DEBUG ((EFI_D_VERBOSE, "TdHw:\n"));
|
||||
DEBUG ((EFI_D_VERBOSE, " NextLink - 0x%x\n", CurTdSw->TdHw.NextLink));
|
||||
DEBUG ((EFI_D_VERBOSE, " ActualLen - %d\n", CurTdSw->TdHw.ActualLen));
|
||||
DEBUG ((EFI_D_VERBOSE, " Status - 0x%x\n", CurTdSw->TdHw.Status));
|
||||
DEBUG ((EFI_D_VERBOSE, " IOC - %d\n", CurTdSw->TdHw.IntOnCpl));
|
||||
DEBUG ((EFI_D_VERBOSE, " IsIsoCh - %d\n", CurTdSw->TdHw.IsIsoch));
|
||||
DEBUG ((EFI_D_VERBOSE, " LowSpeed - %d\n", CurTdSw->TdHw.LowSpeed));
|
||||
DEBUG ((EFI_D_VERBOSE, " ErrorCount - %d\n", CurTdSw->TdHw.ErrorCount));
|
||||
DEBUG ((EFI_D_VERBOSE, " ShortPacket - %d\n", CurTdSw->TdHw.ShortPacket));
|
||||
DEBUG ((EFI_D_VERBOSE, " PidCode - 0x%x\n", CurTdSw->TdHw.PidCode));
|
||||
DEBUG ((EFI_D_VERBOSE, " DevAddr - %d\n", CurTdSw->TdHw.DeviceAddr));
|
||||
DEBUG ((EFI_D_VERBOSE, " EndPoint - %d\n", CurTdSw->TdHw.EndPoint));
|
||||
DEBUG ((EFI_D_VERBOSE, " DataToggle - %d\n", CurTdSw->TdHw.DataToggle));
|
||||
DEBUG ((EFI_D_VERBOSE, " MaxPacketLen - %d\n", CurTdSw->TdHw.MaxPacketLen));
|
||||
DEBUG ((EFI_D_VERBOSE, " DataBuffer - 0x%x\n\n",CurTdSw->TdHw.DataBuffer));
|
||||
DEBUG ((DEBUG_VERBOSE, "TdSw @ 0x%p\n", CurTdSw));
|
||||
DEBUG ((DEBUG_VERBOSE, "TdSw.NextTd - 0x%p\n", CurTdSw->NextTd));
|
||||
DEBUG ((DEBUG_VERBOSE, "TdSw.DataLen - %d\n", CurTdSw->DataLen));
|
||||
DEBUG ((DEBUG_VERBOSE, "TdSw.Data - 0x%p\n", CurTdSw->Data));
|
||||
DEBUG ((DEBUG_VERBOSE, "TdHw:\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, " NextLink - 0x%x\n", CurTdSw->TdHw.NextLink));
|
||||
DEBUG ((DEBUG_VERBOSE, " ActualLen - %d\n", CurTdSw->TdHw.ActualLen));
|
||||
DEBUG ((DEBUG_VERBOSE, " Status - 0x%x\n", CurTdSw->TdHw.Status));
|
||||
DEBUG ((DEBUG_VERBOSE, " IOC - %d\n", CurTdSw->TdHw.IntOnCpl));
|
||||
DEBUG ((DEBUG_VERBOSE, " IsIsoCh - %d\n", CurTdSw->TdHw.IsIsoch));
|
||||
DEBUG ((DEBUG_VERBOSE, " LowSpeed - %d\n", CurTdSw->TdHw.LowSpeed));
|
||||
DEBUG ((DEBUG_VERBOSE, " ErrorCount - %d\n", CurTdSw->TdHw.ErrorCount));
|
||||
DEBUG ((DEBUG_VERBOSE, " ShortPacket - %d\n", CurTdSw->TdHw.ShortPacket));
|
||||
DEBUG ((DEBUG_VERBOSE, " PidCode - 0x%x\n", CurTdSw->TdHw.PidCode));
|
||||
DEBUG ((DEBUG_VERBOSE, " DevAddr - %d\n", CurTdSw->TdHw.DeviceAddr));
|
||||
DEBUG ((DEBUG_VERBOSE, " EndPoint - %d\n", CurTdSw->TdHw.EndPoint));
|
||||
DEBUG ((DEBUG_VERBOSE, " DataToggle - %d\n", CurTdSw->TdHw.DataToggle));
|
||||
DEBUG ((DEBUG_VERBOSE, " MaxPacketLen - %d\n", CurTdSw->TdHw.MaxPacketLen));
|
||||
DEBUG ((DEBUG_VERBOSE, " DataBuffer - 0x%x\n\n",CurTdSw->TdHw.DataBuffer));
|
||||
|
||||
CurTdSw = CurTdSw->NextTd;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ UhciReadReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciReadReg: PciIo Io.Read error: %r at offset %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "UhciReadReg: PciIo Io.Read error: %r at offset %d\n", Status, Offset));
|
||||
|
||||
Data = 0xFFFF;
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ UhciWriteReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciWriteReg: PciIo Io.Write error: %r at offset %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "UhciWriteReg: PciIo Io.Write error: %r at offset %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -144,7 +144,7 @@ UhciAckAllInterrupt (
|
|||
// is a temporary error status.
|
||||
//
|
||||
if (!UhciIsHcWorking (Uhc->PciIo)) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciAckAllInterrupt: re-enable the UHCI from system error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UhciAckAllInterrupt: re-enable the UHCI from system error\n"));
|
||||
Uhc->Usb2Hc.SetState (&Uhc->Usb2Hc, EfiUsbHcStateOperational);
|
||||
}
|
||||
}
|
||||
|
@ -208,7 +208,7 @@ UhciIsHcWorking (
|
|||
UsbSts = UhciReadReg (PciIo, USBSTS_OFFSET);
|
||||
|
||||
if ((UsbSts & (USBSTS_HCPE | USBSTS_HSE | USBSTS_HCH)) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciIsHcWorking: current USB state is %x\n", UsbSts));
|
||||
DEBUG ((DEBUG_ERROR, "UhciIsHcWorking: current USB state is %x\n", UsbSts));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -245,7 +245,7 @@ UhciSetFrameListBaseAddr (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciSetFrameListBaseAddr: PciIo Io.Write error: %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UhciSetFrameListBaseAddr: PciIo Io.Write error: %r\n", Status));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -600,14 +600,14 @@ UhciExecuteTransfer (
|
|||
}
|
||||
|
||||
if (!Finished) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciExecuteTransfer: execution not finished for %dms\n", (UINT32)TimeOut));
|
||||
DEBUG ((DEBUG_ERROR, "UhciExecuteTransfer: execution not finished for %dms\n", (UINT32)TimeOut));
|
||||
UhciDumpQh (Qh);
|
||||
UhciDumpTds (Td);
|
||||
|
||||
Status = EFI_TIMEOUT;
|
||||
|
||||
} else if (QhResult->Result != EFI_USB_NOERROR) {
|
||||
DEBUG ((EFI_D_ERROR, "UhciExecuteTransfer: execution failed with result %x\n", QhResult->Result));
|
||||
DEBUG ((DEBUG_ERROR, "UhciExecuteTransfer: execution failed with result %x\n", QhResult->Result));
|
||||
UhciDumpQh (Qh);
|
||||
UhciDumpTds (Td);
|
||||
|
||||
|
|
|
@ -468,7 +468,7 @@ UsbHcAllocateMem (
|
|||
NewBlock = UsbHcAllocMemBlock (Pool, Pages);
|
||||
|
||||
if (NewBlock == NULL) {
|
||||
DEBUG ((EFI_D_INFO, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
DEBUG ((DEBUG_INFO, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -503,7 +503,7 @@ UsbHcAllocateMem (
|
|||
NewBlock = UsbHcAllocMemBlock (Pool, Pages);
|
||||
|
||||
if (NewBlock == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UsbHcAllocateMem: failed to allocate block\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ XhcGetCapability (
|
|||
*MaxSpeed = EFI_USB_SPEED_SUPER;
|
||||
*PortNumber = (UINT8) (Xhc->HcSParams1.Data.MaxPorts);
|
||||
*Is64BitCapable = (UINT8) Xhc->Support64BitDma;
|
||||
DEBUG ((EFI_D_INFO, "XhcGetCapability: %d ports, 64 bit %d\n", *PortNumber, *Is64BitCapable));
|
||||
DEBUG ((DEBUG_INFO, "XhcGetCapability: %d ports, 64 bit %d\n", *PortNumber, *Is64BitCapable));
|
||||
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
|
@ -216,7 +216,7 @@ XhcReset (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcReset: status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcReset: status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
return Status;
|
||||
|
@ -260,7 +260,7 @@ XhcGetState (
|
|||
*State = EfiUsbHcStateOperational;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcGetState: current state %d\n", *State));
|
||||
DEBUG ((DEBUG_INFO, "XhcGetState: current state %d\n", *State));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
@ -336,7 +336,7 @@ XhcSetState (
|
|||
Status = EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcSetState: status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetState: status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
return Status;
|
||||
|
@ -530,7 +530,7 @@ XhcSetRootHubPortFeature (
|
|||
break;
|
||||
|
||||
case EfiUsbPortReset:
|
||||
DEBUG ((EFI_D_INFO, "XhcUsbPortReset!\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcUsbPortReset!\n"));
|
||||
//
|
||||
// Make sure Host Controller not halt before reset it
|
||||
//
|
||||
|
@ -538,7 +538,7 @@ XhcSetRootHubPortFeature (
|
|||
Status = XhcRunHC (Xhc, XHC_GENERIC_TIMEOUT);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "XhcSetRootHubPortFeature :failed to start HC - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetRootHubPortFeature :failed to start HC - %r\n", Status));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -571,7 +571,7 @@ XhcSetRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcSetRootHubPortFeature: status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetRootHubPortFeature: status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
return Status;
|
||||
|
@ -706,7 +706,7 @@ XhcClearRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcClearRootHubPortFeature: status %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcClearRootHubPortFeature: status %r\n", Status));
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
return Status;
|
||||
|
@ -914,7 +914,7 @@ XhcControlTransfer (
|
|||
Len = 0;
|
||||
|
||||
if (XhcIsHalt (Xhc) || XhcIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcControlTransfer: HC halted at entrance\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcControlTransfer: HC halted at entrance\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -1043,7 +1043,7 @@ XhcControlTransfer (
|
|||
// Don't support multi-TT feature for super speed hub now.
|
||||
//
|
||||
MTT = 0;
|
||||
DEBUG ((EFI_D_ERROR, "XHCI: Don't support multi-TT feature for Hub now. (force to disable MTT)\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XHCI: Don't support multi-TT feature for Hub now. (force to disable MTT)\n"));
|
||||
} else {
|
||||
MTT = 0;
|
||||
}
|
||||
|
@ -1162,7 +1162,7 @@ XhcControlTransfer (
|
|||
|
||||
ON_EXIT:
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "XhcControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
@ -1250,7 +1250,7 @@ XhcBulkTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (XhcIsHalt (Xhc) || XhcIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcBulkTransfer: HC is halted\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcBulkTransfer: HC is halted\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -1282,7 +1282,7 @@ XhcBulkTransfer (
|
|||
|
||||
ON_EXIT:
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "XhcBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
|
@ -1386,14 +1386,14 @@ XhcAsyncInterruptTransfer (
|
|||
}
|
||||
|
||||
Status = XhciDelAsyncIntTransfer (Xhc, DeviceAddress, EndPointAddress);
|
||||
DEBUG ((EFI_D_INFO, "XhcAsyncInterruptTransfer: remove old transfer for addr %d, Status = %r\n", DeviceAddress, Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcAsyncInterruptTransfer: remove old transfer for addr %d, Status = %r\n", DeviceAddress, Status));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
if (XhcIsHalt (Xhc) || XhcIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcAsyncInterruptTransfer: HC is halt\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcAsyncInterruptTransfer: HC is halt\n"));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
@ -1508,7 +1508,7 @@ XhcSyncInterruptTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (XhcIsHalt (Xhc) || XhcIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "EhcSyncInterruptTransfer: HC is halt\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EhcSyncInterruptTransfer: HC is halt\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -1536,7 +1536,7 @@ XhcSyncInterruptTransfer (
|
|||
|
||||
ON_EXIT:
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSyncInterruptTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSyncInterruptTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
gBS->RestoreTPL (OldTpl);
|
||||
|
||||
|
@ -1805,14 +1805,14 @@ XhcCreateUsbHc (
|
|||
Xhc->UsbLegSupOffset = XhcGetCapabilityAddr (Xhc, XHC_CAP_USB_LEGACY);
|
||||
Xhc->DebugCapSupOffset = XhcGetCapabilityAddr (Xhc, XHC_CAP_USB_DEBUG);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: Capability length 0x%x\n", Xhc->CapLength));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: HcSParams1 0x%x\n", Xhc->HcSParams1));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: HcSParams2 0x%x\n", Xhc->HcSParams2));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: HcCParams 0x%x\n", Xhc->HcCParams));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: DBOff 0x%x\n", Xhc->DBOff));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: RTSOff 0x%x\n", Xhc->RTSOff));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: UsbLegSupOffset 0x%x\n", Xhc->UsbLegSupOffset));
|
||||
DEBUG ((EFI_D_INFO, "XhcCreateUsb3Hc: DebugCapSupOffset 0x%x\n", Xhc->DebugCapSupOffset));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: Capability length 0x%x\n", Xhc->CapLength));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: HcSParams1 0x%x\n", Xhc->HcSParams1));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: HcSParams2 0x%x\n", Xhc->HcSParams2));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: HcCParams 0x%x\n", Xhc->HcCParams));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: DBOff 0x%x\n", Xhc->DBOff));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: RTSOff 0x%x\n", Xhc->RTSOff));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: UsbLegSupOffset 0x%x\n", Xhc->UsbLegSupOffset));
|
||||
DEBUG ((DEBUG_INFO, "XhcCreateUsb3Hc: DebugCapSupOffset 0x%x\n", Xhc->DebugCapSupOffset));
|
||||
|
||||
//
|
||||
// Create AsyncRequest Polling Timer
|
||||
|
@ -1972,7 +1972,7 @@ XhcDriverBindingStart (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDriverBindingStart: failed to enable controller\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDriverBindingStart: failed to enable controller\n"));
|
||||
goto CLOSE_PCIIO;
|
||||
}
|
||||
|
||||
|
@ -1982,7 +1982,7 @@ XhcDriverBindingStart (
|
|||
Xhc = XhcCreateUsbHc (PciIo, HcDevicePath, OriginalPciAttributes);
|
||||
|
||||
if (Xhc == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDriverBindingStart: failed to create USB2_HC\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDriverBindingStart: failed to create USB2_HC\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
@ -2000,7 +2000,7 @@ XhcDriverBindingStart (
|
|||
if (!EFI_ERROR (Status)) {
|
||||
Xhc->Support64BitDma = TRUE;
|
||||
} else {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"%a: failed to enable 64-bit DMA on 64-bit capable controller @ %p (%r)\n",
|
||||
__FUNCTION__, Controller, Status));
|
||||
}
|
||||
|
@ -2032,7 +2032,7 @@ XhcDriverBindingStart (
|
|||
//
|
||||
Status = gBS->SetTimer (Xhc->PollTimer, TimerPeriodic, XHC_ASYNC_TIMER_INTERVAL);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDriverBindingStart: failed to start async interrupt monitor\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDriverBindingStart: failed to start async interrupt monitor\n"));
|
||||
XhcHaltHC (Xhc, XHC_GENERIC_TIMEOUT);
|
||||
goto FREE_POOL;
|
||||
}
|
||||
|
@ -2078,11 +2078,11 @@ XhcDriverBindingStart (
|
|||
&Xhc->Usb2Hc
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDriverBindingStart: failed to install USB2_HC Protocol\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDriverBindingStart: failed to install USB2_HC Protocol\n"));
|
||||
goto FREE_POOL;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcDriverBindingStart: XHCI started for controller @ %x\n", Controller));
|
||||
DEBUG ((DEBUG_INFO, "XhcDriverBindingStart: XHCI started for controller @ %x\n", Controller));
|
||||
return EFI_SUCCESS;
|
||||
|
||||
FREE_POOL:
|
||||
|
@ -2233,4 +2233,3 @@ XhcDriverBindingStop (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ XhcReadCapReg8 (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcReadCapReg: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcReadCapReg: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFF;
|
||||
}
|
||||
|
||||
|
@ -74,7 +74,7 @@ XhcReadCapReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcReadCapReg: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcReadCapReg: Pci Io read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ XhcReadOpReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcReadOpReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcReadOpReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@ XhcWriteOpReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -185,7 +185,7 @@ XhcWriteDoorBellReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -219,7 +219,7 @@ XhcReadRuntimeReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcReadRuntimeReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcReadRuntimeReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
|
@ -255,7 +255,7 @@ XhcWriteRuntimeReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcWriteRuntimeReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcWriteRuntimeReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -289,7 +289,7 @@ XhcReadExtCapReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcReadExtCapReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcReadExtCapReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
||||
Data = 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
|
@ -325,7 +325,7 @@ XhcWriteExtCapReg (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcWriteExtCapReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
DEBUG ((DEBUG_ERROR, "XhcWriteExtCapReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -508,7 +508,7 @@ XhcSetBiosOwnership (
|
|||
return;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcSetBiosOwnership: called to set BIOS ownership\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetBiosOwnership: called to set BIOS ownership\n"));
|
||||
|
||||
Buffer = XhcReadExtCapReg (Xhc, Xhc->UsbLegSupOffset);
|
||||
Buffer = ((Buffer & (~USBLEGSP_OS_SEMAPHORE)) | USBLEGSP_BIOS_SEMAPHORE);
|
||||
|
@ -532,7 +532,7 @@ XhcClearBiosOwnership (
|
|||
return;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcClearBiosOwnership: called to clear BIOS ownership\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcClearBiosOwnership: called to clear BIOS ownership\n"));
|
||||
|
||||
Buffer = XhcReadExtCapReg (Xhc, Xhc->UsbLegSupOffset);
|
||||
Buffer = ((Buffer & (~USBLEGSP_BIOS_SEMAPHORE)) | USBLEGSP_OS_SEMAPHORE);
|
||||
|
@ -666,7 +666,7 @@ XhcResetHC (
|
|||
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcResetHC!\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcResetHC!\n"));
|
||||
//
|
||||
// Host can only be reset when it is halt. If not so, halt it
|
||||
//
|
||||
|
@ -748,4 +748,3 @@ XhcRunHC (
|
|||
Status = XhcWaitOpRegBit (Xhc, XHC_USBSTS_OFFSET, XHC_USBSTS_HALT, FALSE, Timeout);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ XhcCmdTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (XhcIsHalt (Xhc) || XhcIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcCmdTransfer: HC is halted\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCmdTransfer: HC is halted\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -92,7 +92,7 @@ XhcCmdTransfer (
|
|||
Urb = XhcCreateCmdTrb (Xhc, CmdTrb);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcCmdTransfer: failed to create URB\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCmdTransfer: failed to create URB\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
@ -172,7 +172,7 @@ XhcCreateUrb (
|
|||
Status = XhcCreateTransferTrb (Xhc, Urb);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcCreateUrb: XhcCreateTransferTrb Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCreateUrb: XhcCreateTransferTrb Failed, Status = %r\n", Status));
|
||||
FreePool (Urb);
|
||||
Urb = NULL;
|
||||
}
|
||||
|
@ -269,7 +269,7 @@ XhcCreateTransferTrb (
|
|||
Status = Xhc->PciIo->Map (Xhc->PciIo, MapOp, Urb->Data, &Len, &PhyAddr, &Map);
|
||||
|
||||
if (EFI_ERROR (Status) || (Len != Urb->DataLen)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcCreateTransferTrb: Fail to map Urb->Data.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCreateTransferTrb: Fail to map Urb->Data.\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
@ -446,7 +446,7 @@ XhcCreateTransferTrb (
|
|||
break;
|
||||
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "Not supported EPType 0x%x!\n",EPType));
|
||||
DEBUG ((DEBUG_INFO, "Not supported EPType 0x%x!\n",EPType));
|
||||
ASSERT (FALSE);
|
||||
break;
|
||||
}
|
||||
|
@ -582,7 +582,7 @@ XhcInitSched (
|
|||
XhcWriteOpReg (Xhc, XHC_DCBAAP_OFFSET, XHC_LOW_32BIT(DcbaaPhy));
|
||||
XhcWriteOpReg (Xhc, XHC_DCBAAP_OFFSET + 4, XHC_HIGH_32BIT (DcbaaPhy));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcInitSched:DCBAA=0x%x\n", (UINT64)(UINTN)Xhc->DCBAA));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitSched:DCBAA=0x%x\n", (UINT64)(UINTN)Xhc->DCBAA));
|
||||
|
||||
//
|
||||
// Define the Command Ring Dequeue Pointer by programming the Command Ring Control Register
|
||||
|
@ -660,14 +660,14 @@ XhcRecoverHaltedEndpoint (
|
|||
Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
|
||||
ASSERT (Dci < 32);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Recovery Halted Slot = %x,Dci = %x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "Recovery Halted Slot = %x,Dci = %x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// 1) Send Reset endpoint command to transit from halt to stop state
|
||||
//
|
||||
Status = XhcResetEndpoint(Xhc, SlotId, Dci);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcRecoverHaltedEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcRecoverHaltedEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -676,7 +676,7 @@ XhcRecoverHaltedEndpoint (
|
|||
//
|
||||
Status = XhcSetTrDequeuePointer(Xhc, SlotId, Dci, Urb);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcRecoverHaltedEndpoint: Set Transfer Ring Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcRecoverHaltedEndpoint: Set Transfer Ring Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -722,14 +722,14 @@ XhcDequeueTrbFromEndpoint (
|
|||
Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
|
||||
ASSERT (Dci < 32);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Stop Slot = %x,Dci = %x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "Stop Slot = %x,Dci = %x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// 1) Send Stop endpoint command to stop xHC from executing of the TDs on the endpoint
|
||||
//
|
||||
Status = XhcStopEndpoint(Xhc, SlotId, Dci, Urb);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDequeueTrbFromEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDequeueTrbFromEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -1159,25 +1159,25 @@ XhcCheckUrbResult (
|
|||
case TRB_COMPLETION_STALL_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_STALL;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcCheckUrbResult: STALL_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCheckUrbResult: STALL_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_BABBLE_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_BABBLE;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcCheckUrbResult: BABBLE_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCheckUrbResult: BABBLE_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_DATA_BUFFER_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_BUFFER;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcCheckUrbResult: ERR_BUFFER! Completecode = %x\n",EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCheckUrbResult: ERR_BUFFER! Completecode = %x\n",EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_USB_TRANSACTION_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcCheckUrbResult: TRANSACTION_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcCheckUrbResult: TRANSACTION_ERROR! Completecode = %x\n",EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_STOPPED:
|
||||
|
@ -1193,7 +1193,7 @@ XhcCheckUrbResult (
|
|||
case TRB_COMPLETION_SHORT_PACKET:
|
||||
case TRB_COMPLETION_SUCCESS:
|
||||
if (EvtTrb->Completecode == TRB_COMPLETION_SHORT_PACKET) {
|
||||
DEBUG ((EFI_D_VERBOSE, "XhcCheckUrbResult: short packet happens!\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "XhcCheckUrbResult: short packet happens!\n"));
|
||||
}
|
||||
|
||||
TRBType = (UINT8) (TRBPtr->Type);
|
||||
|
@ -1206,7 +1206,7 @@ XhcCheckUrbResult (
|
|||
break;
|
||||
|
||||
default:
|
||||
DEBUG ((EFI_D_ERROR, "Transfer Default Error Occur! Completecode = 0x%x!\n",EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "Transfer Default Error Occur! Completecode = 0x%x!\n",EvtTrb->Completecode));
|
||||
CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
goto EXIT;
|
||||
|
@ -1396,7 +1396,7 @@ XhciDelAsyncIntTransfer (
|
|||
//
|
||||
Status = XhcDequeueTrbFromEndpoint (Xhc, Urb);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhciDelAsyncIntTransfer: XhcDequeueTrbFromEndpoint failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhciDelAsyncIntTransfer: XhcDequeueTrbFromEndpoint failed\n"));
|
||||
}
|
||||
|
||||
RemoveEntryList (&Urb->UrbList);
|
||||
|
@ -1434,7 +1434,7 @@ XhciDelAllAsyncIntTransfers (
|
|||
//
|
||||
Status = XhcDequeueTrbFromEndpoint (Xhc, Urb);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhciDelAllAsyncIntTransfers: XhcDequeueTrbFromEndpoint failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhciDelAllAsyncIntTransfers: XhcDequeueTrbFromEndpoint failed\n"));
|
||||
}
|
||||
|
||||
RemoveEntryList (&Urb->UrbList);
|
||||
|
@ -1644,7 +1644,7 @@ XhcMonitorAsyncRequests (
|
|||
//
|
||||
Status = XhcFlushAsyncIntMap (Xhc, Urb);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcMonitorAsyncRequests: Fail to Flush AsyncInt Mapped Memeory\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcMonitorAsyncRequests: Fail to Flush AsyncInt Mapped Memeory\n"));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -2139,11 +2139,11 @@ XhcInitializeDeviceSlot (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcInitializeDeviceSlot: Enable Slot Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcInitializeDeviceSlot: Enable Slot Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
|
||||
DEBUG ((EFI_D_INFO, "Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
DEBUG ((DEBUG_INFO, "Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
SlotId = (UINT8)EvtTrb->SlotId;
|
||||
ASSERT (SlotId != 0);
|
||||
|
||||
|
@ -2296,7 +2296,7 @@ XhcInitializeDeviceSlot (
|
|||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DeviceAddress = (UINT8) ((DEVICE_CONTEXT *) OutputContext)->Slot.DeviceAddress;
|
||||
DEBUG ((EFI_D_INFO, " Address %d assigned successfully\n", DeviceAddress));
|
||||
DEBUG ((DEBUG_INFO, " Address %d assigned successfully\n", DeviceAddress));
|
||||
Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
|
||||
} else {
|
||||
DEBUG ((DEBUG_ERROR, " Slot %d address not assigned successfully. Status = %r\n", SlotId, Status));
|
||||
|
@ -2352,11 +2352,11 @@ XhcInitializeDeviceSlot64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcInitializeDeviceSlot64: Enable Slot Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcInitializeDeviceSlot64: Enable Slot Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
|
||||
DEBUG ((EFI_D_INFO, "Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
DEBUG ((DEBUG_INFO, "Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
SlotId = (UINT8)EvtTrb->SlotId;
|
||||
ASSERT (SlotId != 0);
|
||||
|
||||
|
@ -2509,7 +2509,7 @@ XhcInitializeDeviceSlot64 (
|
|||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DeviceAddress = (UINT8) ((DEVICE_CONTEXT_64 *) OutputContext)->Slot.DeviceAddress;
|
||||
DEBUG ((EFI_D_INFO, " Address %d assigned successfully\n", DeviceAddress));
|
||||
DEBUG ((DEBUG_INFO, " Address %d assigned successfully\n", DeviceAddress));
|
||||
Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
|
||||
} else {
|
||||
DEBUG ((DEBUG_ERROR, " Slot %d address not assigned successfully. Status = %r\n", SlotId, Status));
|
||||
|
@ -2556,7 +2556,7 @@ XhcDisableSlotCmd (
|
|||
Status = XhcDisableSlotCmd (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
Xhc->UsbDevContext[Index + 1].SlotId = 0;
|
||||
}
|
||||
}
|
||||
|
@ -2564,7 +2564,7 @@ XhcDisableSlotCmd (
|
|||
//
|
||||
// Construct the disable slot command
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Disable device slot %d!\n", SlotId));
|
||||
DEBUG ((DEBUG_INFO, "Disable device slot %d!\n", SlotId));
|
||||
|
||||
ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
|
||||
CmdTrbDisSlot.CycleBit = 1;
|
||||
|
@ -2577,7 +2577,7 @@ XhcDisableSlotCmd (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2663,7 +2663,7 @@ XhcDisableSlotCmd64 (
|
|||
Status = XhcDisableSlotCmd64 (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
Xhc->UsbDevContext[Index + 1].SlotId = 0;
|
||||
}
|
||||
}
|
||||
|
@ -2671,7 +2671,7 @@ XhcDisableSlotCmd64 (
|
|||
//
|
||||
// Construct the disable slot command
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Disable device slot %d!\n", SlotId));
|
||||
DEBUG ((DEBUG_INFO, "Disable device slot %d!\n", SlotId));
|
||||
|
||||
ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
|
||||
CmdTrbDisSlot.CycleBit = 1;
|
||||
|
@ -2684,7 +2684,7 @@ XhcDisableSlotCmd64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2851,7 +2851,7 @@ XhcInitializeEndpointContext (
|
|||
//
|
||||
// Do not support isochronous transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
case USB_ENDPOINT_INTERRUPT:
|
||||
|
@ -2903,9 +2903,9 @@ XhcInitializeEndpointContext (
|
|||
//
|
||||
// Do not support control transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
}
|
||||
|
@ -3043,7 +3043,7 @@ XhcInitializeEndpointContext64 (
|
|||
//
|
||||
// Do not support isochronous transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext64: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext64: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
case USB_ENDPOINT_INTERRUPT:
|
||||
|
@ -3095,9 +3095,9 @@ XhcInitializeEndpointContext64 (
|
|||
//
|
||||
// Do not support control transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext64: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext64: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "XhcInitializeEndpointContext64: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcInitializeEndpointContext64: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
}
|
||||
|
@ -3192,7 +3192,7 @@ XhcSetConfigCmd (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Endpoint\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -3200,7 +3200,7 @@ XhcSetConfigCmd (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSetConfigCmd: Config Endpoint Failed, Status = %r\n", Status));
|
||||
} else {
|
||||
Xhc->UsbDevContext[SlotId].ActiveConfiguration = ConfigDesc->ConfigurationValue;
|
||||
}
|
||||
|
@ -3282,7 +3282,7 @@ XhcSetConfigCmd64 (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Endpoint\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -3290,7 +3290,7 @@ XhcSetConfigCmd64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSetConfigCmd64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
} else {
|
||||
Xhc->UsbDevContext[SlotId].ActiveConfiguration = ConfigDesc->ConfigurationValue;
|
||||
}
|
||||
|
@ -3323,7 +3323,7 @@ XhcStopEndpoint (
|
|||
EVT_TRB_COMMAND_COMPLETION *EvtTrb;
|
||||
CMD_TRB_STOP_ENDPOINT CmdTrbStopED;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcStopEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcStopEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// When XhcCheckUrbResult waits for the Stop_Endpoint completion, it also checks
|
||||
|
@ -3363,7 +3363,7 @@ XhcStopEndpoint (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcStopEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcStopEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
Xhc->PendingUrb = NULL;
|
||||
|
@ -3394,7 +3394,7 @@ XhcResetEndpoint (
|
|||
EVT_TRB_COMMAND_COMPLETION *EvtTrb;
|
||||
CMD_TRB_RESET_ENDPOINT CmdTrbResetED;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcResetEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcResetEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// Send stop endpoint command to transit Endpoint from running to stop state
|
||||
|
@ -3411,7 +3411,7 @@ XhcResetEndpoint (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcResetEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcResetEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -3444,7 +3444,7 @@ XhcSetTrDequeuePointer (
|
|||
CMD_SET_TR_DEQ_POINTER CmdSetTRDeq;
|
||||
EFI_PHYSICAL_ADDRESS PhyAddr;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcSetTrDequeuePointer: Slot = 0x%x, Dci = 0x%x, Urb = 0x%x\n", SlotId, Dci, Urb));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetTrDequeuePointer: Slot = 0x%x, Dci = 0x%x, Urb = 0x%x\n", SlotId, Dci, Urb));
|
||||
|
||||
//
|
||||
// Send stop endpoint command to transit Endpoint from running to stop state
|
||||
|
@ -3464,7 +3464,7 @@ XhcSetTrDequeuePointer (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSetTrDequeuePointer: Set TR Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSetTrDequeuePointer: Set TR Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -3652,7 +3652,7 @@ XhcSetInterface (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "SetInterface: Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "SetInterface: Configure Endpoint\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -3660,7 +3660,7 @@ XhcSetInterface (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SetInterface: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SetInterface: Config Endpoint Failed, Status = %r\n", Status));
|
||||
} else {
|
||||
//
|
||||
// Update the active AlternateSetting.
|
||||
|
@ -3854,7 +3854,7 @@ XhcSetInterface64 (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "SetInterface64: Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "SetInterface64: Configure Endpoint\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -3862,7 +3862,7 @@ XhcSetInterface64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SetInterface64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SetInterface64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
} else {
|
||||
//
|
||||
// Update the active AlternateSetting.
|
||||
|
@ -3916,7 +3916,7 @@ XhcEvaluateContext (
|
|||
CmdTrbEvalu.CycleBit = 1;
|
||||
CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
|
||||
CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Evaluate context\n"));
|
||||
DEBUG ((DEBUG_INFO, "Evaluate context\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
|
||||
|
@ -3924,7 +3924,7 @@ XhcEvaluateContext (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcEvaluateContext: Evaluate Context Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcEvaluateContext: Evaluate Context Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -3971,7 +3971,7 @@ XhcEvaluateContext64 (
|
|||
CmdTrbEvalu.CycleBit = 1;
|
||||
CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
|
||||
CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Evaluate context\n"));
|
||||
DEBUG ((DEBUG_INFO, "Evaluate context\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
|
||||
|
@ -3979,7 +3979,7 @@ XhcEvaluateContext64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcEvaluateContext64: Evaluate Context Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcEvaluateContext64: Evaluate Context Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -4040,7 +4040,7 @@ XhcConfigHubContext (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Hub Slot Context\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Hub Slot Context\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -4048,7 +4048,7 @@ XhcConfigHubContext (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcConfigHubContext: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcConfigHubContext: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -4108,7 +4108,7 @@ XhcConfigHubContext64 (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Hub Slot Context\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Hub Slot Context\n"));
|
||||
Status = XhcCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -4116,9 +4116,7 @@ XhcConfigHubContext64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcConfigHubContext64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcConfigHubContext64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -386,7 +386,7 @@ XhcPeiResetHC (
|
|||
MicroSecondDelay (1000);
|
||||
Status = XhcPeiWaitOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_RESET, FALSE, Timeout);
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiResetHC: %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiResetHC: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -410,7 +410,7 @@ XhcPeiHaltHC (
|
|||
|
||||
XhcPeiClearOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_RUN);
|
||||
Status = XhcPeiWaitOpRegBit (Xhc, XHC_USBSTS_OFFSET, XHC_USBSTS_HALT, TRUE, Timeout);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiHaltHC: %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiHaltHC: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -434,7 +434,7 @@ XhcPeiRunHC (
|
|||
|
||||
XhcPeiSetOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_RUN);
|
||||
Status = XhcPeiWaitOpRegBit (Xhc, XHC_USBSTS_OFFSET, XHC_USBSTS_HALT, FALSE, Timeout);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiRunHC: %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiRunHC: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -544,7 +544,7 @@ XhcPeiControlTransfer (
|
|||
Len = 0;
|
||||
|
||||
if (XhcPeiIsHalt (Xhc) || XhcPeiIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiControlTransfer: HC is halted or has system error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiControlTransfer: HC is halted or has system error\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -611,7 +611,7 @@ XhcPeiControlTransfer (
|
|||
);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiControlTransfer: failed to create URB"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiControlTransfer: failed to create URB"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
@ -631,7 +631,7 @@ XhcPeiControlTransfer (
|
|||
//
|
||||
RecoveryStatus = XhcPeiDequeueTrbFromEndpoint(Xhc, Urb);
|
||||
if (EFI_ERROR(RecoveryStatus)) {
|
||||
DEBUG((EFI_D_ERROR, "XhcPeiControlTransfer: XhcPeiDequeueTrbFromEndpoint failed\n"));
|
||||
DEBUG((DEBUG_ERROR, "XhcPeiControlTransfer: XhcPeiDequeueTrbFromEndpoint failed\n"));
|
||||
}
|
||||
XhcPeiFreeUrb (Xhc, Urb);
|
||||
goto ON_EXIT;
|
||||
|
@ -641,7 +641,7 @@ XhcPeiControlTransfer (
|
|||
} else if ((*TransferResult == EFI_USB_ERR_STALL) || (*TransferResult == EFI_USB_ERR_BABBLE)) {
|
||||
RecoveryStatus = XhcPeiRecoverHaltedEndpoint(Xhc, Urb);
|
||||
if (EFI_ERROR (RecoveryStatus)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiControlTransfer: XhcPeiRecoverHaltedEndpoint failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiControlTransfer: XhcPeiRecoverHaltedEndpoint failed\n"));
|
||||
}
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
XhcPeiFreeUrb (Xhc, Urb);
|
||||
|
@ -718,7 +718,7 @@ XhcPeiControlTransfer (
|
|||
// Don't support multi-TT feature for super speed hub now.
|
||||
//
|
||||
MTT = 0;
|
||||
DEBUG ((EFI_D_ERROR, "XHCI: Don't support multi-TT feature for Hub now. (force to disable MTT)\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XHCI: Don't support multi-TT feature for Hub now. (force to disable MTT)\n"));
|
||||
} else {
|
||||
MTT = 0;
|
||||
}
|
||||
|
@ -825,7 +825,7 @@ XhcPeiControlTransfer (
|
|||
ON_EXIT:
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiControlTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -911,7 +911,7 @@ XhcPeiBulkTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (XhcPeiIsHalt (Xhc) || XhcPeiIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiBulkTransfer: HC is halted or has system error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiBulkTransfer: HC is halted or has system error\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -942,7 +942,7 @@ XhcPeiBulkTransfer (
|
|||
);
|
||||
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiBulkTransfer: failed to create URB\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiBulkTransfer: failed to create URB\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
@ -958,7 +958,7 @@ XhcPeiBulkTransfer (
|
|||
//
|
||||
RecoveryStatus = XhcPeiDequeueTrbFromEndpoint(Xhc, Urb);
|
||||
if (EFI_ERROR(RecoveryStatus)) {
|
||||
DEBUG((EFI_D_ERROR, "XhcPeiBulkTransfer: XhcPeiDequeueTrbFromEndpoint failed\n"));
|
||||
DEBUG((DEBUG_ERROR, "XhcPeiBulkTransfer: XhcPeiDequeueTrbFromEndpoint failed\n"));
|
||||
}
|
||||
} else {
|
||||
if (*TransferResult == EFI_USB_NOERROR) {
|
||||
|
@ -966,7 +966,7 @@ XhcPeiBulkTransfer (
|
|||
} else if ((*TransferResult == EFI_USB_ERR_STALL) || (*TransferResult == EFI_USB_ERR_BABBLE)) {
|
||||
RecoveryStatus = XhcPeiRecoverHaltedEndpoint(Xhc, Urb);
|
||||
if (EFI_ERROR (RecoveryStatus)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiBulkTransfer: XhcPeiRecoverHaltedEndpoint failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiBulkTransfer: XhcPeiRecoverHaltedEndpoint failed\n"));
|
||||
}
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
@ -977,7 +977,7 @@ XhcPeiBulkTransfer (
|
|||
ON_EXIT:
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiBulkTransfer: error - %r, transfer - %x\n", Status, *TransferResult));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -1011,7 +1011,7 @@ XhcPeiGetRootHubPortNumber (
|
|||
}
|
||||
|
||||
*PortNumber = XhcDev->HcSParams1.Data.MaxPorts;
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiGetRootHubPortNumber: PortNumber = %x\n", *PortNumber));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiGetRootHubPortNumber: PortNumber = %x\n", *PortNumber));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -1054,7 +1054,7 @@ XhcPeiClearRootHubPortFeature (
|
|||
|
||||
Offset = (UINT32) (XHC_PORTSC_OFFSET + (0x10 * PortNumber));
|
||||
State = XhcPeiReadOpReg (Xhc, Offset);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiClearRootHubPortFeature: Port: %x State: %x\n", PortNumber, State));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiClearRootHubPortFeature: Port: %x State: %x\n", PortNumber, State));
|
||||
|
||||
//
|
||||
// Mask off the port status change bits, these bits are
|
||||
|
@ -1148,7 +1148,7 @@ XhcPeiClearRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiClearRootHubPortFeature: PortFeature: %x Status = %r\n", PortFeature, Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiClearRootHubPortFeature: PortFeature: %x Status = %r\n", PortFeature, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1189,7 +1189,7 @@ XhcPeiSetRootHubPortFeature (
|
|||
|
||||
Offset = (UINT32) (XHC_PORTSC_OFFSET + (0x10 * PortNumber));
|
||||
State = XhcPeiReadOpReg (Xhc, Offset);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetRootHubPortFeature: Port: %x State: %x\n", PortNumber, State));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetRootHubPortFeature: Port: %x State: %x\n", PortNumber, State));
|
||||
|
||||
//
|
||||
// Mask off the port status change bits, these bits are
|
||||
|
@ -1256,7 +1256,7 @@ XhcPeiSetRootHubPortFeature (
|
|||
}
|
||||
|
||||
ON_EXIT:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetRootHubPortFeature: PortFeature: %x Status = %r\n", PortFeature, Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetRootHubPortFeature: PortFeature: %x Status = %r\n", PortFeature, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1307,7 +1307,7 @@ XhcPeiGetRootHubPortStatus (
|
|||
|
||||
Offset = (UINT32) (XHC_PORTSC_OFFSET + (0x10 * PortNumber));
|
||||
State = XhcPeiReadOpReg (Xhc, Offset);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiGetRootHubPortStatus: Port: %x State: %x\n", PortNumber, State));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiGetRootHubPortStatus: Port: %x State: %x\n", PortNumber, State));
|
||||
|
||||
//
|
||||
// According to XHCI 1.1 spec November 2017,
|
||||
|
@ -1371,7 +1371,7 @@ XhcPeiGetRootHubPortStatus (
|
|||
ParentRouteChart.Dword = 0;
|
||||
XhcPeiPollPortStatusChange (Xhc, ParentRouteChart, PortNumber, PortStatus);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiGetRootHubPortStatus: PortChangeStatus: %x PortStatus: %x\n", PortStatus->PortChangeStatus, PortStatus->PortStatus));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiGetRootHubPortStatus: PortChangeStatus: %x PortStatus: %x\n", PortStatus->PortChangeStatus, PortStatus->PortStatus));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -1501,14 +1501,14 @@ XhcPeimEntry (
|
|||
PageSize = XhcPeiReadOpReg (XhcDev, XHC_PAGESIZE_OFFSET) & XHC_PAGESIZE_MASK;
|
||||
XhcDev->PageSize = 1 << (HighBitSet32 (PageSize) + 12);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: UsbHostControllerBaseAddress: %x\n", XhcDev->UsbHostControllerBaseAddress));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: CapLength: %x\n", XhcDev->CapLength));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: HcSParams1: %x\n", XhcDev->HcSParams1.Dword));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: HcSParams2: %x\n", XhcDev->HcSParams2.Dword));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: HcCParams: %x\n", XhcDev->HcCParams.Dword));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: DBOff: %x\n", XhcDev->DBOff));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: RTSOff: %x\n", XhcDev->RTSOff));
|
||||
DEBUG ((EFI_D_INFO, "XhciPei: PageSize: %x\n", XhcDev->PageSize));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: UsbHostControllerBaseAddress: %x\n", XhcDev->UsbHostControllerBaseAddress));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: CapLength: %x\n", XhcDev->CapLength));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: HcSParams1: %x\n", XhcDev->HcSParams1.Dword));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: HcSParams2: %x\n", XhcDev->HcSParams2.Dword));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: HcCParams: %x\n", XhcDev->HcCParams.Dword));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: DBOff: %x\n", XhcDev->DBOff));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: RTSOff: %x\n", XhcDev->RTSOff));
|
||||
DEBUG ((DEBUG_INFO, "XhciPei: PageSize: %x\n", XhcDev->PageSize));
|
||||
|
||||
XhcPeiResetHC (XhcDev, XHC_RESET_TIMEOUT);
|
||||
ASSERT (XhcPeiIsHalt (XhcDev));
|
||||
|
@ -1551,4 +1551,3 @@ XhcPeimEntry (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ XhcPeiCmdTransfer (
|
|||
Status = EFI_DEVICE_ERROR;
|
||||
|
||||
if (XhcPeiIsHalt (Xhc) || XhcPeiIsSysError (Xhc)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCmdTransfer: HC is halted or has system error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCmdTransfer: HC is halted or has system error\n"));
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
|
@ -90,7 +90,7 @@ XhcPeiCmdTransfer (
|
|||
//
|
||||
Urb = XhcPeiCreateCmdTrb (Xhc, CmdTrb);
|
||||
if (Urb == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCmdTransfer: failed to create URB\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCmdTransfer: failed to create URB\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
@ -168,7 +168,7 @@ XhcPeiCreateUrb (
|
|||
|
||||
Status = XhcPeiCreateTransferTrb (Xhc, Urb);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCreateUrb: XhcPeiCreateTransferTrb Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCreateUrb: XhcPeiCreateTransferTrb Failed, Status = %r\n", Status));
|
||||
FreePool (Urb);
|
||||
Urb = NULL;
|
||||
}
|
||||
|
@ -439,7 +439,7 @@ XhcPeiCreateTransferTrb (
|
|||
break;
|
||||
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "Not supported EPType 0x%x!\n",EPType));
|
||||
DEBUG ((DEBUG_INFO, "Not supported EPType 0x%x!\n",EPType));
|
||||
ASSERT (FALSE);
|
||||
break;
|
||||
}
|
||||
|
@ -478,14 +478,14 @@ XhcPeiRecoverHaltedEndpoint (
|
|||
}
|
||||
Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiRecoverHaltedEndpoint: Recovery Halted Slot = %x, Dci = %x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiRecoverHaltedEndpoint: Recovery Halted Slot = %x, Dci = %x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// 1) Send Reset endpoint command to transit from halt to stop state
|
||||
//
|
||||
Status = XhcPeiResetEndpoint (Xhc, SlotId, Dci);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiRecoverHaltedEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiRecoverHaltedEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -494,7 +494,7 @@ XhcPeiRecoverHaltedEndpoint (
|
|||
//
|
||||
Status = XhcPeiSetTrDequeuePointer (Xhc, SlotId, Dci, Urb);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiRecoverHaltedEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiRecoverHaltedEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -537,14 +537,14 @@ XhcPeiDequeueTrbFromEndpoint (
|
|||
}
|
||||
Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiDequeueTrbFromEndpoint: Stop Slot = %x, Dci = %x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiDequeueTrbFromEndpoint: Stop Slot = %x, Dci = %x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// 1) Send Stop endpoint command to stop endpoint.
|
||||
//
|
||||
Status = XhcPeiStopEndpoint (Xhc, SlotId, Dci);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDequeueTrbFromEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDequeueTrbFromEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -553,7 +553,7 @@ XhcPeiDequeueTrbFromEndpoint (
|
|||
//
|
||||
Status = XhcPeiSetTrDequeuePointer (Xhc, SlotId, Dci, Urb);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDequeueTrbFromEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDequeueTrbFromEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
goto Done;
|
||||
}
|
||||
|
||||
|
@ -683,31 +683,31 @@ XhcPeiCheckUrbResult (
|
|||
case TRB_COMPLETION_STALL_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_STALL;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: STALL_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCheckUrbResult: STALL_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_BABBLE_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_BABBLE;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: BABBLE_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCheckUrbResult: BABBLE_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_DATA_BUFFER_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_BUFFER;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: ERR_BUFFER! Completecode = %x\n", EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCheckUrbResult: ERR_BUFFER! Completecode = %x\n", EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_USB_TRANSACTION_ERROR:
|
||||
CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: TRANSACTION_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCheckUrbResult: TRANSACTION_ERROR! Completecode = %x\n", EvtTrb->Completecode));
|
||||
goto EXIT;
|
||||
|
||||
case TRB_COMPLETION_SHORT_PACKET:
|
||||
case TRB_COMPLETION_SUCCESS:
|
||||
if (EvtTrb->Completecode == TRB_COMPLETION_SHORT_PACKET) {
|
||||
DEBUG ((EFI_D_VERBOSE, "XhcPeiCheckUrbResult: short packet happens!\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "XhcPeiCheckUrbResult: short packet happens!\n"));
|
||||
}
|
||||
|
||||
TRBType = (UINT8) (TRBPtr->Type);
|
||||
|
@ -720,7 +720,7 @@ XhcPeiCheckUrbResult (
|
|||
break;
|
||||
|
||||
default:
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: Transfer Default Error Occur! Completecode = 0x%x!\n", EvtTrb->Completecode));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiCheckUrbResult: Transfer Default Error Occur! Completecode = 0x%x!\n", EvtTrb->Completecode));
|
||||
CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
|
||||
CheckedUrb->Finished = TRUE;
|
||||
goto EXIT;
|
||||
|
@ -859,7 +859,7 @@ XhcPeiPollPortStatusChange (
|
|||
UINT8 SlotId;
|
||||
USB_DEV_ROUTE RouteChart;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiPollPortStatusChange: PortChangeStatus: %x PortStatus: %x\n", PortState->PortChangeStatus, PortState->PortStatus));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiPollPortStatusChange: PortChangeStatus: %x PortStatus: %x\n", PortState->PortChangeStatus, PortState->PortStatus));
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
|
@ -1081,11 +1081,11 @@ XhcPeiInitializeDeviceSlot (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiInitializeDeviceSlot: Enable Slot Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiInitializeDeviceSlot: Enable Slot Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
SlotId = (UINT8) EvtTrb->SlotId;
|
||||
ASSERT (SlotId != 0);
|
||||
|
||||
|
@ -1238,11 +1238,11 @@ XhcPeiInitializeDeviceSlot (
|
|||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DeviceAddress = (UINT8) OutputContext->Slot.DeviceAddress;
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Address %d assigned successfully\n", DeviceAddress));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot: Address %d assigned successfully\n", DeviceAddress));
|
||||
Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1292,11 +1292,11 @@ XhcPeiInitializeDeviceSlot64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiInitializeDeviceSlot64: Enable Slot Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiInitializeDeviceSlot64: Enable Slot Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
|
||||
SlotId = (UINT8)EvtTrb->SlotId;
|
||||
ASSERT (SlotId != 0);
|
||||
|
||||
|
@ -1449,11 +1449,11 @@ XhcPeiInitializeDeviceSlot64 (
|
|||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DeviceAddress = (UINT8) OutputContext->Slot.DeviceAddress;
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Address %d assigned successfully\n", DeviceAddress));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot64: Address %d assigned successfully\n", DeviceAddress));
|
||||
Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1493,7 +1493,7 @@ XhcPeiDisableSlotCmd (
|
|||
Status = XhcPeiDisableSlotCmd (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDisableSlotCmd: failed to disable child, ignore error\n"));
|
||||
Xhc->UsbDevContext[Index + 1].SlotId = 0;
|
||||
}
|
||||
}
|
||||
|
@ -1501,7 +1501,7 @@ XhcPeiDisableSlotCmd (
|
|||
//
|
||||
// Construct the disable slot command
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd: Disable device slot %d!\n", SlotId));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiDisableSlotCmd: Disable device slot %d!\n", SlotId));
|
||||
|
||||
ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
|
||||
CmdTrbDisSlot.CycleBit = 1;
|
||||
|
@ -1514,7 +1514,7 @@ XhcPeiDisableSlotCmd (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -1557,7 +1557,7 @@ XhcPeiDisableSlotCmd (
|
|||
Xhc->UsbDevContext[SlotId].Enabled = FALSE;
|
||||
Xhc->UsbDevContext[SlotId].SlotId = 0;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd: Disable Slot Command, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiDisableSlotCmd: Disable Slot Command, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1596,7 +1596,7 @@ XhcPeiDisableSlotCmd64 (
|
|||
Status = XhcPeiDisableSlotCmd64 (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd64: failed to disable child, ignore error\n"));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDisableSlotCmd64: failed to disable child, ignore error\n"));
|
||||
Xhc->UsbDevContext[Index + 1].SlotId = 0;
|
||||
}
|
||||
}
|
||||
|
@ -1604,7 +1604,7 @@ XhcPeiDisableSlotCmd64 (
|
|||
//
|
||||
// Construct the disable slot command
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd64: Disable device slot %d!\n", SlotId));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiDisableSlotCmd64: Disable device slot %d!\n", SlotId));
|
||||
|
||||
ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
|
||||
CmdTrbDisSlot.CycleBit = 1;
|
||||
|
@ -1617,7 +1617,7 @@ XhcPeiDisableSlotCmd64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd64: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiDisableSlotCmd64: Disable Slot Command Failed, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -1660,7 +1660,7 @@ XhcPeiDisableSlotCmd64 (
|
|||
Xhc->UsbDevContext[SlotId].Enabled = FALSE;
|
||||
Xhc->UsbDevContext[SlotId].SlotId = 0;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd64: Disable Slot Command, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiDisableSlotCmd64: Disable Slot Command, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1790,7 +1790,7 @@ XhcPeiSetConfigCmd (
|
|||
//
|
||||
// Do not support isochronous transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
case USB_ENDPOINT_INTERRUPT:
|
||||
|
@ -1833,9 +1833,9 @@ XhcPeiSetConfigCmd (
|
|||
//
|
||||
// Do not support control transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
}
|
||||
|
@ -1867,7 +1867,7 @@ XhcPeiSetConfigCmd (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "XhcSetConfigCmd: Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetConfigCmd: Configure Endpoint\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -1875,7 +1875,7 @@ XhcPeiSetConfigCmd (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSetConfigCmd: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -2007,7 +2007,7 @@ XhcPeiSetConfigCmd64 (
|
|||
//
|
||||
// Do not support isochronous transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd64: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
case USB_ENDPOINT_INTERRUPT:
|
||||
|
@ -2050,9 +2050,9 @@ XhcPeiSetConfigCmd64 (
|
|||
//
|
||||
// Do not support control transfer now.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd64: Unsupport Control EP found, Transfer ring is not allocated.\n"));
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetConfigCmd64: Unknown EP found, Transfer ring is not allocated.\n"));
|
||||
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
|
||||
continue;
|
||||
}
|
||||
|
@ -2086,7 +2086,7 @@ XhcPeiSetConfigCmd64 (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "XhcSetConfigCmd64: Configure Endpoint\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcSetConfigCmd64: Configure Endpoint\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -2094,7 +2094,7 @@ XhcPeiSetConfigCmd64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcSetConfigCmd64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -2142,7 +2142,7 @@ XhcPeiEvaluateContext (
|
|||
CmdTrbEvalu.CycleBit = 1;
|
||||
CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
|
||||
CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "XhcEvaluateContext: Evaluate context\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcEvaluateContext: Evaluate context\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
|
||||
|
@ -2150,7 +2150,7 @@ XhcPeiEvaluateContext (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcEvaluateContext: Evaluate Context Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcEvaluateContext: Evaluate Context Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -2196,7 +2196,7 @@ XhcPeiEvaluateContext64 (
|
|||
CmdTrbEvalu.CycleBit = 1;
|
||||
CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
|
||||
CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "XhcEvaluateContext64: Evaluate context 64\n"));
|
||||
DEBUG ((DEBUG_INFO, "XhcEvaluateContext64: Evaluate context 64\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
|
||||
|
@ -2204,7 +2204,7 @@ XhcPeiEvaluateContext64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcEvaluateContext64: Evaluate Context Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcEvaluateContext64: Evaluate Context Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -2264,7 +2264,7 @@ XhcPeiConfigHubContext (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Hub Slot Context\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Hub Slot Context\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -2272,7 +2272,7 @@ XhcPeiConfigHubContext (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcConfigHubContext: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcConfigHubContext: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -2332,7 +2332,7 @@ XhcPeiConfigHubContext64 (
|
|||
CmdTrbCfgEP.CycleBit = 1;
|
||||
CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
|
||||
CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
|
||||
DEBUG ((EFI_D_INFO, "Configure Hub Slot Context 64\n"));
|
||||
DEBUG ((DEBUG_INFO, "Configure Hub Slot Context 64\n"));
|
||||
Status = XhcPeiCmdTransfer (
|
||||
Xhc,
|
||||
(TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
|
||||
|
@ -2340,7 +2340,7 @@ XhcPeiConfigHubContext64 (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcConfigHubContext64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcConfigHubContext64: Config Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -2368,7 +2368,7 @@ XhcPeiStopEndpoint (
|
|||
EVT_TRB_COMMAND_COMPLETION *EvtTrb;
|
||||
CMD_TRB_STOP_ENDPOINT CmdTrbStopED;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiStopEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiStopEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// Send stop endpoint command to transit Endpoint from running to stop state
|
||||
|
@ -2385,7 +2385,7 @@ XhcPeiStopEndpoint (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiStopEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiStopEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -2414,7 +2414,7 @@ XhcPeiResetEndpoint (
|
|||
EVT_TRB_COMMAND_COMPLETION *EvtTrb;
|
||||
CMD_TRB_RESET_ENDPOINT CmdTrbResetED;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiResetEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiResetEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
|
||||
|
||||
//
|
||||
// Send stop endpoint command to transit Endpoint from running to stop state
|
||||
|
@ -2431,7 +2431,7 @@ XhcPeiResetEndpoint (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiResetEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiResetEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -2464,7 +2464,7 @@ XhcPeiSetTrDequeuePointer (
|
|||
CMD_SET_TR_DEQ_POINTER CmdSetTRDeq;
|
||||
EFI_PHYSICAL_ADDRESS PhyAddr;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiSetTrDequeuePointer: Slot = 0x%x, Dci = 0x%x, Urb = 0x%x\n", SlotId, Dci, Urb));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiSetTrDequeuePointer: Slot = 0x%x, Dci = 0x%x, Urb = 0x%x\n", SlotId, Dci, Urb));
|
||||
|
||||
//
|
||||
// Send stop endpoint command to transit Endpoint from running to stop state
|
||||
|
@ -2484,7 +2484,7 @@ XhcPeiSetTrDequeuePointer (
|
|||
(TRB_TEMPLATE **) (UINTN) &EvtTrb
|
||||
);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "XhcPeiSetTrDequeuePointer: Set TR Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "XhcPeiSetTrDequeuePointer: Set TR Dequeue Pointer Failed, Status = %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -2938,7 +2938,7 @@ XhcPeiInitSched (
|
|||
XhcPeiWriteOpReg (Xhc, XHC_DCBAAP_OFFSET, XHC_LOW_32BIT (DcbaaPhy));
|
||||
XhcPeiWriteOpReg (Xhc, XHC_DCBAAP_OFFSET + 4, XHC_HIGH_32BIT (DcbaaPhy));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitSched:DCBAA=0x%x\n", Xhc->DCBAA));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitSched:DCBAA=0x%x\n", Xhc->DCBAA));
|
||||
|
||||
//
|
||||
// Define the Command Ring Dequeue Pointer by programming the Command Ring Control Register
|
||||
|
@ -2962,7 +2962,7 @@ XhcPeiInitSched (
|
|||
XhcPeiWriteOpReg (Xhc, XHC_CRCR_OFFSET, XHC_LOW_32BIT (CmdRingPhy));
|
||||
XhcPeiWriteOpReg (Xhc, XHC_CRCR_OFFSET + 4, XHC_HIGH_32BIT (CmdRingPhy));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitSched:XHC_CRCR=0x%x\n", Xhc->CmdRing.RingSeg0));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitSched:XHC_CRCR=0x%x\n", Xhc->CmdRing.RingSeg0));
|
||||
|
||||
//
|
||||
// Disable the 'interrupter enable' bit in USB_CMD
|
||||
|
@ -2978,7 +2978,7 @@ XhcPeiInitSched (
|
|||
// Allocate EventRing for Cmd, Ctrl, Bulk, Interrupt, AsynInterrupt transfer
|
||||
//
|
||||
XhcPeiCreateEventRing (Xhc, &Xhc->EventRing);
|
||||
DEBUG ((EFI_D_INFO, "XhcPeiInitSched:XHC_EVENTRING=0x%x\n", Xhc->EventRing.EventRingSeg0));
|
||||
DEBUG ((DEBUG_INFO, "XhcPeiInitSched:XHC_EVENTRING=0x%x\n", Xhc->EventRing.EventRingSeg0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -3031,4 +3031,3 @@ XhcPeiFreeSched (
|
|||
Xhc->MemPool = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1420,7 +1420,7 @@ ScsiDiskAsyncUnmapNotify (
|
|||
Status = CheckHostAdapterStatus (CommandPacket->HostAdapterStatus);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((
|
||||
EFI_D_ERROR,
|
||||
DEBUG_ERROR,
|
||||
"ScsiDiskAsyncUnmapNotify: Host adapter indicating error status 0x%x.\n",
|
||||
CommandPacket->HostAdapterStatus
|
||||
));
|
||||
|
@ -1432,7 +1432,7 @@ ScsiDiskAsyncUnmapNotify (
|
|||
Status = CheckTargetStatus (CommandPacket->TargetStatus);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((
|
||||
EFI_D_ERROR,
|
||||
DEBUG_ERROR,
|
||||
"ScsiDiskAsyncUnmapNotify: Target indicating error status 0x%x.\n",
|
||||
CommandPacket->HostAdapterStatus
|
||||
));
|
||||
|
@ -1614,7 +1614,7 @@ ScsiDiskUnmap (
|
|||
Status = CheckHostAdapterStatus (CommandPacket->HostAdapterStatus);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((
|
||||
EFI_D_ERROR,
|
||||
DEBUG_ERROR,
|
||||
"ScsiDiskUnmap: Host adapter indicating error status 0x%x.\n",
|
||||
CommandPacket->HostAdapterStatus
|
||||
));
|
||||
|
@ -1626,7 +1626,7 @@ ScsiDiskUnmap (
|
|||
Status = CheckTargetStatus (CommandPacket->TargetStatus);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((
|
||||
EFI_D_ERROR,
|
||||
DEBUG_ERROR,
|
||||
"ScsiDiskUnmap: Target indicating error status 0x%x.\n",
|
||||
CommandPacket->HostAdapterStatus
|
||||
));
|
||||
|
@ -2510,7 +2510,7 @@ ScsiDiskInquiryDevice (
|
|||
// Sanity checks for coping with broken devices
|
||||
//
|
||||
if (PageLength > sizeof SupportedVpdPages->SupportedVpdPageList) {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"%a: invalid PageLength (%u) in Supported VPD Pages page\n",
|
||||
__FUNCTION__, (UINT32)PageLength));
|
||||
PageLength = 0;
|
||||
|
@ -2519,7 +2519,7 @@ ScsiDiskInquiryDevice (
|
|||
if ((PageLength > 0) &&
|
||||
(SupportedVpdPages->SupportedVpdPageList[0] !=
|
||||
EFI_SCSI_PAGE_CODE_SUPPORTED_VPD)) {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"%a: Supported VPD Pages page doesn't start with code 0x%02x\n",
|
||||
__FUNCTION__, EFI_SCSI_PAGE_CODE_SUPPORTED_VPD));
|
||||
PageLength = 0;
|
||||
|
@ -2535,7 +2535,7 @@ ScsiDiskInquiryDevice (
|
|||
if ((Index > 0) &&
|
||||
(SupportedVpdPages->SupportedVpdPageList[Index] <=
|
||||
SupportedVpdPages->SupportedVpdPageList[Index - 1])) {
|
||||
DEBUG ((EFI_D_WARN,
|
||||
DEBUG ((DEBUG_WARN,
|
||||
"%a: non-ascending code in Supported VPD Pages page @ %u\n",
|
||||
__FUNCTION__, Index));
|
||||
Index = 0;
|
||||
|
@ -2861,30 +2861,30 @@ DetectMediaParsingSenseKeys (
|
|||
ScsiDiskDevice->BlkIo.Media->MediaPresent = FALSE;
|
||||
ScsiDiskDevice->BlkIo.Media->LastBlock = 0;
|
||||
*Action = ACTION_NO_ACTION;
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskIsNoMedia\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskIsNoMedia\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
if (ScsiDiskIsMediaChange (SenseData, NumberOfSenseKeys)) {
|
||||
ScsiDiskDevice->BlkIo.Media->MediaId++;
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskIsMediaChange!\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskIsMediaChange!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
if (ScsiDiskIsResetBefore (SenseData, NumberOfSenseKeys)) {
|
||||
*Action = ACTION_RETRY_COMMAND_LATER;
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskIsResetBefore!\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskIsResetBefore!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
if (ScsiDiskIsMediaError (SenseData, NumberOfSenseKeys)) {
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskIsMediaError\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskIsMediaError\n"));
|
||||
*Action = ACTION_RETRY_WITH_BACKOFF_ALGO;
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if (ScsiDiskIsHardwareError (SenseData, NumberOfSenseKeys)) {
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskIsHardwareError\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskIsHardwareError\n"));
|
||||
*Action = ACTION_RETRY_WITH_BACKOFF_ALGO;
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
@ -2892,7 +2892,7 @@ DetectMediaParsingSenseKeys (
|
|||
if (!ScsiDiskIsDriveReady (SenseData, NumberOfSenseKeys, &RetryLater)) {
|
||||
if (RetryLater) {
|
||||
*Action = ACTION_RETRY_COMMAND_LATER;
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: ScsiDiskDriveNotReady!\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: ScsiDiskDriveNotReady!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
*Action = ACTION_NO_ACTION;
|
||||
|
@ -2900,7 +2900,7 @@ DetectMediaParsingSenseKeys (
|
|||
}
|
||||
|
||||
*Action = ACTION_RETRY_WITH_BACKOFF_ALGO;
|
||||
DEBUG ((EFI_D_VERBOSE, "ScsiDisk: Sense Key = 0x%x ASC = 0x%x!\n", SenseData->Sense_Key, SenseData->Addnl_Sense_Code));
|
||||
DEBUG ((DEBUG_VERBOSE, "ScsiDisk: Sense Key = 0x%x ASC = 0x%x!\n", SenseData->Sense_Key, SenseData->Addnl_Sense_Code));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -4206,7 +4206,7 @@ BackOff:
|
|||
}
|
||||
|
||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||
DEBUG ((EFI_D_ERROR, "ScsiDiskRead10: Check Condition happened!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ScsiDiskRead10: Check Condition happened!\n"));
|
||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||
*NeedRetry = TRUE;
|
||||
|
@ -4330,7 +4330,7 @@ BackOff:
|
|||
}
|
||||
|
||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||
DEBUG ((EFI_D_ERROR, "ScsiDiskWrite10: Check Condition happened!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite10: Check Condition happened!\n"));
|
||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||
*NeedRetry = TRUE;
|
||||
|
@ -4453,7 +4453,7 @@ BackOff:
|
|||
}
|
||||
|
||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||
DEBUG ((EFI_D_ERROR, "ScsiDiskRead16: Check Condition happened!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ScsiDiskRead16: Check Condition happened!\n"));
|
||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||
*NeedRetry = TRUE;
|
||||
|
@ -4577,7 +4577,7 @@ BackOff:
|
|||
}
|
||||
|
||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||
DEBUG ((EFI_D_ERROR, "ScsiDiskWrite16: Check Condition happened!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite16: Check Condition happened!\n"));
|
||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||
*NeedRetry = TRUE;
|
||||
|
@ -4686,7 +4686,7 @@ ScsiDiskNotify (
|
|||
}
|
||||
|
||||
if (Request->TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) {
|
||||
DEBUG ((EFI_D_ERROR, "ScsiDiskNotify: Check Condition happened!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ScsiDiskNotify: Check Condition happened!\n"));
|
||||
|
||||
Status = DetectMediaParsingSenseKeys (
|
||||
ScsiDiskDevice,
|
||||
|
@ -5948,7 +5948,7 @@ DetermineInstallEraseBlock (
|
|||
if (((CapacityData16->LowestAlignLogic2 & BIT7) == 0) ||
|
||||
((CapacityData16->LowestAlignLogic2 & BIT6) == 0)) {
|
||||
DEBUG ((
|
||||
EFI_D_VERBOSE,
|
||||
DEBUG_VERBOSE,
|
||||
"ScsiDisk EraseBlock: Either TPE or TPRZ is not set: 0x%x.\n",
|
||||
CapacityData16->LowestAlignLogic2
|
||||
));
|
||||
|
@ -5958,7 +5958,7 @@ DetermineInstallEraseBlock (
|
|||
}
|
||||
} else {
|
||||
DEBUG ((
|
||||
EFI_D_VERBOSE,
|
||||
DEBUG_VERBOSE,
|
||||
"ScsiDisk EraseBlock: ReadCapacity16 failed with status %r.\n",
|
||||
CommandStatus
|
||||
));
|
||||
|
@ -5973,7 +5973,7 @@ DetermineInstallEraseBlock (
|
|||
if ((ScsiDiskDevice->UnmapInfo.MaxLbaCnt == 0) ||
|
||||
(ScsiDiskDevice->UnmapInfo.MaxBlkDespCnt == 0)) {
|
||||
DEBUG ((
|
||||
EFI_D_VERBOSE,
|
||||
DEBUG_VERBOSE,
|
||||
"ScsiDisk EraseBlock: The device server does not implement the UNMAP command.\n"
|
||||
));
|
||||
|
||||
|
|
|
@ -741,7 +741,7 @@ InitializeEmmcBlockIoPeim (
|
|||
continue;
|
||||
}
|
||||
if (Capability.SlotType != 0x1) {
|
||||
DEBUG ((EFI_D_INFO, "The slot at 0x%x is not embedded slot type\n", MmioBase[Index]));
|
||||
DEBUG ((DEBUG_INFO, "The slot at 0x%x is not embedded slot type\n", MmioBase[Index]));
|
||||
Status = EFI_UNSUPPORTED;
|
||||
continue;
|
||||
}
|
||||
|
@ -773,12 +773,12 @@ InitializeEmmcBlockIoPeim (
|
|||
|
||||
ExtCsd = &Slot->ExtCsd;
|
||||
if (ExtCsd->ExtCsdRev < 5) {
|
||||
DEBUG ((EFI_D_ERROR, "The EMMC device version is too low, we don't support!!!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "The EMMC device version is too low, we don't support!!!\n"));
|
||||
Status = EFI_UNSUPPORTED;
|
||||
continue;
|
||||
}
|
||||
if ((ExtCsd->PartitioningSupport & BIT0) != BIT0) {
|
||||
DEBUG ((EFI_D_ERROR, "The EMMC device doesn't support Partition Feature!!!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "The EMMC device doesn't support Partition Feature!!!\n"));
|
||||
Status = EFI_UNSUPPORTED;
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -304,7 +304,7 @@ EmmcPeimHcReset (
|
|||
Status = EmmcPeimHcRwMmio (Bar + EMMC_HC_SW_RST, FALSE, sizeof (SwReset), &SwReset);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimHcReset: write full 1 fails: %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimHcReset: write full 1 fails: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -316,7 +316,7 @@ EmmcPeimHcReset (
|
|||
EMMC_TIMEOUT
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "EmmcPeimHcReset: reset done with %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "EmmcPeimHcReset: reset done with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -556,7 +556,7 @@ EmmcPeimHcClockSupply (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BaseClkFreq %dMHz Divisor %d ClockFreq %dKhz\n", BaseClkFreq, Divisor, ClockFreq));
|
||||
DEBUG ((DEBUG_INFO, "BaseClkFreq %dMHz Divisor %d ClockFreq %dKhz\n", BaseClkFreq, Divisor, ClockFreq));
|
||||
|
||||
Status = EmmcPeimHcRwMmio (Bar + EMMC_HC_CTRL_VER, TRUE, sizeof (ControllerVer), &ControllerVer);
|
||||
if (EFI_ERROR (Status)) {
|
||||
|
@ -578,7 +578,7 @@ EmmcPeimHcClockSupply (
|
|||
ASSERT (Divisor <= 0x80);
|
||||
ClockCtrl = (Divisor & 0xFF) << 8;
|
||||
} else {
|
||||
DEBUG ((EFI_D_ERROR, "Unknown SD Host Controller Spec version [0x%x]!!!\n", ControllerVer));
|
||||
DEBUG ((DEBUG_ERROR, "Unknown SD Host Controller Spec version [0x%x]!!!\n", ControllerVer));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -596,7 +596,7 @@ EmmcPeimHcClockSupply (
|
|||
ClockCtrl |= BIT0;
|
||||
Status = EmmcPeimHcRwMmio (Bar + EMMC_HC_CLOCK_CTRL, FALSE, sizeof (ClockCtrl), &ClockCtrl);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set SDCLK Frequency Select and Internal Clock Enable fields fails\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Set SDCLK Frequency Select and Internal Clock Enable fields fails\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -936,7 +936,7 @@ BuildAdmaDescTable (
|
|||
// for 32-bit address descriptor table.
|
||||
//
|
||||
if ((Data & (BIT0 | BIT1)) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "The buffer [0x%x] to construct ADMA desc is not aligned to 4 bytes boundary!\n", Data));
|
||||
DEBUG ((DEBUG_INFO, "The buffer [0x%x] to construct ADMA desc is not aligned to 4 bytes boundary!\n", Data));
|
||||
}
|
||||
|
||||
Entries = DivU64x32 ((DataLen + ADMA_MAX_DATA_PER_LINE - 1), ADMA_MAX_DATA_PER_LINE);
|
||||
|
@ -2330,7 +2330,7 @@ EmmcPeimTuningClkForHs200 (
|
|||
}
|
||||
} while (++Retry < 40);
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimTuningClkForHs200: Send tuning block fails at %d times with HostCtrl2 %02x\n", Retry, HostCtrl2));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimTuningClkForHs200: Send tuning block fails at %d times with HostCtrl2 %02x\n", Retry, HostCtrl2));
|
||||
//
|
||||
// Abort the tuning procedure and reset the tuning circuit.
|
||||
//
|
||||
|
@ -2720,7 +2720,7 @@ EmmcPeimSetBusMode (
|
|||
|
||||
Status = EmmcPeimGetCsd (Slot, Rca, &Slot->Csd);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimSetBusMode: EmmcPeimGetCsd fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimSetBusMode: EmmcPeimGetCsd fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -2732,13 +2732,13 @@ EmmcPeimSetBusMode (
|
|||
|
||||
Status = EmmcPeimSelect (Slot, Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimSetBusMode: EmmcPeimSelect fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimSetBusMode: EmmcPeimSelect fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = EmmcPeimHcGetCapability (Slot->EmmcHcBase, &Capability);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimSetBusMode: EmmcPeimHcGetCapability fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimSetBusMode: EmmcPeimHcGetCapability fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -2756,7 +2756,7 @@ EmmcPeimSetBusMode (
|
|||
//
|
||||
Status = EmmcPeimGetExtCsd (Slot, &Slot->ExtCsd);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimSetBusMode: EmmcPeimGetExtCsd fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimSetBusMode: EmmcPeimGetExtCsd fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2802,7 +2802,7 @@ EmmcPeimSetBusMode (
|
|||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "HsTiming %d ClockFreq %d BusWidth %d Ddr %a\n", HsTiming, ClockFreq, BusWidth, IsDdr ? "TRUE":"FALSE"));
|
||||
DEBUG ((DEBUG_INFO, "HsTiming %d ClockFreq %d BusWidth %d Ddr %a\n", HsTiming, ClockFreq, BusWidth, IsDdr ? "TRUE":"FALSE"));
|
||||
|
||||
if (HsTiming == 3) {
|
||||
//
|
||||
|
@ -2847,7 +2847,7 @@ EmmcPeimIdentification (
|
|||
|
||||
Status = EmmcPeimReset (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimIdentification: EmmcPeimReset fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimIdentification: EmmcPeimReset fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -2856,12 +2856,12 @@ EmmcPeimIdentification (
|
|||
do {
|
||||
Status = EmmcPeimGetOcr (Slot, &Ocr);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimIdentification: EmmcPeimGetOcr fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimIdentification: EmmcPeimGetOcr fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
if (Retry++ == 100) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimIdentification: EmmcPeimGetOcr fails too many times\n"));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimIdentification: EmmcPeimGetOcr fails too many times\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
MicroSecondDelay (10 * 1000);
|
||||
|
@ -2869,7 +2869,7 @@ EmmcPeimIdentification (
|
|||
|
||||
Status = EmmcPeimGetAllCid (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimIdentification: EmmcPeimGetAllCid fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimIdentification: EmmcPeimGetAllCid fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2879,16 +2879,15 @@ EmmcPeimIdentification (
|
|||
Rca = 1;
|
||||
Status = EmmcPeimSetRca (Slot, Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "EmmcPeimIdentification: EmmcPeimSetRca fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "EmmcPeimIdentification: EmmcPeimSetRca fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
// Enter Data Tranfer Mode.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Found a EMMC device at slot [%d], RCA [%d]\n", Slot, Rca));
|
||||
DEBUG ((DEBUG_INFO, "Found a EMMC device at slot [%d], RCA [%d]\n", Slot, Rca));
|
||||
|
||||
Status = EmmcPeimSetBusMode (Slot, Rca);
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ AsyncIoCallback (
|
|||
Request = (EMMC_REQUEST *) Context;
|
||||
|
||||
DEBUG_CODE_BEGIN ();
|
||||
DEBUG ((EFI_D_INFO, "Emmc Async Request: CmdIndex[%d] Arg[%08x] %r\n",
|
||||
DEBUG ((DEBUG_INFO, "Emmc Async Request: CmdIndex[%d] Arg[%08x] %r\n",
|
||||
Request->SdMmcCmdBlk.CommandIndex, Request->SdMmcCmdBlk.CommandArgument,
|
||||
Request->Packet.TransactionStatus));
|
||||
DEBUG_CODE_END ();
|
||||
|
@ -2158,4 +2158,3 @@ EmmcEraseBlocks (
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -314,12 +314,12 @@ DiscoverAllPartitions (
|
|||
DumpExtCsd (ExtCsd);
|
||||
|
||||
if (ExtCsd->ExtCsdRev < 5) {
|
||||
DEBUG ((EFI_D_ERROR, "The EMMC device version is too low, we don't support!!!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "The EMMC device version is too low, we don't support!!!\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if ((ExtCsd->PartitioningSupport & BIT0) != BIT0) {
|
||||
DEBUG ((EFI_D_ERROR, "The EMMC device doesn't support Partition Feature!!!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "The EMMC device doesn't support Partition Feature!!!\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -1202,4 +1202,3 @@ InitializeEmmcDxe (
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -588,7 +588,7 @@ InitializeSdBlockIoPeim (
|
|||
continue;
|
||||
}
|
||||
if (Capability.SlotType != 0x1) {
|
||||
DEBUG ((EFI_D_INFO, "The slot at 0x%x is not embedded slot type\n", MmioBase[Index]));
|
||||
DEBUG ((DEBUG_INFO, "The slot at 0x%x is not embedded slot type\n", MmioBase[Index]));
|
||||
Status = EFI_UNSUPPORTED;
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -304,7 +304,7 @@ SdPeimHcReset (
|
|||
Status = SdPeimHcRwMmio (Bar + SD_HC_SW_RST, FALSE, sizeof (SwReset), &SwReset);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimHcReset: write full 1 fails: %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimHcReset: write full 1 fails: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -316,7 +316,7 @@ SdPeimHcReset (
|
|||
SD_TIMEOUT
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "SdPeimHcReset: reset done with %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "SdPeimHcReset: reset done with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -556,7 +556,7 @@ SdPeimHcClockSupply (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BaseClkFreq %dMHz Divisor %d ClockFreq %dKhz\n", BaseClkFreq, Divisor, ClockFreq));
|
||||
DEBUG ((DEBUG_INFO, "BaseClkFreq %dMHz Divisor %d ClockFreq %dKhz\n", BaseClkFreq, Divisor, ClockFreq));
|
||||
|
||||
Status = SdPeimHcRwMmio (Bar + SD_HC_CTRL_VER, TRUE, sizeof (ControllerVer), &ControllerVer);
|
||||
if (EFI_ERROR (Status)) {
|
||||
|
@ -578,7 +578,7 @@ SdPeimHcClockSupply (
|
|||
ASSERT (Divisor <= 0x80);
|
||||
ClockCtrl = (Divisor & 0xFF) << 8;
|
||||
} else {
|
||||
DEBUG ((EFI_D_ERROR, "Unknown SD Host Controller Spec version [0x%x]!!!\n", ControllerVer));
|
||||
DEBUG ((DEBUG_ERROR, "Unknown SD Host Controller Spec version [0x%x]!!!\n", ControllerVer));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -596,7 +596,7 @@ SdPeimHcClockSupply (
|
|||
ClockCtrl |= BIT0;
|
||||
Status = SdPeimHcRwMmio (Bar + SD_HC_CLOCK_CTRL, FALSE, sizeof (ClockCtrl), &ClockCtrl);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Set SDCLK Frequency Select and Internal Clock Enable fields fails\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Set SDCLK Frequency Select and Internal Clock Enable fields fails\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -936,7 +936,7 @@ BuildAdmaDescTable (
|
|||
// for 32-bit address descriptor table.
|
||||
//
|
||||
if ((Data & (BIT0 | BIT1)) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "The buffer [0x%x] to construct ADMA desc is not aligned to 4 bytes boundary!\n", Data));
|
||||
DEBUG ((DEBUG_INFO, "The buffer [0x%x] to construct ADMA desc is not aligned to 4 bytes boundary!\n", Data));
|
||||
}
|
||||
|
||||
Entries = DivU64x32 ((DataLen + ADMA_MAX_DATA_PER_LINE - 1), ADMA_MAX_DATA_PER_LINE);
|
||||
|
@ -2549,7 +2549,7 @@ SdPeimTuningClock (
|
|||
}
|
||||
} while (++Retry < 40);
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimTuningClock: Send tuning block fails at %d times with HostCtrl2 %02x\n", Retry, HostCtrl2));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimTuningClock: Send tuning block fails at %d times with HostCtrl2 %02x\n", Retry, HostCtrl2));
|
||||
//
|
||||
// Abort the tuning procedure and reset the tuning circuit.
|
||||
//
|
||||
|
@ -2638,7 +2638,7 @@ SdPeimSetBusMode (
|
|||
|
||||
Status = SdPeimGetCsd (Slot, Rca, &Slot->Csd);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimGetCsd fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimGetCsd fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -2649,14 +2649,14 @@ SdPeimSetBusMode (
|
|||
|
||||
Status = SdPeimSelect (Slot, Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimSelect fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimSelect fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
BusWidth = 4;
|
||||
Status = SdPeimSwitchBusWidth (Slot, Rca, BusWidth);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimSwitchBusWidth fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimSwitchBusWidth fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -2689,16 +2689,16 @@ SdPeimSetBusMode (
|
|||
AccessMode = 0;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SdPeimSetBusMode: AccessMode %d ClockFreq %d BusWidth %d\n", AccessMode, ClockFreq, BusWidth));
|
||||
DEBUG ((DEBUG_INFO, "SdPeimSetBusMode: AccessMode %d ClockFreq %d BusWidth %d\n", AccessMode, ClockFreq, BusWidth));
|
||||
|
||||
Status = SdPeimSwitch (Slot, AccessMode, 0xF, 0xF, 0xF, TRUE, SwitchResp);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimSwitch fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimSwitch fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
if ((SwitchResp[16] & 0xF) != AccessMode) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimSwitch to AccessMode %d ClockFreq %d BusWidth %d fails! The Switch response is 0x%1x\n", AccessMode, ClockFreq, BusWidth, SwitchResp[16] & 0xF));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimSwitch to AccessMode %d ClockFreq %d BusWidth %d fails! The Switch response is 0x%1x\n", AccessMode, ClockFreq, BusWidth, SwitchResp[16] & 0xF));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
//
|
||||
|
@ -2725,19 +2725,19 @@ SdPeimSetBusMode (
|
|||
|
||||
Status = SdPeimHcClockSupply (Slot->SdHcBase, ClockFreq * 1000);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimHcClockSupply %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimHcClockSupply %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
if ((AccessMode == 3) || ((AccessMode == 2) && (Capability.TuningSDR50 != 0))) {
|
||||
Status = SdPeimTuningClock (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimSetBusMode: SdPeimTuningClock fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimSetBusMode: SdPeimTuningClock fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SdPeimSetBusMode: SdPeimSetBusMode %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "SdPeimSetBusMode: SdPeimSetBusMode %r\n", Status));
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
@ -2776,7 +2776,7 @@ SdPeimIdentification (
|
|||
//
|
||||
Status = SdPeimReset (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing Cmd0 fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing Cmd0 fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2784,7 +2784,7 @@ SdPeimIdentification (
|
|||
//
|
||||
Status = SdPeimVoltageCheck (Slot, 0x1, 0xFF);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing Cmd8 fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing Cmd8 fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -2792,7 +2792,7 @@ SdPeimIdentification (
|
|||
//
|
||||
Status = SdioSendOpCond (Slot, 0, FALSE);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Found SDIO device, ignore it as we don't support\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Found SDIO device, ignore it as we don't support\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
//
|
||||
|
@ -2800,7 +2800,7 @@ SdPeimIdentification (
|
|||
//
|
||||
Status = SdPeimSendOpCond (Slot, 0, 0, FALSE, FALSE, FALSE, &Ocr);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing SdPeimSendOpCond fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing SdPeimSendOpCond fails with %r\n", Status));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -2863,12 +2863,12 @@ SdPeimIdentification (
|
|||
do {
|
||||
Status = SdPeimSendOpCond (Slot, 0, Ocr, S18r, Xpc, TRUE, &Ocr);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: SdPeimSendOpCond fails with %r Ocr %x, S18r %x, Xpc %x\n", Status, Ocr, S18r, Xpc));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: SdPeimSendOpCond fails with %r Ocr %x, S18r %x, Xpc %x\n", Status, Ocr, S18r, Xpc));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if (Retry++ == 100) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: SdPeimSendOpCond fails too many times\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: SdPeimSendOpCond fails too many times\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
MicroSecondDelay (10 * 1000);
|
||||
|
@ -2885,7 +2885,7 @@ SdPeimIdentification (
|
|||
((Ocr & BIT24) != 0)) {
|
||||
Status = SdPeimVoltageSwitch (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing SdPeimVoltageSwitch fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing SdPeimVoltageSwitch fails with %r\n", Status));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto Error;
|
||||
} else {
|
||||
|
@ -2897,7 +2897,7 @@ SdPeimIdentification (
|
|||
|
||||
SdPeimHcRwMmio (Slot->SdHcBase + SD_HC_PRESENT_STATE, TRUE, sizeof (PresentState), &PresentState);
|
||||
if (((PresentState >> 20) & 0xF) != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: SwitchVoltage fails with PresentState = 0x%x\n", PresentState));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: SwitchVoltage fails with PresentState = 0x%x\n", PresentState));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto Error;
|
||||
}
|
||||
|
@ -2908,7 +2908,7 @@ SdPeimIdentification (
|
|||
|
||||
SdPeimHcRwMmio (Slot->SdHcBase + SD_HC_HOST_CTRL2, TRUE, sizeof (HostCtrl2), &HostCtrl2);
|
||||
if ((HostCtrl2 & BIT3) == 0) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: SwitchVoltage fails with HostCtrl2 = 0x%x\n", HostCtrl2));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: SwitchVoltage fails with HostCtrl2 = 0x%x\n", HostCtrl2));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto Error;
|
||||
}
|
||||
|
@ -2919,29 +2919,29 @@ SdPeimIdentification (
|
|||
|
||||
SdPeimHcRwMmio (Slot->SdHcBase + SD_HC_PRESENT_STATE, TRUE, sizeof (PresentState), &PresentState);
|
||||
if (((PresentState >> 20) & 0xF) != 0xF) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: SwitchVoltage fails with PresentState = 0x%x, It should be 0xF\n", PresentState));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: SwitchVoltage fails with PresentState = 0x%x, It should be 0xF\n", PresentState));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto Error;
|
||||
}
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "SdPeimIdentification: Switch to 1.8v signal voltage success\n"));
|
||||
DEBUG ((DEBUG_INFO, "SdPeimIdentification: Switch to 1.8v signal voltage success\n"));
|
||||
}
|
||||
|
||||
Status = SdPeimAllSendCid (Slot);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing SdPeimAllSendCid fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing SdPeimAllSendCid fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = SdPeimSetRca (Slot, &Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SdPeimIdentification: Executing SdPeimSetRca fails with %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "SdPeimIdentification: Executing SdPeimSetRca fails with %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
// Enter Data Tranfer Mode.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Found a SD device at slot [%d]\n", Slot));
|
||||
DEBUG ((DEBUG_INFO, "Found a SD device at slot [%d]\n", Slot));
|
||||
|
||||
Status = SdPeimSetBusMode (Slot, Rca, ((Ocr & BIT24) != 0));
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ AsyncIoCallback (
|
|||
Request = (SD_REQUEST *) Context;
|
||||
|
||||
DEBUG_CODE_BEGIN ();
|
||||
DEBUG ((EFI_D_INFO, "Sd Async Request: CmdIndex[%d] Arg[%08x] %r\n",
|
||||
DEBUG ((DEBUG_INFO, "Sd Async Request: CmdIndex[%d] Arg[%08x] %r\n",
|
||||
Request->SdMmcCmdBlk.CommandIndex, Request->SdMmcCmdBlk.CommandArgument,
|
||||
Request->Packet.TransactionStatus));
|
||||
DEBUG_CODE_END ();
|
||||
|
@ -86,7 +86,7 @@ SdSetRca (
|
|||
|
||||
Status = PassThru->PassThru (PassThru, Device->Slot, &Packet, NULL);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "Set RCA succeeds with Resp0 = 0x%x\n", SdMmcStatusBlk.Resp0));
|
||||
DEBUG ((DEBUG_INFO, "Set RCA succeeds with Resp0 = 0x%x\n", SdMmcStatusBlk.Resp0));
|
||||
*Rca = (UINT16)(SdMmcStatusBlk.Resp0 >> 16);
|
||||
}
|
||||
|
||||
|
@ -1378,4 +1378,3 @@ SdEraseBlocks (
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -201,7 +201,7 @@ DiscoverUserArea (
|
|||
|
||||
Status = SdSetRca (Device, &Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "DiscoverUserArea(): Assign new Rca = 0x%x fails with %r\n", Rca, Status));
|
||||
DEBUG ((DEBUG_ERROR, "DiscoverUserArea(): Assign new Rca = 0x%x fails with %r\n", Rca, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -221,7 +221,7 @@ DiscoverUserArea (
|
|||
|
||||
Status = SdSelect (Device, Rca);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "DiscoverUserArea(): Reselect the device 0x%x fails with %r\n", Rca, Status));
|
||||
DEBUG ((DEBUG_ERROR, "DiscoverUserArea(): Reselect the device 0x%x fails with %r\n", Rca, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -905,4 +905,3 @@ InitializeSdDxe (
|
|||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -441,21 +441,21 @@ UfsPeimParsingSenseKeys (
|
|||
(SenseData->Addnl_Sense_Code == EFI_SCSI_ASC_NO_MEDIA)) {
|
||||
Media->MediaPresent = FALSE;
|
||||
*NeedRetry = FALSE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Is No Media\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Is No Media\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if ((SenseData->Sense_Key == EFI_SCSI_SK_UNIT_ATTENTION) &&
|
||||
(SenseData->Addnl_Sense_Code == EFI_SCSI_ASC_MEDIA_CHANGE)) {
|
||||
*NeedRetry = TRUE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Is Media Change\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Is Media Change\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
if ((SenseData->Sense_Key == EFI_SCSI_SK_UNIT_ATTENTION) &&
|
||||
(SenseData->Addnl_Sense_Code == EFI_SCSI_ASC_RESET)) {
|
||||
*NeedRetry = TRUE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Was Reset Before\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Was Reset Before\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -463,13 +463,13 @@ UfsPeimParsingSenseKeys (
|
|||
((SenseData->Sense_Key == EFI_SCSI_SK_NOT_READY) &&
|
||||
(SenseData->Addnl_Sense_Code == EFI_SCSI_ASC_MEDIA_UPSIDE_DOWN))) {
|
||||
*NeedRetry = FALSE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Media Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Media Error\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if (SenseData->Sense_Key == EFI_SCSI_SK_HARDWARE_ERROR) {
|
||||
*NeedRetry = FALSE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Hardware Error\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Hardware Error\n"));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -477,12 +477,12 @@ UfsPeimParsingSenseKeys (
|
|||
(SenseData->Addnl_Sense_Code == EFI_SCSI_ASC_NOT_READY) &&
|
||||
(SenseData->Addnl_Sense_Code_Qualifier == EFI_SCSI_ASCQ_IN_PROGRESS)) {
|
||||
*NeedRetry = TRUE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Was Reset Before\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Was Reset Before\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
*NeedRetry = FALSE;
|
||||
DEBUG ((EFI_D_VERBOSE, "UfsBlockIoPei: Sense Key = 0x%x ASC = 0x%x!\n", SenseData->Sense_Key, SenseData->Addnl_Sense_Code));
|
||||
DEBUG ((DEBUG_VERBOSE, "UfsBlockIoPei: Sense Key = 0x%x ASC = 0x%x!\n", SenseData->Sense_Key, SenseData->Addnl_Sense_Code));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -1097,7 +1097,7 @@ InitializeUfsBlockIoPeim (
|
|||
//
|
||||
Status = UfsControllerInit (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsDevicePei: Host Controller Initialization Error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UfsDevicePei: Host Controller Initialization Error, Status = %r\n", Status));
|
||||
Controller++;
|
||||
continue;
|
||||
}
|
||||
|
@ -1109,7 +1109,7 @@ InitializeUfsBlockIoPeim (
|
|||
//
|
||||
Status = UfsExecNopCmds (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Ufs Sending NOP IN command Error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Ufs Sending NOP IN command Error, Status = %r\n", Status));
|
||||
Controller++;
|
||||
continue;
|
||||
}
|
||||
|
@ -1119,7 +1119,7 @@ InitializeUfsBlockIoPeim (
|
|||
//
|
||||
Status = UfsSetFlag (Private, UfsFlagDevInit);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Ufs Set fDeviceInit Flag Error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Ufs Set fDeviceInit Flag Error, Status = %r\n", Status));
|
||||
Controller++;
|
||||
continue;
|
||||
}
|
||||
|
@ -1129,7 +1129,7 @@ InitializeUfsBlockIoPeim (
|
|||
//
|
||||
Status = UfsRwDeviceDesc (Private, TRUE, UfsConfigDesc, 0, 0, &Config, sizeof (UFS_CONFIG_DESC));
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Ufs Get Configuration Descriptor Error, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "Ufs Get Configuration Descriptor Error, Status = %r\n", Status));
|
||||
Controller++;
|
||||
continue;
|
||||
}
|
||||
|
@ -1137,7 +1137,7 @@ InitializeUfsBlockIoPeim (
|
|||
for (Index = 0; Index < UFS_PEIM_MAX_LUNS; Index++) {
|
||||
if (Config.UnitDescConfParams[Index].LunEn != 0) {
|
||||
Private->Luns.BitMask |= (BIT0 << Index);
|
||||
DEBUG ((EFI_D_INFO, "Ufs %d Lun %d is enabled\n", Controller, Index));
|
||||
DEBUG ((DEBUG_INFO, "Ufs %d Lun %d is enabled\n", Controller, Index));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -80,34 +80,34 @@ DumpUicCmdExecResult (
|
|||
case 0x00:
|
||||
break;
|
||||
case 0x01:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - INVALID_MIB_ATTRIBUTE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - INVALID_MIB_ATTRIBUTE\n"));
|
||||
break;
|
||||
case 0x02:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - INVALID_MIB_ATTRIBUTE_VALUE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - INVALID_MIB_ATTRIBUTE_VALUE\n"));
|
||||
break;
|
||||
case 0x03:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - READ_ONLY_MIB_ATTRIBUTE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - READ_ONLY_MIB_ATTRIBUTE\n"));
|
||||
break;
|
||||
case 0x04:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - WRITE_ONLY_MIB_ATTRIBUTE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - WRITE_ONLY_MIB_ATTRIBUTE\n"));
|
||||
break;
|
||||
case 0x05:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - BAD_INDEX\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - BAD_INDEX\n"));
|
||||
break;
|
||||
case 0x06:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - LOCKED_MIB_ATTRIBUTE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - LOCKED_MIB_ATTRIBUTE\n"));
|
||||
break;
|
||||
case 0x07:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - BAD_TEST_FEATURE_INDEX\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - BAD_TEST_FEATURE_INDEX\n"));
|
||||
break;
|
||||
case 0x08:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - PEER_COMMUNICATION_FAILURE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - PEER_COMMUNICATION_FAILURE\n"));
|
||||
break;
|
||||
case 0x09:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - BUSY\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - BUSY\n"));
|
||||
break;
|
||||
case 0x0A:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC configuration command fails - DME_FAILURE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - DME_FAILURE\n"));
|
||||
break;
|
||||
default :
|
||||
ASSERT (FALSE);
|
||||
|
@ -118,7 +118,7 @@ DumpUicCmdExecResult (
|
|||
case 0x00:
|
||||
break;
|
||||
case 0x01:
|
||||
DEBUG ((EFI_D_VERBOSE, "UIC control command fails - FAILURE\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "UIC control command fails - FAILURE\n"));
|
||||
break;
|
||||
default :
|
||||
ASSERT (FALSE);
|
||||
|
@ -140,34 +140,34 @@ DumpQueryResponseResult (
|
|||
{
|
||||
switch (Result) {
|
||||
case 0xF6:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Not Readable\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Parameter Not Readable\n"));
|
||||
break;
|
||||
case 0xF7:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Not Writeable\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Parameter Not Writeable\n"));
|
||||
break;
|
||||
case 0xF8:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Parameter Already Written\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Parameter Already Written\n"));
|
||||
break;
|
||||
case 0xF9:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Length\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Length\n"));
|
||||
break;
|
||||
case 0xFA:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Value\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Value\n"));
|
||||
break;
|
||||
case 0xFB:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Selector\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Selector\n"));
|
||||
break;
|
||||
case 0xFC:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Index\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Index\n"));
|
||||
break;
|
||||
case 0xFD:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Idn\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Idn\n"));
|
||||
break;
|
||||
case 0xFE:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with Invalid Opcode\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with Invalid Opcode\n"));
|
||||
break;
|
||||
case 0xFF:
|
||||
DEBUG ((EFI_D_VERBOSE, "Query Response with General Failure\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "Query Response with General Failure\n"));
|
||||
break;
|
||||
default :
|
||||
ASSERT (FALSE);
|
||||
|
@ -325,7 +325,7 @@ UfsInitUtpPrdt (
|
|||
|
||||
if ((BufferSize & (BIT0 | BIT1)) != 0) {
|
||||
BufferSize &= ~(BIT0 | BIT1);
|
||||
DEBUG ((EFI_D_WARN, "UfsInitUtpPrdt: The BufferSize [%d] is not dword-aligned!\n", BufferSize));
|
||||
DEBUG ((DEBUG_WARN, "UfsInitUtpPrdt: The BufferSize [%d] is not dword-aligned!\n", BufferSize));
|
||||
}
|
||||
|
||||
if (BufferSize == 0) {
|
||||
|
@ -1190,7 +1190,7 @@ UfsExecScsiCmds (
|
|||
// Check the transfer request result.
|
||||
//
|
||||
if (Response->Response != 0) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsExecScsiCmds() fails with Target Failure\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UfsExecScsiCmds() fails with Target Failure\n"));
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto Exit;
|
||||
}
|
||||
|
@ -1324,7 +1324,7 @@ UfsExecUicCommands (
|
|||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UfsblockioPei: found a attached UFS device\n"));
|
||||
DEBUG ((DEBUG_INFO, "UfsblockioPei: found a attached UFS device\n"));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -1577,25 +1577,25 @@ UfsControllerInit (
|
|||
|
||||
Status = UfsEnableHostController (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsDevicePei: Enable Host Controller Fails, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UfsDevicePei: Enable Host Controller Fails, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = UfsDeviceDetection (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsDevicePei: Device Detection Fails, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UfsDevicePei: Device Detection Fails, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = UfsInitTaskManagementRequestList (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsDevicePei: Task management list initialization Fails, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UfsDevicePei: Task management list initialization Fails, Status = %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = UfsInitTransferRequestList (Private);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UfsDevicePei: Transfer list initialization Fails, Status = %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UfsDevicePei: Transfer list initialization Fails, Status = %r\n", Status));
|
||||
|
||||
if (Private->TmrlMapping != NULL) {
|
||||
IoMmuFreeBuffer (
|
||||
|
@ -1609,7 +1609,7 @@ UfsControllerInit (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UfsDevicePei Finished\n"));
|
||||
DEBUG ((DEBUG_INFO, "UfsDevicePei Finished\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -1661,8 +1661,7 @@ UfsControllerStop (
|
|||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UfsDevicePei: Stop the UFS Host Controller\n"));
|
||||
DEBUG ((DEBUG_INFO, "UfsDevicePei: Stop the UFS Host Controller\n"));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -270,7 +270,7 @@ PeiUsbReadCapacity (
|
|||
LastBlock = ((UINT32) Data.LastLba3 << 24) | (Data.LastLba2 << 16) | (Data.LastLba1 << 8) | Data.LastLba0;
|
||||
|
||||
if (LastBlock == 0xFFFFFFFF) {
|
||||
DEBUG ((EFI_D_INFO, "The usb device LBA count is larger than 0xFFFFFFFF!\n"));
|
||||
DEBUG ((DEBUG_INFO, "The usb device LBA count is larger than 0xFFFFFFFF!\n"));
|
||||
}
|
||||
|
||||
PeiBotDevice->Media.LastBlock = LastBlock;
|
||||
|
@ -341,7 +341,7 @@ PeiUsbReadFormattedCapacity (
|
|||
} else {
|
||||
LastBlock = ((UINT32) FormatData.LastLba3 << 24) | (FormatData.LastLba2 << 16) | (FormatData.LastLba1 << 8) | FormatData.LastLba0;
|
||||
if (LastBlock == 0xFFFFFFFF) {
|
||||
DEBUG ((EFI_D_INFO, "The usb device LBA count is larger than 0xFFFFFFFF!\n"));
|
||||
DEBUG ((DEBUG_INFO, "The usb device LBA count is larger than 0xFFFFFFFF!\n"));
|
||||
}
|
||||
|
||||
PeiBotDevice->Media.LastBlock = LastBlock;
|
||||
|
|
|
@ -168,7 +168,7 @@ UsbIoControlTransfer (
|
|||
|
||||
goto ON_EXIT;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "UsbIoControlTransfer: configure changed!!! Do NOT use old UsbIo!!!\n"));
|
||||
DEBUG ((DEBUG_INFO, "UsbIoControlTransfer: configure changed!!! Do NOT use old UsbIo!!!\n"));
|
||||
|
||||
if (Dev->ActiveConfig != NULL) {
|
||||
UsbRemoveConfig (Dev);
|
||||
|
@ -837,7 +837,7 @@ UsbIoPortReset (
|
|||
Status = HubIf->HubApi->ResetPort (HubIf, Dev->ParentPort);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbIoPortReset: failed to reset hub port %d@hub %d, %r \n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbIoPortReset: failed to reset hub port %d@hub %d, %r \n",
|
||||
Dev->ParentPort, Dev->ParentAddr, Status));
|
||||
|
||||
goto ON_EXIT;
|
||||
|
@ -861,13 +861,13 @@ UsbIoPortReset (
|
|||
//
|
||||
// It may fail due to device disconnection or other reasons.
|
||||
//
|
||||
DEBUG (( EFI_D_ERROR, "UsbIoPortReset: failed to set address for device %d - %r\n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbIoPortReset: failed to set address for device %d - %r\n",
|
||||
Dev->Address, Status));
|
||||
|
||||
goto ON_EXIT;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbIoPortReset: device is now ADDRESSED at %d\n", Dev->Address));
|
||||
DEBUG (( DEBUG_INFO, "UsbIoPortReset: device is now ADDRESSED at %d\n", Dev->Address));
|
||||
|
||||
//
|
||||
// Reset the current active configure, after this device
|
||||
|
@ -877,7 +877,7 @@ UsbIoPortReset (
|
|||
Status = UsbSetConfig (Dev, Dev->ActiveConfig->Desc.ConfigurationValue);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbIoPortReset: failed to set configure for device %d - %r\n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbIoPortReset: failed to set configure for device %d - %r\n",
|
||||
Dev->Address, Status));
|
||||
}
|
||||
}
|
||||
|
@ -934,7 +934,7 @@ UsbBusBuildProtocol (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBusStart: Failed to open device path %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBusStart: Failed to open device path %r\n", Status));
|
||||
|
||||
FreePool (UsbBus);
|
||||
return Status;
|
||||
|
@ -967,7 +967,7 @@ UsbBusBuildProtocol (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status) && EFI_ERROR (Status2)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBusStart: Failed to open USB_HC/USB2_HC %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBusStart: Failed to open USB_HC/USB2_HC %r\n", Status));
|
||||
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
goto CLOSE_HC;
|
||||
|
@ -995,7 +995,7 @@ UsbBusBuildProtocol (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBusStart: Failed to install bus protocol %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBusStart: Failed to install bus protocol %r\n", Status));
|
||||
goto CLOSE_HC;
|
||||
}
|
||||
|
||||
|
@ -1043,13 +1043,13 @@ UsbBusBuildProtocol (
|
|||
Status = mUsbRootHubApi.Init (RootIf);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBusStart: Failed to init root hub %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBusStart: Failed to init root hub %r\n", Status));
|
||||
goto FREE_ROOTHUB;
|
||||
}
|
||||
|
||||
UsbBus->Devices[0] = RootHub;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbBusStart: usb bus started on %p, root hub %p\n", Controller, RootIf));
|
||||
DEBUG ((DEBUG_INFO, "UsbBusStart: usb bus started on %p, root hub %p\n", Controller, RootIf));
|
||||
return EFI_SUCCESS;
|
||||
|
||||
FREE_ROOTHUB:
|
||||
|
@ -1088,7 +1088,7 @@ CLOSE_HC:
|
|||
);
|
||||
FreePool (UsbBus);
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "UsbBusStart: Failed to start bus driver %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBusStart: Failed to start bus driver %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1448,7 +1448,7 @@ UsbBusControllerDriverStop (
|
|||
return ReturnStatus;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbBusStop: usb bus stopped on %p\n", Controller));
|
||||
DEBUG (( DEBUG_INFO, "UsbBusStop: usb bus stopped on %p\n", Controller));
|
||||
|
||||
//
|
||||
// Locate USB_BUS for the current host controller
|
||||
|
|
|
@ -272,7 +272,7 @@ UsbParseInterfaceDesc (
|
|||
Setting = UsbCreateDesc (DescBuf, Len, USB_DESC_TYPE_INTERFACE, &Used);
|
||||
|
||||
if (Setting == NULL) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbParseInterfaceDesc: failed to create interface descriptor\n"));
|
||||
DEBUG (( DEBUG_ERROR, "UsbParseInterfaceDesc: failed to create interface descriptor\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -283,7 +283,7 @@ UsbParseInterfaceDesc (
|
|||
//
|
||||
NumEp = Setting->Desc.NumEndpoints;
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbParseInterfaceDesc: interface %d(setting %d) has %d endpoints\n",
|
||||
DEBUG (( DEBUG_INFO, "UsbParseInterfaceDesc: interface %d(setting %d) has %d endpoints\n",
|
||||
Setting->Desc.InterfaceNumber, Setting->Desc.AlternateSetting, (UINT32)NumEp));
|
||||
|
||||
if (NumEp == 0) {
|
||||
|
@ -303,7 +303,7 @@ UsbParseInterfaceDesc (
|
|||
Ep = UsbCreateDesc (DescBuf + Offset, Len - Offset, USB_DESC_TYPE_ENDPOINT, &Used);
|
||||
|
||||
if (Ep == NULL) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbParseInterfaceDesc: failed to create endpoint(index %d)\n", (UINT32)Index));
|
||||
DEBUG (( DEBUG_ERROR, "UsbParseInterfaceDesc: failed to create endpoint(index %d)\n", (UINT32)Index));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -362,7 +362,7 @@ UsbParseConfigDesc (
|
|||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbParseConfigDesc: config %d has %d interfaces\n",
|
||||
DEBUG (( DEBUG_INFO, "UsbParseConfigDesc: config %d has %d interfaces\n",
|
||||
Config->Desc.ConfigurationValue, (UINT32)NumIf));
|
||||
|
||||
for (Index = 0; Index < NumIf; Index++) {
|
||||
|
@ -394,7 +394,7 @@ UsbParseConfigDesc (
|
|||
Setting = UsbParseInterfaceDesc (DescBuf, Len, &Consumed);
|
||||
|
||||
if (Setting == NULL) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbParseConfigDesc: warning: failed to get interface setting, stop parsing now.\n"));
|
||||
DEBUG (( DEBUG_ERROR, "UsbParseConfigDesc: warning: failed to get interface setting, stop parsing now.\n"));
|
||||
break;
|
||||
|
||||
} else if (Setting->Desc.InterfaceNumber >= NumIf) {
|
||||
|
@ -765,13 +765,13 @@ UsbGetOneConfig (
|
|||
Status = UsbCtrlGetDesc (UsbDev, USB_DESC_TYPE_CONFIG, Index, 0, &Desc, 8);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbGetOneConfig: failed to get descript length(%d) %r\n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbGetOneConfig: failed to get descript length(%d) %r\n",
|
||||
Desc.TotalLength, Status));
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbGetOneConfig: total length is %d\n", Desc.TotalLength));
|
||||
DEBUG (( DEBUG_INFO, "UsbGetOneConfig: total length is %d\n", Desc.TotalLength));
|
||||
|
||||
//
|
||||
// Reject if TotalLength even cannot cover itself.
|
||||
|
@ -789,7 +789,7 @@ UsbGetOneConfig (
|
|||
Status = UsbCtrlGetDesc (UsbDev, USB_DESC_TYPE_CONFIG, Index, 0, Buf, Desc.TotalLength);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbGetOneConfig: failed to get full descript %r\n", Status));
|
||||
DEBUG (( DEBUG_ERROR, "UsbGetOneConfig: failed to get full descript %r\n", Status));
|
||||
|
||||
FreePool (Buf);
|
||||
return NULL;
|
||||
|
@ -829,7 +829,7 @@ UsbBuildDescTable (
|
|||
Status = UsbGetDevDesc (UsbDev);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbBuildDescTable: failed to get device descriptor - %r\n", Status));
|
||||
DEBUG (( DEBUG_ERROR, "UsbBuildDescTable: failed to get device descriptor - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -844,7 +844,7 @@ UsbBuildDescTable (
|
|||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbBuildDescTable: device has %d configures\n", NumConfig));
|
||||
DEBUG (( DEBUG_INFO, "UsbBuildDescTable: device has %d configures\n", NumConfig));
|
||||
|
||||
//
|
||||
// Read each configurations, then parse them
|
||||
|
@ -853,7 +853,7 @@ UsbBuildDescTable (
|
|||
Config = UsbGetOneConfig (UsbDev, Index);
|
||||
|
||||
if (Config == NULL) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbBuildDescTable: failed to get configure (index %d)\n", Index));
|
||||
DEBUG (( DEBUG_ERROR, "UsbBuildDescTable: failed to get configure (index %d)\n", Index));
|
||||
|
||||
//
|
||||
// If we can get the default descriptor, it is likely that the
|
||||
|
@ -871,7 +871,7 @@ UsbBuildDescTable (
|
|||
FreePool (Config);
|
||||
|
||||
if (ConfigDesc == NULL) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbBuildDescTable: failed to parse configure (index %d)\n", Index));
|
||||
DEBUG (( DEBUG_ERROR, "UsbBuildDescTable: failed to parse configure (index %d)\n", Index));
|
||||
|
||||
//
|
||||
// If we can get the default descriptor, it is likely that the
|
||||
|
@ -894,7 +894,7 @@ UsbBuildDescTable (
|
|||
Status = UsbBuildLangTable (UsbDev);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_INFO, "UsbBuildDescTable: get language ID table %r\n", Status));
|
||||
DEBUG (( DEBUG_INFO, "UsbBuildDescTable: get language ID table %r\n", Status));
|
||||
}
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
|
|
@ -132,7 +132,7 @@ UsbCreateInterface (
|
|||
UsbIf->DevicePath = AppendDevicePathNode (HubIf->DevicePath, &UsbNode.Header);
|
||||
|
||||
if (UsbIf->DevicePath == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbCreateInterface: failed to create device path\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCreateInterface: failed to create device path\n"));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
goto ON_ERROR;
|
||||
|
@ -148,7 +148,7 @@ UsbCreateInterface (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbCreateInterface: failed to install UsbIo - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCreateInterface: failed to install UsbIo - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -167,7 +167,7 @@ UsbCreateInterface (
|
|||
NULL
|
||||
);
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "UsbCreateInterface: failed to open host for child - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCreateInterface: failed to open host for child - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -262,7 +262,7 @@ UsbConnectDriver (
|
|||
// connect drivers with this interface
|
||||
//
|
||||
if (UsbIsHubInterface (UsbIf)) {
|
||||
DEBUG ((EFI_D_INFO, "UsbConnectDriver: found a hub device\n"));
|
||||
DEBUG ((DEBUG_INFO, "UsbConnectDriver: found a hub device\n"));
|
||||
Status = mUsbHubApi.Init (UsbIf);
|
||||
|
||||
} else {
|
||||
|
@ -279,14 +279,14 @@ UsbConnectDriver (
|
|||
//
|
||||
if (UsbBusIsWantedUsbIO (UsbIf->Device->Bus, UsbIf)) {
|
||||
OldTpl = UsbGetCurrentTpl ();
|
||||
DEBUG ((EFI_D_INFO, "UsbConnectDriver: TPL before connect is %d, %p\n", (UINT32)OldTpl, UsbIf->Handle));
|
||||
DEBUG ((DEBUG_INFO, "UsbConnectDriver: TPL before connect is %d, %p\n", (UINT32)OldTpl, UsbIf->Handle));
|
||||
|
||||
gBS->RestoreTPL (TPL_CALLBACK);
|
||||
|
||||
Status = gBS->ConnectController (UsbIf->Handle, NULL, NULL, TRUE);
|
||||
UsbIf->IsManaged = (BOOLEAN)!EFI_ERROR (Status);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbConnectDriver: TPL after connect is %d\n", (UINT32)UsbGetCurrentTpl()));
|
||||
DEBUG ((DEBUG_INFO, "UsbConnectDriver: TPL after connect is %d\n", (UINT32)UsbGetCurrentTpl()));
|
||||
ASSERT (UsbGetCurrentTpl () == TPL_CALLBACK);
|
||||
|
||||
gBS->RaiseTPL (OldTpl);
|
||||
|
@ -340,7 +340,7 @@ UsbSelectSetting (
|
|||
IfDesc->ActiveIndex = Index;
|
||||
|
||||
ASSERT (Setting != NULL);
|
||||
DEBUG ((EFI_D_INFO, "UsbSelectSetting: setting %d selected for interface %d\n",
|
||||
DEBUG ((DEBUG_INFO, "UsbSelectSetting: setting %d selected for interface %d\n",
|
||||
Alternate, Setting->Desc.InterfaceNumber));
|
||||
|
||||
//
|
||||
|
@ -399,7 +399,7 @@ UsbSelectConfig (
|
|||
|
||||
Device->ActiveConfig = ConfigDesc;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbSelectConfig: config %d selected for device %d\n",
|
||||
DEBUG ((DEBUG_INFO, "UsbSelectConfig: config %d selected for device %d\n",
|
||||
ConfigValue, Device->Address));
|
||||
|
||||
//
|
||||
|
@ -479,7 +479,7 @@ UsbDisconnectDriver (
|
|||
// or disconnect at CALLBACK.
|
||||
//
|
||||
OldTpl = UsbGetCurrentTpl ();
|
||||
DEBUG ((EFI_D_INFO, "UsbDisconnectDriver: old TPL is %d, %p\n", (UINT32)OldTpl, UsbIf->Handle));
|
||||
DEBUG ((DEBUG_INFO, "UsbDisconnectDriver: old TPL is %d, %p\n", (UINT32)OldTpl, UsbIf->Handle));
|
||||
|
||||
gBS->RestoreTPL (TPL_CALLBACK);
|
||||
|
||||
|
@ -488,7 +488,7 @@ UsbDisconnectDriver (
|
|||
UsbIf->IsManaged = FALSE;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbDisconnectDriver: TPL after disconnect is %d, %d\n", (UINT32)UsbGetCurrentTpl(), Status));
|
||||
DEBUG (( DEBUG_INFO, "UsbDisconnectDriver: TPL after disconnect is %d, %d\n", (UINT32)UsbGetCurrentTpl(), Status));
|
||||
ASSERT (UsbGetCurrentTpl () == TPL_CALLBACK);
|
||||
|
||||
gBS->RaiseTPL (OldTpl);
|
||||
|
@ -586,7 +586,7 @@ UsbRemoveDevice (
|
|||
} else {
|
||||
Bus->Devices[Index]->DisconnectFail = TRUE;
|
||||
ReturnStatus = Status;
|
||||
DEBUG ((EFI_D_INFO, "UsbRemoveDevice: failed to remove child %p at parent %p\n", Child, Device));
|
||||
DEBUG ((DEBUG_INFO, "UsbRemoveDevice: failed to remove child %p at parent %p\n", Child, Device));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -597,7 +597,7 @@ UsbRemoveDevice (
|
|||
Status = UsbRemoveConfig (Device);
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_INFO, "UsbRemoveDevice: device %d removed\n", Device->Address));
|
||||
DEBUG (( DEBUG_INFO, "UsbRemoveDevice: device %d removed\n", Device->Address));
|
||||
|
||||
ASSERT (Device->Address < Bus->MaxDevices);
|
||||
Bus->Devices[Device->Address] = NULL;
|
||||
|
@ -691,13 +691,13 @@ UsbEnumerateNewDev (
|
|||
if (ResetIsNeeded) {
|
||||
Status = HubApi->ResetPort (HubIf, Port);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to reset port %d - %r\n", Port, Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to reset port %d - %r\n", Port, Status));
|
||||
|
||||
return Status;
|
||||
}
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: hub port %d is reset\n", Port));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: hub port %d is reset\n", Port));
|
||||
} else {
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: hub port %d reset is skipped\n", Port));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: hub port %d reset is skipped\n", Port));
|
||||
}
|
||||
|
||||
Child = UsbCreateDevice (HubIf, Port);
|
||||
|
@ -713,12 +713,12 @@ UsbEnumerateNewDev (
|
|||
Status = HubApi->GetPortStatus (HubIf, Port, &PortState);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to get speed of port %d\n", Port));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to get speed of port %d\n", Port));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
if (!USB_BIT_IS_SET (PortState.PortStatus, USB_PORT_STAT_CONNECTION)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: No device present at port %d\n", Port));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: No device present at port %d\n", Port));
|
||||
Status = EFI_NOT_FOUND;
|
||||
goto ON_ERROR;
|
||||
} else if (USB_BIT_IS_SET (PortState.PortStatus, USB_PORT_STAT_SUPER_SPEED)){
|
||||
|
@ -735,7 +735,7 @@ UsbEnumerateNewDev (
|
|||
Child->MaxPacket0 = 8;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: device is of %d speed\n", Child->Speed));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: device is of %d speed\n", Child->Speed));
|
||||
|
||||
if (((Child->Speed == EFI_USB_SPEED_LOW) || (Child->Speed == EFI_USB_SPEED_FULL)) &&
|
||||
(Parent->Speed == EFI_USB_SPEED_HIGH)) {
|
||||
|
@ -751,7 +751,7 @@ UsbEnumerateNewDev (
|
|||
} else {
|
||||
Child->Translator = Parent->Translator;
|
||||
}
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: device uses translator (%d, %d)\n",
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: device uses translator (%d, %d)\n",
|
||||
Child->Translator.TranslatorHubAddress,
|
||||
Child->Translator.TranslatorPortNumber));
|
||||
|
||||
|
@ -775,7 +775,7 @@ UsbEnumerateNewDev (
|
|||
}
|
||||
|
||||
if (Address >= Bus->MaxDevices) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: address pool is full for port %d\n", Port));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: address pool is full for port %d\n", Port));
|
||||
|
||||
Status = EFI_ACCESS_DENIED;
|
||||
goto ON_ERROR;
|
||||
|
@ -786,13 +786,13 @@ UsbEnumerateNewDev (
|
|||
Bus->Devices[Address] = Child;
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to set device address - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to set device address - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
gBS->Stall (USB_SET_DEVICE_ADDRESS_STALL);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbEnumerateNewDev: device is now ADDRESSED at %d\n", Address));
|
||||
DEBUG ((DEBUG_INFO, "UsbEnumerateNewDev: device is now ADDRESSED at %d\n", Address));
|
||||
|
||||
//
|
||||
// Host sends a Get_Descriptor request to learn the max packet
|
||||
|
@ -801,11 +801,11 @@ UsbEnumerateNewDev (
|
|||
Status = UsbGetMaxPacketSize0 (Child);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to get max packet for EP 0 - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to get max packet for EP 0 - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: max packet size for EP 0 is %d\n", Child->MaxPacket0));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: max packet size for EP 0 is %d\n", Child->MaxPacket0));
|
||||
|
||||
//
|
||||
// Host learns about the device's abilities by requesting device's
|
||||
|
@ -814,7 +814,7 @@ UsbEnumerateNewDev (
|
|||
Status = UsbBuildDescTable (Child);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to build descriptor table - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to build descriptor table - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -826,11 +826,11 @@ UsbEnumerateNewDev (
|
|||
Status = UsbSetConfig (Child, Config);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to set configure %d - %r\n", Config, Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to set configure %d - %r\n", Config, Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumerateNewDev: device %d is now in CONFIGED state\n", Address));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumerateNewDev: device %d is now in CONFIGED state\n", Address));
|
||||
|
||||
//
|
||||
// Host assigns and loads a device driver.
|
||||
|
@ -838,7 +838,7 @@ UsbEnumerateNewDev (
|
|||
Status = UsbSelectConfig (Child, Config);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: failed to create interfaces - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumerateNewDev: failed to create interfaces - %r\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -902,7 +902,7 @@ UsbEnumeratePort (
|
|||
Status = HubApi->GetPortStatus (HubIf, Port, &PortState);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbEnumeratePort: failed to get state of port %d\n", Port));
|
||||
DEBUG ((DEBUG_ERROR, "UsbEnumeratePort: failed to get state of port %d\n", Port));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -914,7 +914,7 @@ UsbEnumeratePort (
|
|||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: port %d state - %02x, change - %02x on %p\n",
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: port %d state - %02x, change - %02x on %p\n",
|
||||
Port, PortState.PortStatus, PortState.PortChangeStatus, HubIf));
|
||||
|
||||
//
|
||||
|
@ -932,7 +932,7 @@ UsbEnumeratePort (
|
|||
// which probably is caused by short circuit. It has to wait system hardware
|
||||
// to perform recovery.
|
||||
//
|
||||
DEBUG (( EFI_D_ERROR, "UsbEnumeratePort: Critical Over Current\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbEnumeratePort: Critical Over Current\n", Port));
|
||||
return EFI_DEVICE_ERROR;
|
||||
|
||||
}
|
||||
|
@ -942,7 +942,7 @@ UsbEnumeratePort (
|
|||
// over current. As a result, all ports are nearly power-off, so
|
||||
// it's necessary to detach and enumerate all ports again.
|
||||
//
|
||||
DEBUG (( EFI_D_ERROR, "UsbEnumeratePort: 2.0 device Recovery Over Current\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbEnumeratePort: 2.0 device Recovery Over Current\n", Port));
|
||||
}
|
||||
|
||||
if (USB_BIT_IS_SET (PortState.PortChangeStatus, USB_PORT_STAT_C_ENABLE)) {
|
||||
|
@ -952,7 +952,7 @@ UsbEnumeratePort (
|
|||
// on 2.0 roothub does. When over-current has influence on 1.1 device, the port
|
||||
// would be disabled, so it's also necessary to detach and enumerate again.
|
||||
//
|
||||
DEBUG (( EFI_D_ERROR, "UsbEnumeratePort: 1.1 device Recovery Over Current\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbEnumeratePort: 1.1 device Recovery Over Current\n", Port));
|
||||
}
|
||||
|
||||
if (USB_BIT_IS_SET (PortState.PortChangeStatus, USB_PORT_STAT_C_CONNECTION)) {
|
||||
|
@ -960,7 +960,7 @@ UsbEnumeratePort (
|
|||
// Case4:
|
||||
// Device connected or disconnected normally.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "UsbEnumeratePort: Device Connect/Disconnect Normally\n", Port));
|
||||
DEBUG ((DEBUG_INFO, "UsbEnumeratePort: Device Connect/Disconnect Normally\n", Port));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -969,7 +969,7 @@ UsbEnumeratePort (
|
|||
Child = UsbFindChild (HubIf, Port);
|
||||
|
||||
if (Child != NULL) {
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: device at port %d removed from root hub %p\n", Port, HubIf));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: device at port %d removed from root hub %p\n", Port, HubIf));
|
||||
UsbRemoveDevice (Child);
|
||||
}
|
||||
|
||||
|
@ -977,7 +977,7 @@ UsbEnumeratePort (
|
|||
//
|
||||
// Now, new device connected, enumerate and configure the device
|
||||
//
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: new device connected at port %d\n", Port));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: new device connected at port %d\n", Port));
|
||||
if (USB_BIT_IS_SET (PortState.PortChangeStatus, USB_PORT_STAT_C_RESET)) {
|
||||
Status = UsbEnumerateNewDev (HubIf, Port, FALSE);
|
||||
} else {
|
||||
|
@ -985,7 +985,7 @@ UsbEnumeratePort (
|
|||
}
|
||||
|
||||
} else {
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: device disconnected event on port %d\n", Port));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: device disconnected event on port %d\n", Port));
|
||||
}
|
||||
|
||||
HubApi->ClearPortChange (HubIf, Port);
|
||||
|
@ -1020,7 +1020,7 @@ UsbHubEnumeration (
|
|||
for (Index = 0; Index < HubIf->NumOfPort; Index++) {
|
||||
Child = UsbFindChild (HubIf, Index);
|
||||
if ((Child != NULL) && (Child->DisconnectFail == TRUE)) {
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: The device disconnect fails at port %d from hub %p, try again\n", Index, HubIf));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: The device disconnect fails at port %d from hub %p, try again\n", Index, HubIf));
|
||||
UsbRemoveDevice (Child);
|
||||
}
|
||||
}
|
||||
|
@ -1074,7 +1074,7 @@ UsbRootHubEnumeration (
|
|||
for (Index = 0; Index < RootHub->NumOfPort; Index++) {
|
||||
Child = UsbFindChild (RootHub, Index);
|
||||
if ((Child != NULL) && (Child->DisconnectFail == TRUE)) {
|
||||
DEBUG (( EFI_D_INFO, "UsbEnumeratePort: The device disconnect fails at port %d from root hub %p, try again\n", Index, RootHub));
|
||||
DEBUG (( DEBUG_INFO, "UsbEnumeratePort: The device disconnect fails at port %d from root hub %p, try again\n", Index, RootHub));
|
||||
UsbRemoveDevice (Child);
|
||||
}
|
||||
|
||||
|
|
|
@ -516,7 +516,7 @@ UsbOnHubInterrupt (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbOnHubInterrupt: failed to remove async transfer - %r\n", Status));
|
||||
DEBUG (( DEBUG_ERROR, "UsbOnHubInterrupt: failed to remove async transfer - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -531,7 +531,7 @@ UsbOnHubInterrupt (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbOnHubInterrupt: failed to submit new async transfer - %r\n", Status));
|
||||
DEBUG (( DEBUG_ERROR, "UsbOnHubInterrupt: failed to submit new async transfer - %r\n", Status));
|
||||
}
|
||||
|
||||
return Status;
|
||||
|
@ -608,7 +608,7 @@ UsbHubInit (
|
|||
}
|
||||
|
||||
if (Index == NumEndpoints) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbHubInit: no interrupt endpoint found for hub %d\n", HubDev->Address));
|
||||
DEBUG (( DEBUG_ERROR, "UsbHubInit: no interrupt endpoint found for hub %d\n", HubDev->Address));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -620,13 +620,13 @@ UsbHubInit (
|
|||
Status = UsbHubReadDesc (HubDev, HubDesc);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbHubInit: failed to read HUB descriptor %r\n", Status));
|
||||
DEBUG (( DEBUG_ERROR, "UsbHubInit: failed to read HUB descriptor %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
HubIf->NumOfPort = HubDesc->NumPorts;
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbHubInit: hub %d has %d ports\n", HubDev->Address,HubIf->NumOfPort));
|
||||
DEBUG (( DEBUG_INFO, "UsbHubInit: hub %d has %d ports\n", HubDev->Address,HubIf->NumOfPort));
|
||||
|
||||
//
|
||||
// OK, set IsHub to TRUE. Now usb bus can handle this device
|
||||
|
@ -640,7 +640,7 @@ UsbHubInit (
|
|||
|
||||
if (HubIf->Device->Speed == EFI_USB_SPEED_SUPER) {
|
||||
Depth = (UINT16)(HubIf->Device->Tier - 1);
|
||||
DEBUG ((EFI_D_INFO, "UsbHubInit: Set Hub Depth as 0x%x\n", Depth));
|
||||
DEBUG ((DEBUG_INFO, "UsbHubInit: Set Hub Depth as 0x%x\n", Depth));
|
||||
UsbHubCtrlSetHubDepth (HubIf->Device, Depth);
|
||||
|
||||
for (Index = 0; Index < HubDesc->NumPorts; Index++) {
|
||||
|
@ -676,7 +676,7 @@ UsbHubInit (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbHubInit: failed to create signal for hub %d - %r\n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbHubInit: failed to create signal for hub %d - %r\n",
|
||||
HubDev->Address, Status));
|
||||
|
||||
return Status;
|
||||
|
@ -701,7 +701,7 @@ UsbHubInit (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbHubInit: failed to queue interrupt transfer for hub %d - %r\n",
|
||||
DEBUG (( DEBUG_ERROR, "UsbHubInit: failed to queue interrupt transfer for hub %d - %r\n",
|
||||
HubDev->Address, Status));
|
||||
|
||||
gBS->CloseEvent (HubIf->HubNotify);
|
||||
|
@ -710,7 +710,7 @@ UsbHubInit (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbHubInit: hub %d initialized\n", HubDev->Address));
|
||||
DEBUG (( DEBUG_INFO, "UsbHubInit: hub %d initialized\n", HubDev->Address));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -935,7 +935,7 @@ UsbHubRelease (
|
|||
HubIf->HubEp = NULL;
|
||||
HubIf->HubNotify = NULL;
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbHubRelease: hub device %d released\n", HubIf->Device->Address));
|
||||
DEBUG (( DEBUG_INFO, "UsbHubRelease: hub device %d released\n", HubIf->Device->Address));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -966,7 +966,7 @@ UsbRootHubInit (
|
|||
return Status;
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "UsbRootHubInit: root hub %p - max speed %d, %d ports\n",
|
||||
DEBUG (( DEBUG_INFO, "UsbRootHubInit: root hub %p - max speed %d, %d ports\n",
|
||||
HubIf, MaxSpeed, NumOfPort));
|
||||
|
||||
HubIf->IsHub = TRUE;
|
||||
|
@ -1168,7 +1168,7 @@ UsbRootHubResetPort (
|
|||
Status = UsbHcSetRootHubPortFeature (Bus, Port, EfiUsbPortReset);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbRootHubResetPort: failed to start reset on port %d\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbRootHubResetPort: failed to start reset on port %d\n", Port));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1181,7 +1181,7 @@ UsbRootHubResetPort (
|
|||
Status = UsbHcClearRootHubPortFeature (Bus, Port, EfiUsbPortReset);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbRootHubResetPort: failed to clear reset on port %d\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbRootHubResetPort: failed to clear reset on port %d\n", Port));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1208,7 +1208,7 @@ UsbRootHubResetPort (
|
|||
}
|
||||
|
||||
if (Index == USB_WAIT_PORT_STS_CHANGE_LOOP) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbRootHubResetPort: reset not finished in time on port %d\n", Port));
|
||||
DEBUG ((DEBUG_ERROR, "UsbRootHubResetPort: reset not finished in time on port %d\n", Port));
|
||||
return EFI_TIMEOUT;
|
||||
}
|
||||
|
||||
|
@ -1220,7 +1220,7 @@ UsbRootHubResetPort (
|
|||
// automatically enable the port, we need to enable it manually.
|
||||
//
|
||||
if (RootIf->MaxSpeed == EFI_USB_SPEED_HIGH) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbRootHubResetPort: release low/full speed device (%d) to UHCI\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbRootHubResetPort: release low/full speed device (%d) to UHCI\n", Port));
|
||||
|
||||
UsbRootHubSetPortFeature (RootIf, Port, EfiUsbPortOwner);
|
||||
return EFI_NOT_FOUND;
|
||||
|
@ -1230,7 +1230,7 @@ UsbRootHubResetPort (
|
|||
Status = UsbRootHubSetPortFeature (RootIf, Port, EfiUsbPortEnable);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "UsbRootHubResetPort: failed to enable port %d for UHCI\n", Port));
|
||||
DEBUG (( DEBUG_ERROR, "UsbRootHubResetPort: failed to enable port %d for UHCI\n", Port));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -1256,7 +1256,7 @@ UsbRootHubRelease (
|
|||
IN USB_INTERFACE *HubIf
|
||||
)
|
||||
{
|
||||
DEBUG (( EFI_D_INFO, "UsbRootHubRelease: root hub released for hub %p\n", HubIf));
|
||||
DEBUG (( DEBUG_INFO, "UsbRootHubRelease: root hub released for hub %p\n", HubIf));
|
||||
|
||||
gBS->SetTimer (HubIf->HubNotify, TimerCancel, USB_ROOTHUB_POLL_INTERVAL);
|
||||
gBS->CloseEvent (HubIf->HubNotify);
|
||||
|
|
|
@ -1212,10 +1212,10 @@ UsbBusRecursivelyConnectWantedUsbIo (
|
|||
//
|
||||
// Recursively connect the wanted Usb Io handle
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "UsbBusRecursivelyConnectWantedUsbIo: TPL before connect is %d\n", (UINT32)UsbGetCurrentTpl ()));
|
||||
DEBUG ((DEBUG_INFO, "UsbBusRecursivelyConnectWantedUsbIo: TPL before connect is %d\n", (UINT32)UsbGetCurrentTpl ()));
|
||||
Status = gBS->ConnectController (UsbIf->Handle, NULL, NULL, TRUE);
|
||||
UsbIf->IsManaged = (BOOLEAN)!EFI_ERROR (Status);
|
||||
DEBUG ((EFI_D_INFO, "UsbBusRecursivelyConnectWantedUsbIo: TPL after connect is %d\n", (UINT32)UsbGetCurrentTpl()));
|
||||
DEBUG ((DEBUG_INFO, "UsbBusRecursivelyConnectWantedUsbIo: TPL after connect is %d\n", (UINT32)UsbGetCurrentTpl()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1224,4 +1224,3 @@ UsbBusRecursivelyConnectWantedUsbIo (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -409,7 +409,7 @@ PeiDoHubConfig (
|
|||
PeiUsbDevice->DownStreamPortNo = HubDescriptor->NbrPorts;
|
||||
|
||||
if (PeiUsbDevice->DeviceSpeed == EFI_USB_SPEED_SUPER) {
|
||||
DEBUG ((EFI_D_INFO, "PeiDoHubConfig: Set Hub Depth as 0x%x\n", PeiUsbDevice->Tier));
|
||||
DEBUG ((DEBUG_INFO, "PeiDoHubConfig: Set Hub Depth as 0x%x\n", PeiUsbDevice->Tier));
|
||||
PeiUsbHubCtrlSetHubDepth (
|
||||
PeiServices,
|
||||
PeiUsbDevice,
|
||||
|
@ -427,12 +427,12 @@ PeiDoHubConfig (
|
|||
EfiUsbPortPower
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG (( EFI_D_ERROR, "PeiDoHubConfig: PeiHubSetPortFeature EfiUsbPortPower failed %x\n", Index));
|
||||
DEBUG (( DEBUG_ERROR, "PeiDoHubConfig: PeiHubSetPortFeature EfiUsbPortPower failed %x\n", Index));
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG (( EFI_D_INFO, "PeiDoHubConfig: HubDescriptor.PwrOn2PwrGood: 0x%x\n", HubDescriptor->PwrOn2PwrGood));
|
||||
DEBUG (( DEBUG_INFO, "PeiDoHubConfig: HubDescriptor.PwrOn2PwrGood: 0x%x\n", HubDescriptor->PwrOn2PwrGood));
|
||||
if (HubDescriptor->PwrOn2PwrGood > 0) {
|
||||
MicroSecondDelay (HubDescriptor->PwrOn2PwrGood * USB_SET_PORT_POWER_STALL);
|
||||
}
|
||||
|
@ -536,7 +536,7 @@ PeiResetHubPort (
|
|||
}
|
||||
|
||||
if (Index == USB_WAIT_PORT_STS_CHANGE_LOOP) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiResetHubPort: reset not finished in time on port %d\n", PortNum));
|
||||
DEBUG ((DEBUG_ERROR, "PeiResetHubPort: reset not finished in time on port %d\n", PortNum));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ PeiUsbControlTransfer (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PeiUsbControlTransfer: %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PeiUsbControlTransfer: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -232,7 +232,7 @@ PeiUsbBulkTransfer (
|
|||
PeiUsbDev->DataToggle = (UINT16) (PeiUsbDev->DataToggle ^ (1 << EndpointIndex));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PeiUsbBulkTransfer: %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "PeiUsbBulkTransfer: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -221,7 +221,7 @@ PeiHubEnumeration (
|
|||
|
||||
UsbIoPpi = &PeiUsbDevice->UsbIoPpi;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PeiHubEnumeration: DownStreamPortNo: %x\n", PeiUsbDevice->DownStreamPortNo));
|
||||
DEBUG ((DEBUG_INFO, "PeiHubEnumeration: DownStreamPortNo: %x\n", PeiUsbDevice->DownStreamPortNo));
|
||||
|
||||
for (Index = 0; Index < PeiUsbDevice->DownStreamPortNo; Index++) {
|
||||
|
||||
|
@ -236,7 +236,7 @@ PeiHubEnumeration (
|
|||
continue;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "USB Status --- Port: %x ConnectChange[%04x] Status[%04x]\n", Index, PortStatus.PortChangeStatus, PortStatus.PortStatus));
|
||||
DEBUG ((DEBUG_INFO, "USB Status --- Port: %x ConnectChange[%04x] Status[%04x]\n", Index, PortStatus.PortChangeStatus, PortStatus.PortStatus));
|
||||
//
|
||||
// Only handle connection/enable/overcurrent/reset change.
|
||||
//
|
||||
|
@ -305,7 +305,7 @@ PeiHubEnumeration (
|
|||
}
|
||||
|
||||
NewPeiUsbDevice->DeviceSpeed = (UINT8) PeiUsbGetDeviceSpeed (PortStatus.PortStatus);
|
||||
DEBUG ((EFI_D_INFO, "Device Speed =%d\n", PeiUsbDevice->DeviceSpeed));
|
||||
DEBUG ((DEBUG_INFO, "Device Speed =%d\n", PeiUsbDevice->DeviceSpeed));
|
||||
|
||||
if (USB_BIT_IS_SET (PortStatus.PortStatus, USB_PORT_STAT_SUPER_SPEED)){
|
||||
NewPeiUsbDevice->MaxPacketSize0 = 512;
|
||||
|
@ -339,7 +339,7 @@ PeiHubEnumeration (
|
|||
if (EFI_ERROR (Status)) {
|
||||
continue;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "PeiHubEnumeration: PeiConfigureUsbDevice Success\n"));
|
||||
DEBUG ((DEBUG_INFO, "PeiHubEnumeration: PeiConfigureUsbDevice Success\n"));
|
||||
|
||||
Status = PeiServicesInstallPpi (&NewPeiUsbDevice->UsbIoPpiList);
|
||||
|
||||
|
@ -445,7 +445,7 @@ PeiUsbEnumeration (
|
|||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PeiUsbEnumeration: NumOfRootPort: %x\n", NumOfRootPort));
|
||||
DEBUG ((DEBUG_INFO, "PeiUsbEnumeration: NumOfRootPort: %x\n", NumOfRootPort));
|
||||
|
||||
for (Index = 0; Index < NumOfRootPort; Index++) {
|
||||
//
|
||||
|
@ -466,7 +466,7 @@ PeiUsbEnumeration (
|
|||
&PortStatus
|
||||
);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "USB Status --- Port: %x ConnectChange[%04x] Status[%04x]\n", Index, PortStatus.PortChangeStatus, PortStatus.PortStatus));
|
||||
DEBUG ((DEBUG_INFO, "USB Status --- Port: %x ConnectChange[%04x] Status[%04x]\n", Index, PortStatus.PortChangeStatus, PortStatus.PortStatus));
|
||||
//
|
||||
// Only handle connection/enable/overcurrent/reset change.
|
||||
//
|
||||
|
@ -555,7 +555,7 @@ PeiUsbEnumeration (
|
|||
}
|
||||
|
||||
PeiUsbDevice->DeviceSpeed = (UINT8) PeiUsbGetDeviceSpeed (PortStatus.PortStatus);
|
||||
DEBUG ((EFI_D_INFO, "Device Speed =%d\n", PeiUsbDevice->DeviceSpeed));
|
||||
DEBUG ((DEBUG_INFO, "Device Speed =%d\n", PeiUsbDevice->DeviceSpeed));
|
||||
|
||||
if (USB_BIT_IS_SET (PortStatus.PortStatus, USB_PORT_STAT_SUPER_SPEED)){
|
||||
PeiUsbDevice->MaxPacketSize0 = 512;
|
||||
|
@ -580,7 +580,7 @@ PeiUsbEnumeration (
|
|||
if (EFI_ERROR (Status)) {
|
||||
continue;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "PeiUsbEnumeration: PeiConfigureUsbDevice Success\n"));
|
||||
DEBUG ((DEBUG_INFO, "PeiUsbEnumeration: PeiConfigureUsbDevice Success\n"));
|
||||
|
||||
Status = PeiServicesInstallPpi (&PeiUsbDevice->UsbIoPpiList);
|
||||
|
||||
|
@ -685,13 +685,13 @@ PeiConfigureUsbDevice (
|
|||
);
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "PeiUsbGet Device Descriptor the %d time Success\n", Retry));
|
||||
DEBUG ((DEBUG_INFO, "PeiUsbGet Device Descriptor the %d time Success\n", Retry));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (Retry == 3) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiUsbGet Device Descriptor fail: %x %r\n", Retry, Status));
|
||||
DEBUG ((DEBUG_ERROR, "PeiUsbGet Device Descriptor fail: %x %r\n", Retry, Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -710,7 +710,7 @@ PeiConfigureUsbDevice (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiUsbSetDeviceAddress Failed: %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "PeiUsbSetDeviceAddress Failed: %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
MicroSecondDelay (USB_SET_DEVICE_ADDRESS_STALL);
|
||||
|
@ -730,7 +730,7 @@ PeiConfigureUsbDevice (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiUsbGetDescriptor First Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "PeiUsbGetDescriptor First Failed\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -801,7 +801,7 @@ PeiUsbGetAllConfiguration (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiUsbGet Config Descriptor First Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "PeiUsbGet Config Descriptor First Failed\n"));
|
||||
return Status;
|
||||
}
|
||||
MicroSecondDelay (USB_GET_CONFIG_DESCRIPTOR_STALL);
|
||||
|
@ -836,7 +836,7 @@ PeiUsbGetAllConfiguration (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiUsbGet Config Descriptor all Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "PeiUsbGet Config Descriptor all Failed\n"));
|
||||
return Status;
|
||||
}
|
||||
//
|
||||
|
@ -1046,7 +1046,7 @@ ResetRootPort (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SetRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SetRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1067,7 +1067,7 @@ ResetRootPort (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "ClearRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ClearRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1098,7 +1098,7 @@ ResetRootPort (
|
|||
}
|
||||
|
||||
if (Index == USB_WAIT_PORT_STS_CHANGE_LOOP) {
|
||||
DEBUG ((EFI_D_ERROR, "ResetRootPort: reset not finished in time on port %d\n", PortNum));
|
||||
DEBUG ((DEBUG_ERROR, "ResetRootPort: reset not finished in time on port %d\n", PortNum));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1148,7 +1148,7 @@ ResetRootPort (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "SetRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SetRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1169,7 +1169,7 @@ ResetRootPort (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "ClearRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ClearRootHubPortFeature EfiUsbPortReset Failed\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1200,7 +1200,7 @@ ResetRootPort (
|
|||
}
|
||||
|
||||
if (Index == USB_WAIT_PORT_STS_CHANGE_LOOP) {
|
||||
DEBUG ((EFI_D_ERROR, "ResetRootPort: reset not finished in time on port %d\n", PortNum));
|
||||
DEBUG ((DEBUG_ERROR, "ResetRootPort: reset not finished in time on port %d\n", PortNum));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1239,5 +1239,3 @@ ResetRootPort (
|
|||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ UsbBootRequestSense (
|
|||
&CmdResult
|
||||
);
|
||||
if (EFI_ERROR (Status) || CmdResult != USB_MASS_CMD_SUCCESS) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootRequestSense: (%r) CmdResult=0x%x\n", Status, CmdResult));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootRequestSense: (%r) CmdResult=0x%x\n", Status, CmdResult));
|
||||
if (!EFI_ERROR (Status)) {
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ UsbBootRequestSense (
|
|||
break;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbBootRequestSense: (%r) with error code (%x) sense key %x/%x/%x\n",
|
||||
DEBUG ((DEBUG_INFO, "UsbBootRequestSense: (%r) with error code (%x) sense key %x/%x/%x\n",
|
||||
Status,
|
||||
SenseData.ErrorCode,
|
||||
USB_BOOT_SENSE_KEY (SenseData.SenseKey),
|
||||
|
@ -191,7 +191,7 @@ UsbBootExecCmd (
|
|||
);
|
||||
|
||||
if (Status == EFI_TIMEOUT) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd\n", Status, *(UINT8 *)Cmd));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd\n", Status, *(UINT8 *)Cmd));
|
||||
return EFI_TIMEOUT;
|
||||
}
|
||||
|
||||
|
@ -206,7 +206,7 @@ UsbBootExecCmd (
|
|||
//
|
||||
// If command execution failed, then retrieve error info via sense request.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd (Result = %x)\n", Status, *(UINT8 *)Cmd, CmdResult));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd (Result = %x)\n", Status, *(UINT8 *)Cmd, CmdResult));
|
||||
return UsbBootRequestSense (UsbMass);
|
||||
}
|
||||
|
||||
|
@ -631,7 +631,7 @@ UsbBootGetParams (
|
|||
|
||||
Status = UsbBootInquiry (UsbMass);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootGetParams: UsbBootInquiry (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootGetParams: UsbBootInquiry (%r)\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -643,7 +643,7 @@ UsbBootGetParams (
|
|||
(UsbMass->Pdt != USB_PDT_CDROM) &&
|
||||
(UsbMass->Pdt != USB_PDT_OPTICAL) &&
|
||||
(UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootGetParams: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootGetParams: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -695,7 +695,7 @@ UsbBootDetectMedia (
|
|||
|
||||
Status = UsbBootIsUnitReady (UsbMass);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootDetectMedia: UsbBootIsUnitReady (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootDetectMedia: UsbBootIsUnitReady (%r)\n", Status));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -719,7 +719,7 @@ UsbBootDetectMedia (
|
|||
|
||||
Status = UsbBootReadCapacity (UsbMass);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBootDetectMedia: UsbBootReadCapacity (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBootDetectMedia: UsbBootReadCapacity (%r)\n", Status));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -266,13 +266,13 @@ UsbBotDataTransfer (
|
|||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
if (USB_IS_ERROR (Result, EFI_USB_ERR_STALL)) {
|
||||
DEBUG ((EFI_D_INFO, "UsbBotDataTransfer: (%r)\n", Status));
|
||||
DEBUG ((EFI_D_INFO, "UsbBotDataTransfer: DataIn Stall\n"));
|
||||
DEBUG ((DEBUG_INFO, "UsbBotDataTransfer: (%r)\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "UsbBotDataTransfer: DataIn Stall\n"));
|
||||
UsbClearEndpointStall (UsbBot->UsbIo, Endpoint->EndpointAddress);
|
||||
} else if (USB_IS_ERROR (Result, EFI_USB_ERR_NAK)) {
|
||||
Status = EFI_NOT_READY;
|
||||
} else {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBotDataTransfer: (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBotDataTransfer: (%r)\n", Status));
|
||||
}
|
||||
if(Status == EFI_TIMEOUT){
|
||||
UsbBotResetDevice(UsbBot, FALSE);
|
||||
|
@ -416,7 +416,7 @@ UsbBotExecCommand (
|
|||
//
|
||||
Status = UsbBotSendCommand (UsbBot, Cmd, CmdLen, DataDir, DataLen, Lun);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBotExecCommand: UsbBotSendCommand (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBotExecCommand: UsbBotSendCommand (%r)\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -433,7 +433,7 @@ UsbBotExecCommand (
|
|||
//
|
||||
Status = UsbBotGetStatus (UsbBot, DataLen, &Result);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbBotExecCommand: UsbBotGetStatus (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbBotExecCommand: UsbBotGetStatus (%r)\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -604,4 +604,3 @@ UsbBotCleanUp (
|
|||
FreePool (Context);
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -451,7 +451,7 @@ UsbCbiExecCommand (
|
|||
Status = UsbCbiSendCommand (UsbCbi, Cmd, CmdLen, Timeout);
|
||||
if (EFI_ERROR (Status)) {
|
||||
gBS->Stall(10 * USB_MASS_1_MILLISECOND);
|
||||
DEBUG ((EFI_D_ERROR, "UsbCbiExecCommand: UsbCbiSendCommand (%r)\n",Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCbiExecCommand: UsbCbiSendCommand (%r)\n",Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -463,7 +463,7 @@ UsbCbiExecCommand (
|
|||
|
||||
Status = UsbCbiDataTransfer (UsbCbi, DataDir, Data, &TransLen, Timeout);
|
||||
if (UsbCbi->InterruptEndpoint == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbCbiExecCommand: UsbCbiDataTransfer (%r)\n",Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCbiExecCommand: UsbCbiDataTransfer (%r)\n",Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -472,7 +472,7 @@ UsbCbiExecCommand (
|
|||
//
|
||||
Status = UsbCbiGetStatus (UsbCbi, Timeout, &Result);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbCbiExecCommand: UsbCbiGetStatus (%r)\n",Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbCbiExecCommand: UsbCbiGetStatus (%r)\n",Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ UsbMassReadBlocks (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassReadBlocks: UsbBootReadBlocks (%r) -> Reset\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassReadBlocks: UsbBootReadBlocks (%r) -> Reset\n", Status));
|
||||
UsbMassReset (This, TRUE);
|
||||
}
|
||||
|
||||
|
@ -292,7 +292,7 @@ UsbMassWriteBlocks (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassWriteBlocks: UsbBootWriteBlocks (%r) -> Reset\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassWriteBlocks: UsbBootWriteBlocks (%r) -> Reset\n", Status));
|
||||
UsbMassReset (This, TRUE);
|
||||
}
|
||||
|
||||
|
@ -491,7 +491,7 @@ UsbMassInitMultiLun (
|
|||
|
||||
for (Index = 0; Index <= MaxLun; Index++) {
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UsbMassInitMultiLun: Start to initialize No.%d logic unit\n", Index));
|
||||
DEBUG ((DEBUG_INFO, "UsbMassInitMultiLun: Start to initialize No.%d logic unit\n", Index));
|
||||
|
||||
UsbIo = NULL;
|
||||
UsbMass = AllocateZeroPool (sizeof (USB_MASS_DEVICE));
|
||||
|
@ -514,7 +514,7 @@ UsbMassInitMultiLun (
|
|||
//
|
||||
Status = UsbMassInitMedia (UsbMass);
|
||||
if ((EFI_ERROR (Status)) && (Status != EFI_NO_MEDIA)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: UsbMassInitMedia (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitMultiLun: UsbMassInitMedia (%r)\n", Status));
|
||||
FreePool (UsbMass);
|
||||
continue;
|
||||
}
|
||||
|
@ -531,7 +531,7 @@ UsbMassInitMultiLun (
|
|||
UsbMass->DevicePath = AppendDevicePathNode (DevicePath, &LunNode.Header);
|
||||
|
||||
if (UsbMass->DevicePath == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: failed to create device logic unit device path\n"));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitMultiLun: failed to create device logic unit device path\n"));
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
FreePool (UsbMass);
|
||||
continue;
|
||||
|
@ -554,7 +554,7 @@ UsbMassInitMultiLun (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: InstallMultipleProtocolInterfaces (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitMultiLun: InstallMultipleProtocolInterfaces (%r)\n", Status));
|
||||
FreePool (UsbMass->DevicePath);
|
||||
FreePool (UsbMass);
|
||||
continue;
|
||||
|
@ -573,7 +573,7 @@ UsbMassInitMultiLun (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: OpenUsbIoProtocol By Child (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitMultiLun: OpenUsbIoProtocol By Child (%r)\n", Status));
|
||||
gBS->UninstallMultipleProtocolInterfaces (
|
||||
UsbMass->Controller,
|
||||
&gEfiDevicePathProtocolGuid,
|
||||
|
@ -589,7 +589,7 @@ UsbMassInitMultiLun (
|
|||
continue;
|
||||
}
|
||||
ReturnStatus = EFI_SUCCESS;
|
||||
DEBUG ((EFI_D_INFO, "UsbMassInitMultiLun: Success to initialize No.%d logic unit\n", Index));
|
||||
DEBUG ((DEBUG_INFO, "UsbMassInitMultiLun: Success to initialize No.%d logic unit\n", Index));
|
||||
}
|
||||
|
||||
return ReturnStatus;
|
||||
|
@ -633,7 +633,7 @@ UsbMassInitNonLun (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitNonLun: OpenUsbIoProtocol By Driver (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitNonLun: OpenUsbIoProtocol By Driver (%r)\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -654,7 +654,7 @@ UsbMassInitNonLun (
|
|||
//
|
||||
Status = UsbMassInitMedia (UsbMass);
|
||||
if ((EFI_ERROR (Status)) && (Status != EFI_NO_MEDIA)) {
|
||||
DEBUG ((EFI_D_ERROR, "UsbMassInitNonLun: UsbMassInitMedia (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "UsbMassInitNonLun: UsbMassInitMedia (%r)\n", Status));
|
||||
goto ON_ERROR;
|
||||
}
|
||||
|
||||
|
@ -810,7 +810,7 @@ USBMassDriverBindingStart (
|
|||
Status = UsbMassInitTransport (This, Controller, &Transport, &Context, &MaxLun);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitTransport (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "USBMassDriverBindingStart: UsbMassInitTransport (%r)\n", Status));
|
||||
goto Exit;
|
||||
}
|
||||
if (MaxLun == 0) {
|
||||
|
@ -819,7 +819,7 @@ USBMassDriverBindingStart (
|
|||
//
|
||||
Status = UsbMassInitNonLun (This, Controller, Transport, Context);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitNonLun (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "USBMassDriverBindingStart: UsbMassInitNonLun (%r)\n", Status));
|
||||
}
|
||||
} else {
|
||||
//
|
||||
|
@ -835,7 +835,7 @@ USBMassDriverBindingStart (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: OpenDevicePathProtocol By Driver (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "USBMassDriverBindingStart: OpenDevicePathProtocol By Driver (%r)\n", Status));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
|
@ -849,7 +849,7 @@ USBMassDriverBindingStart (
|
|||
);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: OpenUsbIoProtocol By Driver (%r)\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "USBMassDriverBindingStart: OpenUsbIoProtocol By Driver (%r)\n", Status));
|
||||
gBS->CloseProtocol (
|
||||
Controller,
|
||||
&gEfiDevicePathProtocolGuid,
|
||||
|
@ -877,7 +877,7 @@ USBMassDriverBindingStart (
|
|||
This->DriverBindingHandle,
|
||||
Controller
|
||||
);
|
||||
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitMultiLun (%r) with Maxlun=%d\n", Status, MaxLun));
|
||||
DEBUG ((DEBUG_ERROR, "USBMassDriverBindingStart: UsbMassInitMultiLun (%r) with Maxlun=%d\n", Status, MaxLun));
|
||||
}
|
||||
}
|
||||
Exit:
|
||||
|
@ -953,7 +953,7 @@ USBMassDriverBindingStop (
|
|||
This->DriverBindingHandle,
|
||||
Controller
|
||||
);
|
||||
DEBUG ((EFI_D_INFO, "Success to stop multi-lun root handle\n"));
|
||||
DEBUG ((DEBUG_INFO, "Success to stop multi-lun root handle\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -989,7 +989,7 @@ USBMassDriverBindingStop (
|
|||
UsbMass->Transport->CleanUp (UsbMass->Context);
|
||||
FreePool (UsbMass);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Success to stop non-multi-lun root handle\n"));
|
||||
DEBUG ((DEBUG_INFO, "Success to stop non-multi-lun root handle\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -1012,7 +1012,7 @@ USBMassDriverBindingStop (
|
|||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
AllChildrenStopped = FALSE;
|
||||
DEBUG ((EFI_D_ERROR, "Fail to stop No.%d multi-lun child handle when opening blockio\n", (UINT32)Index));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to stop No.%d multi-lun child handle when opening blockio\n", (UINT32)Index));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -1041,7 +1041,7 @@ USBMassDriverBindingStop (
|
|||
// Fail to uninstall Block I/O Protocol and Device Path Protocol, so re-open USB I/O Protocol by child.
|
||||
//
|
||||
AllChildrenStopped = FALSE;
|
||||
DEBUG ((EFI_D_ERROR, "Fail to stop No.%d multi-lun child handle when uninstalling blockio and devicepath\n", (UINT32)Index));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to stop No.%d multi-lun child handle when uninstalling blockio and devicepath\n", (UINT32)Index));
|
||||
|
||||
gBS->OpenProtocol (
|
||||
Controller,
|
||||
|
@ -1066,7 +1066,7 @@ USBMassDriverBindingStop (
|
|||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Success to stop all %d multi-lun children handles\n", (UINT32) NumberOfChildren));
|
||||
DEBUG ((DEBUG_INFO, "Success to stop all %d multi-lun children handles\n", (UINT32) NumberOfChildren));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -769,7 +769,7 @@ FvIsBeingProcessed (
|
|||
for (Link = mFvHandleList.ForwardLink; Link != &mFvHandleList; Link = Link->ForwardLink) {
|
||||
KnownHandle = CR(Link, KNOWN_HANDLE, Link, KNOWN_HANDLE_SIGNATURE);
|
||||
if (CompareGuid (&FvNameGuid, &KnownHandle->FvNameGuid)) {
|
||||
DEBUG ((EFI_D_ERROR, "FvImage on FvHandle %p and %p has the same FvNameGuid %g.\n", FvHandle, KnownHandle->Handle, &FvNameGuid));
|
||||
DEBUG ((DEBUG_ERROR, "FvImage on FvHandle %p and %p has the same FvNameGuid %g.\n", FvHandle, KnownHandle->Handle, &FvNameGuid));
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ CoreRaiseTpl (
|
|||
|
||||
OldTpl = gEfiCurrentTpl;
|
||||
if (OldTpl > NewTpl) {
|
||||
DEBUG ((EFI_D_ERROR, "FATAL ERROR - RaiseTpl with OldTpl(0x%x) > NewTpl(0x%x)\n", OldTpl, NewTpl));
|
||||
DEBUG ((DEBUG_ERROR, "FATAL ERROR - RaiseTpl with OldTpl(0x%x) > NewTpl(0x%x)\n", OldTpl, NewTpl));
|
||||
ASSERT (FALSE);
|
||||
}
|
||||
ASSERT (VALID_TPL (NewTpl));
|
||||
|
@ -101,7 +101,7 @@ CoreRestoreTpl (
|
|||
|
||||
OldTpl = gEfiCurrentTpl;
|
||||
if (NewTpl > OldTpl) {
|
||||
DEBUG ((EFI_D_ERROR, "FATAL ERROR - RestoreTpl with NewTpl(0x%x) > OldTpl(0x%x)\n", NewTpl, OldTpl));
|
||||
DEBUG ((DEBUG_ERROR, "FATAL ERROR - RestoreTpl with NewTpl(0x%x) > OldTpl(0x%x)\n", NewTpl, OldTpl));
|
||||
ASSERT (FALSE);
|
||||
}
|
||||
ASSERT (VALID_TPL (NewTpl));
|
||||
|
|
|
@ -463,7 +463,7 @@ FvCheck (
|
|||
(FileState == EFI_FILE_HEADER_CONSTRUCTION)) {
|
||||
if (IS_FFS_FILE2 (FfsHeader)) {
|
||||
if (!FvDevice->IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsHeader->Name));
|
||||
}
|
||||
FfsHeader = (EFI_FFS_FILE_HEADER *) ((UINT8 *) FfsHeader + sizeof (EFI_FFS_FILE_HEADER2));
|
||||
} else {
|
||||
|
@ -508,7 +508,7 @@ FvCheck (
|
|||
if (IS_FFS_FILE2 (CacheFfsHeader)) {
|
||||
ASSERT (FFS_FILE2_SIZE (CacheFfsHeader) > 0x00FFFFFF);
|
||||
if (!FvDevice->IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &CacheFfsHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &CacheFfsHeader->Name));
|
||||
FfsHeader = (EFI_FFS_FILE_HEADER *) ((UINT8 *) FfsHeader + FFS_FILE2_SIZE (CacheFfsHeader));
|
||||
//
|
||||
// Adjust pointer to the next 8-byte aligned boundary.
|
||||
|
@ -725,5 +725,3 @@ FwVolDriverInit (
|
|||
);
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -2384,8 +2384,8 @@ CoreInitializeMemoryServices (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "CoreInitializeMemoryServices:\n"));
|
||||
DEBUG ((EFI_D_INFO, " BaseAddress - 0x%lx Length - 0x%lx MinimalMemorySizeNeeded - 0x%lx\n", BaseAddress, Length, MinimalMemorySizeNeeded));
|
||||
DEBUG ((DEBUG_INFO, "CoreInitializeMemoryServices:\n"));
|
||||
DEBUG ((DEBUG_INFO, " BaseAddress - 0x%lx Length - 0x%lx MinimalMemorySizeNeeded - 0x%lx\n", BaseAddress, Length, MinimalMemorySizeNeeded));
|
||||
|
||||
//
|
||||
// If no memory regions are found that are big enough to initialize the DXE core, then ASSERT().
|
||||
|
|
|
@ -485,7 +485,7 @@ GetPeCoffImageFixLoadingAssignedAddress(
|
|||
}
|
||||
SectionHeaderOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address 0x%11p. Status = %r \n", (VOID *)(UINTN)(ImageContext->ImageAddress), Status));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address 0x%11p. Status = %r \n", (VOID *)(UINTN)(ImageContext->ImageAddress), Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -648,7 +648,7 @@ CoreLoadPeImage (
|
|||
//
|
||||
// If the code memory is not ready, invoke CoreAllocatePage with AllocateAnyPages to load the driver.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED ERROR: Loading module at fixed address failed since specified memory is not available.\n"));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED ERROR: Loading module at fixed address failed since specified memory is not available.\n"));
|
||||
|
||||
Status = CoreAllocatePages (
|
||||
AllocateAnyPages,
|
||||
|
@ -1587,8 +1587,8 @@ CoreStartImage (
|
|||
// Do not ASSERT here, because image might be loaded via EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED
|
||||
// But it can not be started.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "Image type %s can't be started ", GetMachineTypeName(Image->Machine)));
|
||||
DEBUG ((EFI_D_ERROR, "on %s UEFI system.\n", GetMachineTypeName(mDxeCoreImageMachineType)));
|
||||
DEBUG ((DEBUG_ERROR, "Image type %s can't be started ", GetMachineTypeName(Image->Machine)));
|
||||
DEBUG ((DEBUG_ERROR, "on %s UEFI system.\n", GetMachineTypeName(mDxeCoreImageMachineType)));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
|
|
@ -611,7 +611,7 @@ MemoryProfileInit (
|
|||
|
||||
RegisterDxeCore (HobStart, &mMemoryProfileContext);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "MemoryProfileInit MemoryProfileContext - 0x%x\n", &mMemoryProfileContext));
|
||||
DEBUG ((DEBUG_INFO, "MemoryProfileInit MemoryProfileContext - 0x%x\n", &mMemoryProfileContext));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -66,7 +66,7 @@ CoreInitializeDebugImageInfoTable (
|
|||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
if (PcdGet64 (PcdMaxEfiSystemTablePointerAddress) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "Allocate memory for EFI_SYSTEM_TABLE_POINTER below PcdMaxEfiSystemTablePointerAddress failed. \
|
||||
DEBUG ((DEBUG_INFO, "Allocate memory for EFI_SYSTEM_TABLE_POINTER below PcdMaxEfiSystemTablePointerAddress failed. \
|
||||
Retry to allocate memroy as close to the top of memory as feasible.\n"));
|
||||
}
|
||||
//
|
||||
|
@ -278,5 +278,3 @@ CoreRemoveDebugImageInfoEntry (
|
|||
}
|
||||
mDebugInfoTableHeader.UpdateStatus &= ~EFI_DEBUG_IMAGE_INFO_UPDATE_IN_PROGRESS;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ InstallMemoryAttributesTable (
|
|||
|
||||
if (!mMemoryAttributesTableEnable) {
|
||||
DEBUG ((DEBUG_VERBOSE, "Cannot install Memory Attributes Table "));
|
||||
DEBUG ((EFI_D_VERBOSE, "because Runtime Driver Section Alignment is not %dK.\n", RUNTIME_PAGE_ALLOCATION_GRANULARITY >> 10));
|
||||
DEBUG ((DEBUG_VERBOSE, "because Runtime Driver Section Alignment is not %dK.\n", RUNTIME_PAGE_ALLOCATION_GRANULARITY >> 10));
|
||||
return ;
|
||||
}
|
||||
|
||||
|
@ -182,10 +182,10 @@ InstallMemoryAttributesTable (
|
|||
MemoryAttributesTable->NumberOfEntries = RuntimeEntryCount;
|
||||
MemoryAttributesTable->DescriptorSize = (UINT32)DescriptorSize;
|
||||
MemoryAttributesTable->Reserved = 0;
|
||||
DEBUG ((EFI_D_VERBOSE, "MemoryAttributesTable:\n"));
|
||||
DEBUG ((EFI_D_VERBOSE, " Version - 0x%08x\n", MemoryAttributesTable->Version));
|
||||
DEBUG ((EFI_D_VERBOSE, " NumberOfEntries - 0x%08x\n", MemoryAttributesTable->NumberOfEntries));
|
||||
DEBUG ((EFI_D_VERBOSE, " DescriptorSize - 0x%08x\n", MemoryAttributesTable->DescriptorSize));
|
||||
DEBUG ((DEBUG_VERBOSE, "MemoryAttributesTable:\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, " Version - 0x%08x\n", MemoryAttributesTable->Version));
|
||||
DEBUG ((DEBUG_VERBOSE, " NumberOfEntries - 0x%08x\n", MemoryAttributesTable->NumberOfEntries));
|
||||
DEBUG ((DEBUG_VERBOSE, " DescriptorSize - 0x%08x\n", MemoryAttributesTable->DescriptorSize));
|
||||
MemoryAttributesEntry = (EFI_MEMORY_DESCRIPTOR *)(MemoryAttributesTable + 1);
|
||||
MemoryMap = MemoryMapStart;
|
||||
for (Index = 0; Index < MemoryMapSize/DescriptorSize; Index++) {
|
||||
|
@ -194,12 +194,12 @@ InstallMemoryAttributesTable (
|
|||
case EfiRuntimeServicesData:
|
||||
CopyMem (MemoryAttributesEntry, MemoryMap, DescriptorSize);
|
||||
MemoryAttributesEntry->Attribute &= (EFI_MEMORY_RO|EFI_MEMORY_XP|EFI_MEMORY_RUNTIME);
|
||||
DEBUG ((EFI_D_VERBOSE, "Entry (0x%x)\n", MemoryAttributesEntry));
|
||||
DEBUG ((EFI_D_VERBOSE, " Type - 0x%x\n", MemoryAttributesEntry->Type));
|
||||
DEBUG ((EFI_D_VERBOSE, " PhysicalStart - 0x%016lx\n", MemoryAttributesEntry->PhysicalStart));
|
||||
DEBUG ((EFI_D_VERBOSE, " VirtualStart - 0x%016lx\n", MemoryAttributesEntry->VirtualStart));
|
||||
DEBUG ((EFI_D_VERBOSE, " NumberOfPages - 0x%016lx\n", MemoryAttributesEntry->NumberOfPages));
|
||||
DEBUG ((EFI_D_VERBOSE, " Attribute - 0x%016lx\n", MemoryAttributesEntry->Attribute));
|
||||
DEBUG ((DEBUG_VERBOSE, "Entry (0x%x)\n", MemoryAttributesEntry));
|
||||
DEBUG ((DEBUG_VERBOSE, " Type - 0x%x\n", MemoryAttributesEntry->Type));
|
||||
DEBUG ((DEBUG_VERBOSE, " PhysicalStart - 0x%016lx\n", MemoryAttributesEntry->PhysicalStart));
|
||||
DEBUG ((DEBUG_VERBOSE, " VirtualStart - 0x%016lx\n", MemoryAttributesEntry->VirtualStart));
|
||||
DEBUG ((DEBUG_VERBOSE, " NumberOfPages - 0x%016lx\n", MemoryAttributesEntry->NumberOfPages));
|
||||
DEBUG ((DEBUG_VERBOSE, " Attribute - 0x%016lx\n", MemoryAttributesEntry->Attribute));
|
||||
MemoryAttributesEntry = NEXT_MEMORY_DESCRIPTOR(MemoryAttributesEntry, DescriptorSize);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -378,7 +378,7 @@ HandOffToDxeCore (
|
|||
(VOID **)&VectorHandoffInfoPpi
|
||||
);
|
||||
if (Status == EFI_SUCCESS) {
|
||||
DEBUG ((EFI_D_INFO, "Vector Hand-off Info PPI is gotten, GUIDed HOB is created!\n"));
|
||||
DEBUG ((DEBUG_INFO, "Vector Hand-off Info PPI is gotten, GUIDed HOB is created!\n"));
|
||||
VectorInfo = VectorHandoffInfoPpi->Info;
|
||||
Index = 1;
|
||||
while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
|
||||
|
@ -462,4 +462,3 @@ HandOffToDxeCore (
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ HandOffToDxeCore (
|
|||
(VOID **)&VectorHandoffInfoPpi
|
||||
);
|
||||
if (Status == EFI_SUCCESS) {
|
||||
DEBUG ((EFI_D_INFO, "Vector Hand-off Info PPI is gotten, GUIDed HOB is created!\n"));
|
||||
DEBUG ((DEBUG_INFO, "Vector Hand-off Info PPI is gotten, GUIDed HOB is created!\n"));
|
||||
VectorInfo = VectorHandoffInfoPpi->Info;
|
||||
Index = 1;
|
||||
while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
|
||||
|
|
|
@ -302,10 +302,10 @@ PeiLoadFixAddressHook(
|
|||
//
|
||||
TotalReservedMemorySize += PeiMemorySize;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressRuntimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressRuntimeCodePageNumber)));
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressBootTimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressBootTimeCodePageNumber)));
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressPeiCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressPeiCodePageNumber)));
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: Total Reserved Memory Size = 0x%lx.\n", TotalReservedMemorySize));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressRuntimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressRuntimeCodePageNumber)));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressBootTimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressBootTimeCodePageNumber)));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressPeiCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressPeiCodePageNumber)));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Total Reserved Memory Size = 0x%lx.\n", TotalReservedMemorySize));
|
||||
//
|
||||
// Loop through the system memory typed HOB to merge the adjacent memory range
|
||||
//
|
||||
|
@ -433,12 +433,12 @@ PeiLoadFixAddressHook(
|
|||
// The LMFA feature is enabled as load module at fixed absolute address.
|
||||
//
|
||||
TopLoadingAddress = (EFI_PHYSICAL_ADDRESS)PcdGet64(PcdLoadModuleAtFixAddressEnable);
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: Loading module at fixed absolute address.\n"));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Loading module at fixed absolute address.\n"));
|
||||
//
|
||||
// validate the Address. Loop the resource descriptor HOB to make sure the address is in valid memory range
|
||||
//
|
||||
if ((TopLoadingAddress & EFI_PAGE_MASK) != 0) {
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid since top address should be page align. \n", TopLoadingAddress));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid since top address should be page align. \n", TopLoadingAddress));
|
||||
ASSERT (FALSE);
|
||||
}
|
||||
//
|
||||
|
@ -470,11 +470,11 @@ PeiLoadFixAddressHook(
|
|||
}
|
||||
}
|
||||
if (CurrentResourceHob != NULL) {
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO:Top Address 0x%lx is valid \n", TopLoadingAddress));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO:Top Address 0x%lx is valid \n", TopLoadingAddress));
|
||||
TopLoadingAddress += MINIMUM_INITIAL_MEMORY_SIZE;
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid \n", TopLoadingAddress));
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR:The recommended Top Address for the platform is: \n"));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid \n", TopLoadingAddress));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:The recommended Top Address for the platform is: \n"));
|
||||
//
|
||||
// Print the recommended Top address range.
|
||||
//
|
||||
|
@ -494,7 +494,7 @@ PeiLoadFixAddressHook(
|
|||
// See if Top address specified by user is valid.
|
||||
//
|
||||
if (ResourceHob->ResourceLength > TotalReservedMemorySize && PeiLoadFixAddressIsMemoryRangeAvailable(PrivateData, ResourceHob)) {
|
||||
DEBUG ((EFI_D_INFO, "(0x%lx, 0x%lx)\n",
|
||||
DEBUG ((DEBUG_INFO, "(0x%lx, 0x%lx)\n",
|
||||
(ResourceHob->PhysicalStart + TotalReservedMemorySize -MINIMUM_INITIAL_MEMORY_SIZE),
|
||||
(ResourceHob->PhysicalStart + ResourceHob->ResourceLength -MINIMUM_INITIAL_MEMORY_SIZE)
|
||||
));
|
||||
|
@ -541,7 +541,7 @@ PeiLoadFixAddressHook(
|
|||
}
|
||||
}
|
||||
if (CurrentResourceHob == NULL) {
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR:The System Memory is too small\n"));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:The System Memory is too small\n"));
|
||||
//
|
||||
// Assert here
|
||||
//
|
||||
|
@ -613,7 +613,7 @@ PeiLoadFixAddressHook(
|
|||
// Cache the top address for Loading Module at Fixed Address feature
|
||||
//
|
||||
PrivateData->LoadModuleAtFixAddressTopAddress = TopLoadingAddress - MINIMUM_INITIAL_MEMORY_SIZE;
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: Top address = 0x%lx\n", PrivateData->LoadModuleAtFixAddressTopAddress));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Top address = 0x%lx\n", PrivateData->LoadModuleAtFixAddressTopAddress));
|
||||
//
|
||||
// reinstall the PEI memory relative to TopLoadingAddress
|
||||
//
|
||||
|
@ -732,7 +732,7 @@ PeiCheckAndSwitchStack (
|
|||
// If Loading Module at Fixed Address is enabled, Allocating memory range for Pei code range.
|
||||
//
|
||||
LoadFixPeiCodeBegin = AllocatePages((UINTN)PcdGet32(PcdLoadFixAddressPeiCodePageNumber));
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: PeiCodeBegin = 0x%lX, PeiCodeTop= 0x%lX\n", (UINT64)(UINTN)LoadFixPeiCodeBegin, (UINT64)((UINTN)LoadFixPeiCodeBegin + PcdGet32(PcdLoadFixAddressPeiCodePageNumber) * EFI_PAGE_SIZE)));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PeiCodeBegin = 0x%lX, PeiCodeTop= 0x%lX\n", (UINT64)(UINTN)LoadFixPeiCodeBegin, (UINT64)((UINTN)LoadFixPeiCodeBegin + PcdGet32(PcdLoadFixAddressPeiCodePageNumber) * EFI_PAGE_SIZE)));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -746,7 +746,7 @@ PeiCheckAndSwitchStack (
|
|||
NewStackSize = RShiftU64 (Private->PhysicalMemoryLength, 1);
|
||||
NewStackSize = ALIGN_VALUE (NewStackSize, EFI_PAGE_SIZE);
|
||||
NewStackSize = MIN (PcdGet32(PcdPeiCoreMaxPeiStackSize), NewStackSize);
|
||||
DEBUG ((EFI_D_INFO, "Old Stack size %d, New stack size %d\n", (UINT32)SecCoreData->StackSize, (UINT32)NewStackSize));
|
||||
DEBUG ((DEBUG_INFO, "Old Stack size %d, New stack size %d\n", (UINT32)SecCoreData->StackSize, (UINT32)NewStackSize));
|
||||
ASSERT (NewStackSize >= SecCoreData->StackSize);
|
||||
|
||||
//
|
||||
|
@ -768,7 +768,7 @@ PeiCheckAndSwitchStack (
|
|||
//
|
||||
// Build Stack HOB that describes the permanent memory stack
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Stack Hob: BaseAddress=0x%lX Length=0x%lX\n", TopOfNewStack - NewStackSize, NewStackSize));
|
||||
DEBUG ((DEBUG_INFO, "Stack Hob: BaseAddress=0x%lX Length=0x%lX\n", TopOfNewStack - NewStackSize, NewStackSize));
|
||||
BuildStackHob (TopOfNewStack - NewStackSize, NewStackSize);
|
||||
|
||||
//
|
||||
|
@ -803,7 +803,7 @@ PeiCheckAndSwitchStack (
|
|||
Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
|
||||
DEBUG ((DEBUG_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
|
||||
|
||||
//
|
||||
// Calculate new HandOffTable and PrivateData address in permanent memory's stack
|
||||
|
@ -871,7 +871,7 @@ PeiCheckAndSwitchStack (
|
|||
Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
|
||||
DEBUG ((DEBUG_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
|
||||
|
||||
//
|
||||
// Migrate Heap
|
||||
|
@ -1730,6 +1730,3 @@ PeiRegisterForShadow (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -317,7 +317,7 @@ FindFileEx (
|
|||
} else {
|
||||
if (IS_FFS_FILE2 (*FileHeader)) {
|
||||
if (!IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &(*FileHeader)->Name));
|
||||
DEBUG ((DEBUG_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &(*FileHeader)->Name));
|
||||
}
|
||||
FileLength = FFS_FILE2_SIZE (*FileHeader);
|
||||
ASSERT (FileLength > 0x00FFFFFF);
|
||||
|
@ -345,7 +345,7 @@ FindFileEx (
|
|||
case EFI_FILE_HEADER_INVALID:
|
||||
if (IS_FFS_FILE2 (FfsFileHeader)) {
|
||||
if (!IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
}
|
||||
FileOffset += sizeof (EFI_FFS_FILE_HEADER2);
|
||||
FfsFileHeader = (EFI_FFS_FILE_HEADER *) ((UINT8 *) FfsFileHeader + sizeof (EFI_FFS_FILE_HEADER2));
|
||||
|
@ -368,7 +368,7 @@ FindFileEx (
|
|||
ASSERT (FileLength > 0x00FFFFFF);
|
||||
FileOccupiedSize = GET_OCCUPIED_SIZE (FileLength, 8);
|
||||
if (!IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
FileOffset += FileOccupiedSize;
|
||||
FfsFileHeader = (EFI_FFS_FILE_HEADER *) ((UINT8 *) FfsFileHeader + FileOccupiedSize);
|
||||
break;
|
||||
|
@ -424,7 +424,7 @@ FindFileEx (
|
|||
case EFI_FILE_DELETED:
|
||||
if (IS_FFS_FILE2 (FfsFileHeader)) {
|
||||
if (!IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
}
|
||||
FileLength = FFS_FILE2_SIZE (FfsFileHeader);
|
||||
ASSERT (FileLength > 0x00FFFFFF);
|
||||
|
@ -509,7 +509,7 @@ PeiInitializeFv (
|
|||
PrivateData->Fv[PrivateData->FvCount].FvHandle = FvHandle;
|
||||
PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = 0;
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",
|
||||
(UINT32) PrivateData->FvCount,
|
||||
(VOID *) BfvHeader,
|
||||
|
@ -607,7 +607,7 @@ FirmwareVolumeInfoPpiNotifyCallback (
|
|||
//
|
||||
Status = FvPpi->ProcessVolume (FvPpi, FvInfo2Ppi.FvInfo, FvInfo2Ppi.FvInfoSize, &FvHandle);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Fail to process new found FV, FV may be corrupted!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to process new found FV, FV may be corrupted!\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -618,7 +618,7 @@ FirmwareVolumeInfoPpiNotifyCallback (
|
|||
if (PrivateData->Fv[FvIndex].FvHandle == FvHandle) {
|
||||
if (IsFvInfo2 && (FvInfo2Ppi.AuthenticationStatus != PrivateData->Fv[FvIndex].AuthenticationStatus)) {
|
||||
PrivateData->Fv[FvIndex].AuthenticationStatus = FvInfo2Ppi.AuthenticationStatus;
|
||||
DEBUG ((EFI_D_INFO, "Update AuthenticationStatus of the %dth FV to 0x%x!\n", FvIndex, FvInfo2Ppi.AuthenticationStatus));
|
||||
DEBUG ((DEBUG_INFO, "Update AuthenticationStatus of the %dth FV to 0x%x!\n", FvIndex, FvInfo2Ppi.AuthenticationStatus));
|
||||
}
|
||||
DEBUG ((DEBUG_INFO, "The FV %p has already been processed!\n", FvInfo2Ppi.FvInfo));
|
||||
return EFI_SUCCESS;
|
||||
|
@ -651,7 +651,7 @@ FirmwareVolumeInfoPpiNotifyCallback (
|
|||
PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = FvInfo2Ppi.AuthenticationStatus;
|
||||
CurFvCount = PrivateData->FvCount;
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",
|
||||
(UINT32) CurFvCount,
|
||||
(VOID *) FvInfo2Ppi.FvInfo,
|
||||
|
@ -687,12 +687,12 @@ FirmwareVolumeInfoPpiNotifyCallback (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));
|
||||
DEBUG ((DEBUG_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));
|
||||
ProcessFvFile (PrivateData, &PrivateData->Fv[CurFvCount], FileHandle);
|
||||
}
|
||||
} while (FileHandle != NULL);
|
||||
} else {
|
||||
DEBUG ((EFI_D_ERROR, "Fail to process FV %p because no corresponding EFI_FIRMWARE_VOLUME_PPI is found!\n", FvInfo2Ppi.FvInfo));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to process FV %p because no corresponding EFI_FIRMWARE_VOLUME_PPI is found!\n", FvInfo2Ppi.FvInfo));
|
||||
|
||||
AddUnknownFormatFvInfo (PrivateData, &FvInfo2Ppi);
|
||||
}
|
||||
|
@ -808,7 +808,7 @@ ProcessSection (
|
|||
if (IS_SECTION2 (Section)) {
|
||||
ASSERT (SECTION2_SIZE (Section) > 0x00FFFFFF);
|
||||
if (!IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted section in a non-FFS3 formatted FV.\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Found a FFS3 formatted section in a non-FFS3 formatted FV.\n"));
|
||||
SectionLength = SECTION2_SIZE (Section);
|
||||
//
|
||||
// SectionLength is adjusted it is 4 byte aligned.
|
||||
|
@ -1404,7 +1404,7 @@ ProcessFvFile (
|
|||
//
|
||||
// this FILE has been dispatched, it will not be dispatched again.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "FV file %p has been dispatched!\r\n", ParentFvFileHandle));
|
||||
DEBUG ((DEBUG_INFO, "FV file %p has been dispatched!\r\n", ParentFvFileHandle));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
HobPtr.Raw = GET_NEXT_HOB (HobPtr);
|
||||
|
@ -1628,7 +1628,7 @@ PeiFfsFvPpiProcessVolume (
|
|||
//
|
||||
Status = VerifyFv ((EFI_FIRMWARE_VOLUME_HEADER*) Buffer);
|
||||
if (EFI_ERROR(Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Fail to verify FV which address is 0x%11p", Buffer));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to verify FV which address is 0x%11p", Buffer));
|
||||
return EFI_VOLUME_CORRUPTED;
|
||||
}
|
||||
|
||||
|
@ -1810,7 +1810,7 @@ PeiFfsFvPpiGetFileInfo (
|
|||
if (IS_FFS_FILE2 (FileHeader)) {
|
||||
ASSERT (FFS_FILE2_SIZE (FileHeader) > 0x00FFFFFF);
|
||||
if (!FwVolInstance->IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FileHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FileHeader->Name));
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
FileInfo->BufferSize = FFS_FILE2_SIZE (FileHeader) - sizeof (EFI_FFS_FILE_HEADER2);
|
||||
|
@ -2029,7 +2029,7 @@ PeiFfsFvPpiFindSectionByType2 (
|
|||
if (IS_FFS_FILE2 (FfsFileHeader)) {
|
||||
ASSERT (FFS_FILE2_SIZE (FfsFileHeader) > 0x00FFFFFF);
|
||||
if (!FwVolInstance->IsFfs3Fv) {
|
||||
DEBUG ((EFI_D_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
DEBUG ((DEBUG_ERROR, "It is a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &FfsFileHeader->Name));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
Section = (EFI_COMMON_SECTION_HEADER *) ((UINT8 *) FfsFileHeader + sizeof (EFI_FFS_FILE_HEADER2));
|
||||
|
@ -2344,7 +2344,7 @@ ThirdPartyFvPpiNotifyCallback (
|
|||
//
|
||||
Status = FvPpi->ProcessVolume (FvPpi, FvInfo, FvInfoSize, &FvHandle);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "Fail to process the FV 0x%p, FV may be corrupted!\n", FvInfo));
|
||||
DEBUG ((DEBUG_ERROR, "Fail to process the FV 0x%p, FV may be corrupted!\n", FvInfo));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -2390,7 +2390,7 @@ ThirdPartyFvPpiNotifyCallback (
|
|||
PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = AuthenticationStatus;
|
||||
CurFvCount = PrivateData->FvCount;
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",
|
||||
(UINT32) CurFvCount,
|
||||
(VOID *) FvInfo,
|
||||
|
@ -2426,7 +2426,7 @@ ThirdPartyFvPpiNotifyCallback (
|
|||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));
|
||||
DEBUG ((DEBUG_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));
|
||||
ProcessFvFile (PrivateData, &PrivateData->Fv[CurFvCount], FileHandle);
|
||||
}
|
||||
} while (FileHandle != NULL);
|
||||
|
|
|
@ -95,9 +95,9 @@ PeiCreateHob (
|
|||
HandOffHob->EfiFreeMemoryBottom;
|
||||
|
||||
if (FreeMemory < Length) {
|
||||
DEBUG ((EFI_D_ERROR, "PeiCreateHob fail: Length - 0x%08x\n", (UINTN)Length));
|
||||
DEBUG ((EFI_D_ERROR, " FreeMemoryTop - 0x%08x\n", (UINTN)HandOffHob->EfiFreeMemoryTop));
|
||||
DEBUG ((EFI_D_ERROR, " FreeMemoryBottom - 0x%08x\n", (UINTN)HandOffHob->EfiFreeMemoryBottom));
|
||||
DEBUG ((DEBUG_ERROR, "PeiCreateHob fail: Length - 0x%08x\n", (UINTN)Length));
|
||||
DEBUG ((DEBUG_ERROR, " FreeMemoryTop - 0x%08x\n", (UINTN)HandOffHob->EfiFreeMemoryTop));
|
||||
DEBUG ((DEBUG_ERROR, " FreeMemoryBottom - 0x%08x\n", (UINTN)HandOffHob->EfiFreeMemoryBottom));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
|
|
|
@ -235,7 +235,7 @@ GetPeCoffImageFixLoadingAssignedAddress(
|
|||
}
|
||||
SectionHeaderOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address 0x%11p. Status= %r \n", (VOID *)(UINTN)FixLoadingAddress, Status));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address 0x%11p. Status= %r \n", (VOID *)(UINTN)FixLoadingAddress, Status));
|
||||
return Status;
|
||||
}
|
||||
/**
|
||||
|
@ -333,7 +333,7 @@ LoadAndRelocatePeCoffImage (
|
|||
(!IsS3Boot && (PcdGetBool (PcdShadowPeimOnBoot) || IsRegisterForShadow)) ||
|
||||
(IsS3Boot && PcdGetBool (PcdShadowPeimOnS3Boot)))
|
||||
) {
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "The image at 0x%08x without reloc section can't be loaded into memory\n", (UINTN) Pe32Data));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "The image at 0x%08x without reloc section can't be loaded into memory\n", (UINTN) Pe32Data));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -367,7 +367,7 @@ LoadAndRelocatePeCoffImage (
|
|||
if (PcdGet64(PcdLoadModuleAtFixAddressEnable) != 0 && (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME)) {
|
||||
Status = GetPeCoffImageFixLoadingAssignedAddress(&ImageContext, Private);
|
||||
if (EFI_ERROR (Status)){
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED ERROR: Failed to load module at fixed address. \n"));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED ERROR: Failed to load module at fixed address. \n"));
|
||||
//
|
||||
// The PEIM is not assigned valid address, try to allocate page to load it.
|
||||
//
|
||||
|
@ -697,12 +697,12 @@ PeiLoadImageLoadImage (
|
|||
// Print debug message: Loading PEIM at 0x12345678 EntryPoint=0x12345688 Driver.efi
|
||||
//
|
||||
if (Machine != EFI_IMAGE_MACHINE_IA64) {
|
||||
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)*EntryPoint));
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)*EntryPoint));
|
||||
} else {
|
||||
//
|
||||
// For IPF Image, the real entry point should be print.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)(*(UINT64 *)(UINTN)*EntryPoint)));
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)(*(UINT64 *)(UINTN)*EntryPoint)));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -741,12 +741,12 @@ PeiLoadImageLoadImage (
|
|||
EfiFileName[Index] = 0;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "%a", EfiFileName));
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "%a", EfiFileName));
|
||||
}
|
||||
|
||||
DEBUG_CODE_END ();
|
||||
|
||||
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "\n"));
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "\n"));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
||||
|
@ -961,7 +961,3 @@ InitializeImageServices (
|
|||
PeiServicesReInstallPpi (PrivateData->XipLoadFile, &gPpiLoadFilePpiList);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ PeiInstallPeiMemory (
|
|||
{
|
||||
PEI_CORE_INSTANCE *PrivateData;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "PeiInstallPeiMemory MemoryBegin 0x%LX, MemoryLength 0x%LX\n", MemoryBegin, MemoryLength));
|
||||
DEBUG ((DEBUG_INFO, "PeiInstallPeiMemory MemoryBegin 0x%LX, MemoryLength 0x%LX\n", MemoryBegin, MemoryLength));
|
||||
PrivateData = PEI_CORE_INSTANCE_FROM_PS_THIS (PeiServices);
|
||||
|
||||
//
|
||||
|
@ -89,7 +89,7 @@ PeiInstallPeiMemory (
|
|||
// simply return EFI_SUCCESS in release tip to ignore it.
|
||||
//
|
||||
if (PrivateData->PeiMemoryInstalled) {
|
||||
DEBUG ((EFI_D_ERROR, "ERROR: PeiInstallPeiMemory is called more than once!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "ERROR: PeiInstallPeiMemory is called more than once!\n"));
|
||||
ASSERT (FALSE);
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -676,8 +676,8 @@ PeiAllocatePages (
|
|||
if (!EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
DEBUG ((EFI_D_ERROR, "AllocatePages failed: No 0x%lx Pages is available.\n", (UINT64) Pages));
|
||||
DEBUG ((EFI_D_ERROR, "There is only left 0x%lx pages memory resource to be allocated.\n", (UINT64) RemainingPages));
|
||||
DEBUG ((DEBUG_ERROR, "AllocatePages failed: No 0x%lx Pages is available.\n", (UINT64) Pages));
|
||||
DEBUG ((DEBUG_ERROR, "There is only left 0x%lx pages memory resource to be allocated.\n", (UINT64) RemainingPages));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
} else {
|
||||
//
|
||||
|
|
|
@ -508,7 +508,7 @@ PeiCore (
|
|||
//
|
||||
// Enter DxeIpl to load Dxe core.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "DXE IPL Entry\n"));
|
||||
DEBUG ((DEBUG_INFO, "DXE IPL Entry\n"));
|
||||
Status = TempPtr.DxeIpl->Entry (
|
||||
TempPtr.DxeIpl,
|
||||
&PrivateData.Ps,
|
||||
|
|
|
@ -474,7 +474,7 @@ InternalPeiInstallPpi (
|
|||
//
|
||||
if ((PpiList->Flags & EFI_PEI_PPI_DESCRIPTOR_PPI) == 0) {
|
||||
PpiListPointer->CurrentCount = LastCount;
|
||||
DEBUG((EFI_D_ERROR, "ERROR -> InstallPpi: %g %p\n", PpiList->Guid, PpiList->Ppi));
|
||||
DEBUG((DEBUG_ERROR, "ERROR -> InstallPpi: %g %p\n", PpiList->Guid, PpiList->Ppi));
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
|
@ -495,7 +495,7 @@ InternalPeiInstallPpi (
|
|||
PpiListPointer->MaxCount = PpiListPointer->MaxCount + PPI_GROWTH_STEP;
|
||||
}
|
||||
|
||||
DEBUG((EFI_D_INFO, "Install PPI: %g\n", PpiList->Guid));
|
||||
DEBUG((DEBUG_INFO, "Install PPI: %g\n", PpiList->Guid));
|
||||
PpiListPointer->PpiPtrs[Index].Ppi = (EFI_PEI_PPI_DESCRIPTOR *) PpiList;
|
||||
Index++;
|
||||
PpiListPointer->CurrentCount++;
|
||||
|
@ -613,7 +613,7 @@ PeiReInstallPpi (
|
|||
//
|
||||
// Replace the old PPI with the new one.
|
||||
//
|
||||
DEBUG((EFI_D_INFO, "Reinstall PPI: %g\n", NewPpi->Guid));
|
||||
DEBUG((DEBUG_INFO, "Reinstall PPI: %g\n", NewPpi->Guid));
|
||||
PrivateData->PpiData.PpiList.PpiPtrs[Index].Ppi = (EFI_PEI_PPI_DESCRIPTOR *) NewPpi;
|
||||
|
||||
//
|
||||
|
@ -807,7 +807,7 @@ InternalPeiNotifyPpi (
|
|||
DispatchNotifyListPointer->CurrentCount++;
|
||||
}
|
||||
|
||||
DEBUG((EFI_D_INFO, "Register PPI Notify: %g\n", NotifyList->Guid));
|
||||
DEBUG((DEBUG_INFO, "Register PPI Notify: %g\n", NotifyList->Guid));
|
||||
|
||||
if (Single) {
|
||||
//
|
||||
|
@ -978,7 +978,7 @@ ProcessNotify (
|
|||
(((INT32 *)SearchGuid)[1] == ((INT32 *)CheckGuid)[1]) &&
|
||||
(((INT32 *)SearchGuid)[2] == ((INT32 *)CheckGuid)[2]) &&
|
||||
(((INT32 *)SearchGuid)[3] == ((INT32 *)CheckGuid)[3])) {
|
||||
DEBUG ((EFI_D_INFO, "Notify: PPI Guid: %g, Peim notify entry point: %p\n",
|
||||
DEBUG ((DEBUG_INFO, "Notify: PPI Guid: %g, Peim notify entry point: %p\n",
|
||||
SearchGuid,
|
||||
NotifyDescriptor->Notify
|
||||
));
|
||||
|
@ -1115,4 +1115,3 @@ ConvertPeiCorePpiPointers (
|
|||
ConvertPpiPointersFv (PrivateData, (UINTN) OrgImageBase, (UINTN) MigratedImageBase, PeiCoreModuleSize);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -283,7 +283,7 @@ GetPeCoffImageFixLoadingAssignedAddress(
|
|||
}
|
||||
SectionHeaderOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address %x, Status = %r\n", FixLoadingAddress, Status));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address %x, Status = %r\n", FixLoadingAddress, Status));
|
||||
return Status;
|
||||
}
|
||||
/**
|
||||
|
@ -464,7 +464,7 @@ SmmLoadImage (
|
|||
PageCount = 0;
|
||||
DstBuffer = (UINTN)gLoadModuleAtFixAddressSmramBase;
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED ERROR: Failed to load module at fixed address. \n"));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED ERROR: Failed to load module at fixed address. \n"));
|
||||
//
|
||||
// allocate the memory to load the SMM driver
|
||||
//
|
||||
|
|
|
@ -439,7 +439,7 @@ SmmEndOfDxeHandler (
|
|||
EFI_SMM_SX_REGISTER_CONTEXT EntryRegisterContext;
|
||||
EFI_HANDLE S3EntryHandle;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SmmEndOfDxeHandler\n"));
|
||||
DEBUG ((DEBUG_INFO, "SmmEndOfDxeHandler\n"));
|
||||
|
||||
//
|
||||
// Install SMM EndOfDxe protocol
|
||||
|
|
|
@ -991,7 +991,7 @@ GetPeCoffImageFixLoadingAssignedAddress(
|
|||
}
|
||||
SectionHeaderOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address %x, Status = %r \n", FixLoadingAddress, Status));
|
||||
DEBUG ((DEBUG_INFO|DEBUG_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address %x, Status = %r \n", FixLoadingAddress, Status));
|
||||
return Status;
|
||||
}
|
||||
/**
|
||||
|
@ -1068,7 +1068,7 @@ ExecuteSmmCoreFromSmram (
|
|||
//
|
||||
gSmmCorePrivate->SmramRangeCount --;
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR: Loading module at fixed address at address failed\n"));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR: Loading module at fixed address at address failed\n"));
|
||||
//
|
||||
// Allocate memory for the image being loaded from the EFI_SRAM_DESCRIPTOR
|
||||
// specified by SmramRange
|
||||
|
@ -1749,7 +1749,7 @@ SmmIplEntry (
|
|||
//
|
||||
// Print the SMRAM base
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: TSEG BASE is %x. \n", mLMFAConfigurationTable->SmramBase));
|
||||
DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: TSEG BASE is %x. \n", mLMFAConfigurationTable->SmramBase));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -676,7 +676,7 @@ SmramProfileInit (
|
|||
|
||||
RegisterSmmCore (&mSmramProfileContext);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SmramProfileInit SmramProfileContext - 0x%x\n", &mSmramProfileContext));
|
||||
DEBUG ((DEBUG_INFO, "SmramProfileInit SmramProfileContext - 0x%x\n", &mSmramProfileContext));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1530,7 +1530,7 @@ SmramProfileReadyToLock (
|
|||
return;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "SmramProfileReadyToLock\n"));
|
||||
DEBUG ((DEBUG_INFO, "SmramProfileReadyToLock\n"));
|
||||
mSmramReadyToLock = TRUE;
|
||||
}
|
||||
|
||||
|
@ -2168,7 +2168,7 @@ SmramProfileHandlerGetData (
|
|||
// Sanity check
|
||||
//
|
||||
if (!SmmIsBufferOutsideSmmValid ((UINTN) SmramProfileGetData.ProfileBuffer, (UINTN) ProfileSize)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetData: SMM ProfileBuffer in SMRAM or overflow!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetData: SMM ProfileBuffer in SMRAM or overflow!\n"));
|
||||
SmramProfileParameterGetData->ProfileSize = ProfileSize;
|
||||
SmramProfileParameterGetData->Header.ReturnStatus = (UINT64) (INT64) (INTN) EFI_ACCESS_DENIED;
|
||||
goto Done;
|
||||
|
@ -2219,7 +2219,7 @@ SmramProfileHandlerGetDataByOffset (
|
|||
// Sanity check
|
||||
//
|
||||
if (!SmmIsBufferOutsideSmmValid ((UINTN) SmramProfileGetDataByOffset.ProfileBuffer, (UINTN) SmramProfileGetDataByOffset.ProfileSize)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetDataByOffset: SMM ProfileBuffer in SMRAM or overflow!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetDataByOffset: SMM ProfileBuffer in SMRAM or overflow!\n"));
|
||||
SmramProfileParameterGetDataByOffset->Header.ReturnStatus = (UINT64) (INT64) (INTN) EFI_ACCESS_DENIED;
|
||||
goto Done;
|
||||
}
|
||||
|
@ -2261,7 +2261,7 @@ SmramProfileHandler (
|
|||
UINTN TempCommBufferSize;
|
||||
SMRAM_PROFILE_PARAMETER_RECORDING_STATE *ParameterRecordingState;
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler Enter\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler Enter\n"));
|
||||
|
||||
//
|
||||
// If input is invalid, stop processing this SMI
|
||||
|
@ -2273,12 +2273,12 @@ SmramProfileHandler (
|
|||
TempCommBufferSize = *CommBufferSize;
|
||||
|
||||
if (TempCommBufferSize < sizeof (SMRAM_PROFILE_PARAMETER_HEADER)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
if (mSmramReadyToLock && !SmmIsBufferOutsideSmmValid ((UINTN)CommBuffer, TempCommBufferSize)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer in SMRAM or overflow!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer in SMRAM or overflow!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -2293,33 +2293,33 @@ SmramProfileHandler (
|
|||
|
||||
switch (SmramProfileParameterHeader->Command) {
|
||||
case SMRAM_PROFILE_COMMAND_GET_PROFILE_INFO:
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetInfo\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetInfo\n"));
|
||||
if (TempCommBufferSize != sizeof (SMRAM_PROFILE_PARAMETER_GET_PROFILE_INFO)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
SmramProfileHandlerGetInfo ((SMRAM_PROFILE_PARAMETER_GET_PROFILE_INFO *) (UINTN) CommBuffer);
|
||||
break;
|
||||
case SMRAM_PROFILE_COMMAND_GET_PROFILE_DATA:
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetData\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetData\n"));
|
||||
if (TempCommBufferSize != sizeof (SMRAM_PROFILE_PARAMETER_GET_PROFILE_DATA)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
SmramProfileHandlerGetData ((SMRAM_PROFILE_PARAMETER_GET_PROFILE_DATA *) (UINTN) CommBuffer);
|
||||
break;
|
||||
case SMRAM_PROFILE_COMMAND_GET_PROFILE_DATA_BY_OFFSET:
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetDataByOffset\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetDataByOffset\n"));
|
||||
if (TempCommBufferSize != sizeof (SMRAM_PROFILE_PARAMETER_GET_PROFILE_DATA_BY_OFFSET)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
SmramProfileHandlerGetDataByOffset ((SMRAM_PROFILE_PARAMETER_GET_PROFILE_DATA_BY_OFFSET *) (UINTN) CommBuffer);
|
||||
break;
|
||||
case SMRAM_PROFILE_COMMAND_GET_RECORDING_STATE:
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerGetRecordingState\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerGetRecordingState\n"));
|
||||
if (TempCommBufferSize != sizeof (SMRAM_PROFILE_PARAMETER_RECORDING_STATE)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
ParameterRecordingState = (SMRAM_PROFILE_PARAMETER_RECORDING_STATE *) (UINTN) CommBuffer;
|
||||
|
@ -2327,9 +2327,9 @@ SmramProfileHandler (
|
|||
ParameterRecordingState->Header.ReturnStatus = 0;
|
||||
break;
|
||||
case SMRAM_PROFILE_COMMAND_SET_RECORDING_STATE:
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandlerSetRecordingState\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandlerSetRecordingState\n"));
|
||||
if (TempCommBufferSize != sizeof (SMRAM_PROFILE_PARAMETER_RECORDING_STATE)) {
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler: SMM communication buffer size invalid!\n"));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
ParameterRecordingState = (SMRAM_PROFILE_PARAMETER_RECORDING_STATE *) (UINTN) CommBuffer;
|
||||
|
@ -2350,7 +2350,7 @@ SmramProfileHandler (
|
|||
break;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "SmramProfileHandler Exit\n"));
|
||||
DEBUG ((DEBUG_ERROR, "SmramProfileHandler Exit\n"));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -2402,20 +2402,20 @@ DumpSmramRange (
|
|||
SmramProfileGettingStatus = mSmramProfileGettingStatus;
|
||||
mSmramProfileGettingStatus = TRUE;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "FullSmramRange address - 0x%08x\n", mFullSmramRanges));
|
||||
DEBUG ((DEBUG_INFO, "FullSmramRange address - 0x%08x\n", mFullSmramRanges));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile begin =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile begin =======\n"));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "FullSmramRange:\n"));
|
||||
DEBUG ((DEBUG_INFO, "FullSmramRange:\n"));
|
||||
for (Index = 0; Index < mFullSmramRangeCount; Index++) {
|
||||
DEBUG ((EFI_D_INFO, " FullSmramRange (0x%x)\n", Index));
|
||||
DEBUG ((EFI_D_INFO, " PhysicalStart - 0x%016lx\n", mFullSmramRanges[Index].PhysicalStart));
|
||||
DEBUG ((EFI_D_INFO, " CpuStart - 0x%016lx\n", mFullSmramRanges[Index].CpuStart));
|
||||
DEBUG ((EFI_D_INFO, " PhysicalSize - 0x%016lx\n", mFullSmramRanges[Index].PhysicalSize));
|
||||
DEBUG ((EFI_D_INFO, " RegionState - 0x%016lx\n", mFullSmramRanges[Index].RegionState));
|
||||
DEBUG ((DEBUG_INFO, " FullSmramRange (0x%x)\n", Index));
|
||||
DEBUG ((DEBUG_INFO, " PhysicalStart - 0x%016lx\n", mFullSmramRanges[Index].PhysicalStart));
|
||||
DEBUG ((DEBUG_INFO, " CpuStart - 0x%016lx\n", mFullSmramRanges[Index].CpuStart));
|
||||
DEBUG ((DEBUG_INFO, " PhysicalSize - 0x%016lx\n", mFullSmramRanges[Index].PhysicalSize));
|
||||
DEBUG ((DEBUG_INFO, " RegionState - 0x%016lx\n", mFullSmramRanges[Index].RegionState));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile end =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile end =======\n"));
|
||||
|
||||
mSmramProfileGettingStatus = SmramProfileGettingStatus;
|
||||
}
|
||||
|
@ -2444,20 +2444,20 @@ DumpFreePagesList (
|
|||
SmramProfileGettingStatus = mSmramProfileGettingStatus;
|
||||
mSmramProfileGettingStatus = TRUE;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile begin =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile begin =======\n"));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "FreePagesList:\n"));
|
||||
DEBUG ((DEBUG_INFO, "FreePagesList:\n"));
|
||||
FreePageList = &mSmmMemoryMap;
|
||||
for (Node = FreePageList->BackLink, Index = 0;
|
||||
Node != FreePageList;
|
||||
Node = Node->BackLink, Index++) {
|
||||
Pages = BASE_CR (Node, FREE_PAGE_LIST, Link);
|
||||
DEBUG ((EFI_D_INFO, " Index - 0x%x\n", Index));
|
||||
DEBUG ((EFI_D_INFO, " PhysicalStart - 0x%016lx\n", (PHYSICAL_ADDRESS) (UINTN) Pages));
|
||||
DEBUG ((EFI_D_INFO, " NumberOfPages - 0x%08x\n", Pages->NumberOfPages));
|
||||
DEBUG ((DEBUG_INFO, " Index - 0x%x\n", Index));
|
||||
DEBUG ((DEBUG_INFO, " PhysicalStart - 0x%016lx\n", (PHYSICAL_ADDRESS) (UINTN) Pages));
|
||||
DEBUG ((DEBUG_INFO, " NumberOfPages - 0x%08x\n", Pages->NumberOfPages));
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile end =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile end =======\n"));
|
||||
|
||||
mSmramProfileGettingStatus = SmramProfileGettingStatus;
|
||||
}
|
||||
|
@ -2646,21 +2646,21 @@ DumpSmramProfile (
|
|||
mSmramProfileGettingStatus = TRUE;
|
||||
|
||||
Context = &ContextData->Context;
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile begin =======\n"));
|
||||
DEBUG ((EFI_D_INFO, "MEMORY_PROFILE_CONTEXT\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile begin =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "MEMORY_PROFILE_CONTEXT\n"));
|
||||
|
||||
DEBUG ((EFI_D_INFO, " CurrentTotalUsage - 0x%016lx\n", Context->CurrentTotalUsage));
|
||||
DEBUG ((EFI_D_INFO, " PeakTotalUsage - 0x%016lx\n", Context->PeakTotalUsage));
|
||||
DEBUG ((DEBUG_INFO, " CurrentTotalUsage - 0x%016lx\n", Context->CurrentTotalUsage));
|
||||
DEBUG ((DEBUG_INFO, " PeakTotalUsage - 0x%016lx\n", Context->PeakTotalUsage));
|
||||
for (TypeIndex = 0; TypeIndex < sizeof (Context->CurrentTotalUsageByType) / sizeof (Context->CurrentTotalUsageByType[0]); TypeIndex++) {
|
||||
if ((Context->CurrentTotalUsageByType[TypeIndex] != 0) ||
|
||||
(Context->PeakTotalUsageByType[TypeIndex] != 0)) {
|
||||
DEBUG ((EFI_D_INFO, " CurrentTotalUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, Context->CurrentTotalUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((EFI_D_INFO, " PeakTotalUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, Context->PeakTotalUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((DEBUG_INFO, " CurrentTotalUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, Context->CurrentTotalUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((DEBUG_INFO, " PeakTotalUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, Context->PeakTotalUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
}
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, " TotalImageSize - 0x%016lx\n", Context->TotalImageSize));
|
||||
DEBUG ((EFI_D_INFO, " ImageCount - 0x%08x\n", Context->ImageCount));
|
||||
DEBUG ((EFI_D_INFO, " SequenceCount - 0x%08x\n", Context->SequenceCount));
|
||||
DEBUG ((DEBUG_INFO, " TotalImageSize - 0x%016lx\n", Context->TotalImageSize));
|
||||
DEBUG ((DEBUG_INFO, " ImageCount - 0x%08x\n", Context->ImageCount));
|
||||
DEBUG ((DEBUG_INFO, " SequenceCount - 0x%08x\n", Context->SequenceCount));
|
||||
|
||||
SmramDriverInfoList = ContextData->DriverInfoList;
|
||||
for (DriverLink = SmramDriverInfoList->ForwardLink, DriverIndex = 0;
|
||||
|
@ -2673,23 +2673,23 @@ DumpSmramProfile (
|
|||
MEMORY_PROFILE_DRIVER_INFO_SIGNATURE
|
||||
);
|
||||
DriverInfo = &DriverInfoData->DriverInfo;
|
||||
DEBUG ((EFI_D_INFO, " MEMORY_PROFILE_DRIVER_INFO (0x%x)\n", DriverIndex));
|
||||
DEBUG ((EFI_D_INFO, " FileName - %g\n", &DriverInfo->FileName));
|
||||
DEBUG ((EFI_D_INFO, " ImageBase - 0x%016lx\n", DriverInfo->ImageBase));
|
||||
DEBUG ((EFI_D_INFO, " ImageSize - 0x%016lx\n", DriverInfo->ImageSize));
|
||||
DEBUG ((EFI_D_INFO, " EntryPoint - 0x%016lx\n", DriverInfo->EntryPoint));
|
||||
DEBUG ((EFI_D_INFO, " ImageSubsystem - 0x%04x\n", DriverInfo->ImageSubsystem));
|
||||
DEBUG ((EFI_D_INFO, " FileType - 0x%02x\n", DriverInfo->FileType));
|
||||
DEBUG ((EFI_D_INFO, " CurrentUsage - 0x%016lx\n", DriverInfo->CurrentUsage));
|
||||
DEBUG ((EFI_D_INFO, " PeakUsage - 0x%016lx\n", DriverInfo->PeakUsage));
|
||||
DEBUG ((DEBUG_INFO, " MEMORY_PROFILE_DRIVER_INFO (0x%x)\n", DriverIndex));
|
||||
DEBUG ((DEBUG_INFO, " FileName - %g\n", &DriverInfo->FileName));
|
||||
DEBUG ((DEBUG_INFO, " ImageBase - 0x%016lx\n", DriverInfo->ImageBase));
|
||||
DEBUG ((DEBUG_INFO, " ImageSize - 0x%016lx\n", DriverInfo->ImageSize));
|
||||
DEBUG ((DEBUG_INFO, " EntryPoint - 0x%016lx\n", DriverInfo->EntryPoint));
|
||||
DEBUG ((DEBUG_INFO, " ImageSubsystem - 0x%04x\n", DriverInfo->ImageSubsystem));
|
||||
DEBUG ((DEBUG_INFO, " FileType - 0x%02x\n", DriverInfo->FileType));
|
||||
DEBUG ((DEBUG_INFO, " CurrentUsage - 0x%016lx\n", DriverInfo->CurrentUsage));
|
||||
DEBUG ((DEBUG_INFO, " PeakUsage - 0x%016lx\n", DriverInfo->PeakUsage));
|
||||
for (TypeIndex = 0; TypeIndex < sizeof (DriverInfo->CurrentUsageByType) / sizeof (DriverInfo->CurrentUsageByType[0]); TypeIndex++) {
|
||||
if ((DriverInfo->CurrentUsageByType[TypeIndex] != 0) ||
|
||||
(DriverInfo->PeakUsageByType[TypeIndex] != 0)) {
|
||||
DEBUG ((EFI_D_INFO, " CurrentUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, DriverInfo->CurrentUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((EFI_D_INFO, " PeakUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, DriverInfo->PeakUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((DEBUG_INFO, " CurrentUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, DriverInfo->CurrentUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
DEBUG ((DEBUG_INFO, " PeakUsage[0x%02x] - 0x%016lx (%a)\n", TypeIndex, DriverInfo->PeakUsageByType[TypeIndex], ProfileMemoryTypeToStr (TypeIndex)));
|
||||
}
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, " AllocRecordCount - 0x%08x\n", DriverInfo->AllocRecordCount));
|
||||
DEBUG ((DEBUG_INFO, " AllocRecordCount - 0x%08x\n", DriverInfo->AllocRecordCount));
|
||||
|
||||
AllocInfoList = DriverInfoData->AllocInfoList;
|
||||
for (AllocLink = AllocInfoList->ForwardLink, AllocIndex = 0;
|
||||
|
@ -2702,25 +2702,25 @@ DumpSmramProfile (
|
|||
MEMORY_PROFILE_ALLOC_INFO_SIGNATURE
|
||||
);
|
||||
AllocInfo = &AllocInfoData->AllocInfo;
|
||||
DEBUG ((EFI_D_INFO, " MEMORY_PROFILE_ALLOC_INFO (0x%x)\n", AllocIndex));
|
||||
DEBUG ((EFI_D_INFO, " CallerAddress - 0x%016lx (Offset: 0x%08x)\n", AllocInfo->CallerAddress, AllocInfo->CallerAddress - DriverInfo->ImageBase));
|
||||
DEBUG ((EFI_D_INFO, " SequenceId - 0x%08x\n", AllocInfo->SequenceId));
|
||||
DEBUG ((DEBUG_INFO, " MEMORY_PROFILE_ALLOC_INFO (0x%x)\n", AllocIndex));
|
||||
DEBUG ((DEBUG_INFO, " CallerAddress - 0x%016lx (Offset: 0x%08x)\n", AllocInfo->CallerAddress, AllocInfo->CallerAddress - DriverInfo->ImageBase));
|
||||
DEBUG ((DEBUG_INFO, " SequenceId - 0x%08x\n", AllocInfo->SequenceId));
|
||||
if ((AllocInfo->Action & MEMORY_PROFILE_ACTION_USER_DEFINED_MASK) != 0) {
|
||||
if (AllocInfoData->ActionString != NULL) {
|
||||
DEBUG ((EFI_D_INFO, " Action - 0x%08x (%a)\n", AllocInfo->Action, AllocInfoData->ActionString));
|
||||
DEBUG ((DEBUG_INFO, " Action - 0x%08x (%a)\n", AllocInfo->Action, AllocInfoData->ActionString));
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, " Action - 0x%08x (UserDefined-0x%08x)\n", AllocInfo->Action, AllocInfo->Action));
|
||||
DEBUG ((DEBUG_INFO, " Action - 0x%08x (UserDefined-0x%08x)\n", AllocInfo->Action, AllocInfo->Action));
|
||||
}
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, " Action - 0x%08x (%a)\n", AllocInfo->Action, ProfileActionToStr (AllocInfo->Action)));
|
||||
DEBUG ((DEBUG_INFO, " Action - 0x%08x (%a)\n", AllocInfo->Action, ProfileActionToStr (AllocInfo->Action)));
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, " MemoryType - 0x%08x (%a)\n", AllocInfo->MemoryType, ProfileMemoryTypeToStr (AllocInfo->MemoryType)));
|
||||
DEBUG ((EFI_D_INFO, " Buffer - 0x%016lx\n", AllocInfo->Buffer));
|
||||
DEBUG ((EFI_D_INFO, " Size - 0x%016lx\n", AllocInfo->Size));
|
||||
DEBUG ((DEBUG_INFO, " MemoryType - 0x%08x (%a)\n", AllocInfo->MemoryType, ProfileMemoryTypeToStr (AllocInfo->MemoryType)));
|
||||
DEBUG ((DEBUG_INFO, " Buffer - 0x%016lx\n", AllocInfo->Buffer));
|
||||
DEBUG ((DEBUG_INFO, " Size - 0x%016lx\n", AllocInfo->Size));
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "======= SmramProfile end =======\n"));
|
||||
DEBUG ((DEBUG_INFO, "======= SmramProfile end =======\n"));
|
||||
|
||||
mSmramProfileGettingStatus = SmramProfileGettingStatus;
|
||||
}
|
||||
|
@ -2743,4 +2743,3 @@ DumpSmramInfo (
|
|||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -611,7 +611,7 @@ BOpt_GetOptionNumber (
|
|||
continue;
|
||||
}
|
||||
UnicodeSPrint (StrTemp, sizeof (StrTemp), L"%s%04x", Type, (UINTN) OptionNumber);
|
||||
DEBUG((EFI_D_ERROR,"Option = %s\n", StrTemp));
|
||||
DEBUG((DEBUG_ERROR,"Option = %s\n", StrTemp));
|
||||
GetEfiGlobalVariable2 (StrTemp, (VOID **) &OptionBuffer, &OptionSize);
|
||||
if (NULL == OptionBuffer) {
|
||||
//
|
||||
|
@ -1002,4 +1002,3 @@ CreateDriverOptionFromFile (
|
|||
{
|
||||
return ReSendForm(FilePath, FORM_DRV_ADD_FILE_ID);
|
||||
}
|
||||
|
||||
|
|
|
@ -380,7 +380,7 @@ GroupMultipleLegacyBootOption4SameType (
|
|||
//
|
||||
// Legacy Boot Option
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "[BootManagerDxe] ==== Find Legacy Boot Option 0x%x! ==== \n", Index));
|
||||
DEBUG ((DEBUG_ERROR, "[BootManagerDxe] ==== Find Legacy Boot Option 0x%x! ==== \n", Index));
|
||||
ASSERT ((((BBS_BBS_DEVICE_PATH *) BootOption.FilePath)->DeviceType & 0xF) < ARRAY_SIZE (DeviceTypeIndex));
|
||||
NextIndex = &DeviceTypeIndex[((BBS_BBS_DEVICE_PATH *) BootOption.FilePath)->DeviceType & 0xF];
|
||||
|
||||
|
@ -926,4 +926,3 @@ BootManagerUiLibDestructor (
|
|||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ IpmiSubmitCommand (
|
|||
//
|
||||
// Dxe Ipmi Protocol is not installed. So, IPMI device is not present.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "IpmiSubmitCommand in Dxe Phase under SMS Status - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "IpmiSubmitCommand in Dxe Phase under SMS Status - %r\n", Status));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -209,17 +209,17 @@ FrameBufferBltLibVideoFill (
|
|||
// BltBuffer to Video: Source is BltBuffer, destination is Video
|
||||
//
|
||||
if (DestinationY + Height > Configure->Height) {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill: Past screen (Y)\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill: Past screen (Y)\n"));
|
||||
return RETURN_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (DestinationX + Width > Configure->Width) {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill: Past screen (X)\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill: Past screen (X)\n"));
|
||||
return RETURN_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (Width == 0 || Height == 0) {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill: Width or Height is 0\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill: Width or Height is 0\n"));
|
||||
return RETURN_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
|
@ -235,7 +235,7 @@ FrameBufferBltLibVideoFill (
|
|||
(((Uint32 << Configure->PixelShl[2]) >> Configure->PixelShr[2]) &
|
||||
Configure->PixelMasks.BlueMask)
|
||||
);
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill: color=0x%x, wide-fill=0x%x\n",
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill: color=0x%x, wide-fill=0x%x\n",
|
||||
Uint32, WideFill));
|
||||
|
||||
//
|
||||
|
@ -267,7 +267,7 @@ FrameBufferBltLibVideoFill (
|
|||
}
|
||||
|
||||
if (UseWideFill && (DestinationX == 0) && (Width == Configure->PixelsPerScanLine)) {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill (wide, one-shot)\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill (wide, one-shot)\n"));
|
||||
Offset = DestinationY * Configure->PixelsPerScanLine;
|
||||
Offset = Configure->BytesPerPixel * Offset;
|
||||
Destination = Configure->FrameBuffer + Offset;
|
||||
|
@ -288,7 +288,7 @@ FrameBufferBltLibVideoFill (
|
|||
Destination = Configure->FrameBuffer + Offset;
|
||||
|
||||
if (UseWideFill && (((UINTN) Destination & 7) == 0)) {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill (wide)\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill (wide)\n"));
|
||||
SizeInBytes = WidthInBytes;
|
||||
if (SizeInBytes >= 8) {
|
||||
SetMem64 (Destination, SizeInBytes & ~7, WideFill);
|
||||
|
@ -299,7 +299,7 @@ FrameBufferBltLibVideoFill (
|
|||
CopyMem (Destination, &WideFill, SizeInBytes);
|
||||
}
|
||||
} else {
|
||||
DEBUG ((EFI_D_VERBOSE, "VideoFill (not wide)\n"));
|
||||
DEBUG ((DEBUG_VERBOSE, "VideoFill (not wide)\n"));
|
||||
if (!LineBufferReady) {
|
||||
CopyMem (Configure->LineBuffer, &WideFill, Configure->BytesPerPixel);
|
||||
for (IndexX = 1; IndexX < Width; ) {
|
||||
|
|
|
@ -73,24 +73,24 @@ PciHostBridgeResourceConflict (
|
|||
{
|
||||
EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Descriptor;
|
||||
UINTN RootBridgeIndex;
|
||||
DEBUG ((EFI_D_ERROR, "PciHostBridge: Resource conflict happens!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "PciHostBridge: Resource conflict happens!\n"));
|
||||
|
||||
RootBridgeIndex = 0;
|
||||
Descriptor = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) Configuration;
|
||||
while (Descriptor->Desc == ACPI_ADDRESS_SPACE_DESCRIPTOR) {
|
||||
DEBUG ((EFI_D_ERROR, "RootBridge[%d]:\n", RootBridgeIndex++));
|
||||
DEBUG ((DEBUG_ERROR, "RootBridge[%d]:\n", RootBridgeIndex++));
|
||||
for (; Descriptor->Desc == ACPI_ADDRESS_SPACE_DESCRIPTOR; Descriptor++) {
|
||||
ASSERT (Descriptor->ResType <
|
||||
(sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr) /
|
||||
sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr[0])
|
||||
)
|
||||
);
|
||||
DEBUG ((EFI_D_ERROR, " %s: Length/Alignment = 0x%lx / 0x%lx\n",
|
||||
DEBUG ((DEBUG_ERROR, " %s: Length/Alignment = 0x%lx / 0x%lx\n",
|
||||
mPciHostBridgeLibAcpiAddressSpaceTypeStr[Descriptor->ResType],
|
||||
Descriptor->AddrLen, Descriptor->AddrRangeMax
|
||||
));
|
||||
if (Descriptor->ResType == ACPI_ADDRESS_SPACE_TYPE_MEM) {
|
||||
DEBUG ((EFI_D_ERROR, " Granularity/SpecificFlag = %ld / %02x%s\n",
|
||||
DEBUG ((DEBUG_ERROR, " Granularity/SpecificFlag = %ld / %02x%s\n",
|
||||
Descriptor->AddrSpaceGranularity, Descriptor->SpecificFlag,
|
||||
((Descriptor->SpecificFlag &
|
||||
EFI_ACPI_MEMORY_RESOURCE_SPECIFIC_FLAG_CACHEABLE_PREFETCHABLE
|
||||
|
|
|
@ -55,7 +55,7 @@ IpmiSubmitCommand (
|
|||
//
|
||||
// Ipmi Ppi is not installed. So, IPMI device is not present.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "IpmiSubmitCommand in Pei Phase under SMS Status - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "IpmiSubmitCommand in Pei Phase under SMS Status - %r\n", Status));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
|
@ -468,7 +468,7 @@ ReportStatusCodeEx (
|
|||
// The local variable Buffer not large enough to hold the extended data associated
|
||||
// with the status code being reported.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "Status code extended data is too large to be reported!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Status code extended data is too large to be reported!\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
StatusCodeData = (EFI_STATUS_CODE_DATA *) Buffer;
|
||||
|
|
|
@ -62,51 +62,51 @@ InternalSmbusExecute (
|
|||
|
||||
switch (Operation) {
|
||||
case EfiSmbusQuickRead:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusQuickRead - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusQuickRead - 0x%08x\n", SmbusAddress));
|
||||
SmBusQuickRead (SmbusAddress, &Status);
|
||||
break;
|
||||
case EfiSmbusQuickWrite:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusQuickWrite - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusQuickWrite - 0x%08x\n", SmbusAddress));
|
||||
SmBusQuickWrite (SmbusAddress, &Status);
|
||||
break;
|
||||
case EfiSmbusReceiveByte:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusReceiveByte - 0x%08x\n", SmbusAddress));
|
||||
SmBusReceiveByte (SmbusAddress, &Status);
|
||||
break;
|
||||
case EfiSmbusSendByte:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusSendByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusSendByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
|
||||
SmBusSendByte (SmbusAddress, *(UINT8 *) Buffer, &Status);
|
||||
break;
|
||||
case EfiSmbusReadByte:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusReadByte - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusReadByte - 0x%08x\n", SmbusAddress));
|
||||
SmBusReadDataByte (SmbusAddress, &Status);
|
||||
break;
|
||||
case EfiSmbusWriteByte:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusWriteByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusWriteByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer));
|
||||
SmBusWriteDataByte (SmbusAddress, *(UINT8 *) Buffer, &Status);
|
||||
break;
|
||||
case EfiSmbusReadWord:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusReadWord - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusReadWord - 0x%08x\n", SmbusAddress));
|
||||
SmBusReadDataWord (SmbusAddress, &Status);
|
||||
break;
|
||||
case EfiSmbusWriteWord:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusWriteWord - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusWriteWord - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
|
||||
SmBusWriteDataWord (SmbusAddress, *(UINT16 *) Buffer, &Status);
|
||||
break;
|
||||
case EfiSmbusProcessCall:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusProcessCall - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusProcessCall - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buffer));
|
||||
SmBusProcessCall (SmbusAddress, *(UINT16 *) Buffer, &Status);
|
||||
break;
|
||||
case EfiSmbusReadBlock:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusReadBlock - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusReadBlock - 0x%08x\n", SmbusAddress));
|
||||
SmBusReadBlock (SmbusAddress, WorkBuffer, &Status);
|
||||
break;
|
||||
case EfiSmbusWriteBlock:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusWriteBlock - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusWriteBlock - 0x%08x\n", SmbusAddress));
|
||||
SmBusWriteBlock ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, &Status);
|
||||
break;
|
||||
case EfiSmbusBWBRProcessCall:
|
||||
DEBUG ((EFI_D_INFO, "EfiSmbusBWBRProcessCall - 0x%08x\n", SmbusAddress));
|
||||
DEBUG ((DEBUG_INFO, "EfiSmbusBWBRProcessCall - 0x%08x\n", SmbusAddress));
|
||||
SmBusBlockProcessCall ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, WorkBuffer, &Status);
|
||||
break;
|
||||
default:
|
||||
|
@ -206,54 +206,54 @@ ScriptIoRead (
|
|||
switch (Width) {
|
||||
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint8 = IoRead8 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint8 = IoRead8 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint8 = IoRead8 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint16 = IoRead16 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint16 = IoRead16 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint16 = IoRead16 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint32 = IoRead32 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint32 = IoRead32 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint32 = IoRead32 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint64 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint64 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint64 = IoRead64 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint64 = IoRead64 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint64 - 0x%08x\n", (UINTN) Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint64 - 0x%08x\n", (UINTN) Address));
|
||||
*Out.Uint64 = IoRead64 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
|
@ -313,51 +313,51 @@ ScriptIoWrite (
|
|||
for (; Count > 0; Count--, Address += AddressStride, In.Buf += BufferStride) {
|
||||
switch (Width) {
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*In.Uint8));
|
||||
IoWrite8 ((UINTN) Address, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint8));
|
||||
IoWrite8 ((UINTN) OriginalAddress, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint8));
|
||||
IoWrite8 ((UINTN) Address, *OriginalIn.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*In.Uint16));
|
||||
IoWrite16 ((UINTN) Address, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x (0x%04x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x (0x%04x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint16));
|
||||
IoWrite16 ((UINTN) OriginalAddress, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint16));
|
||||
IoWrite16 ((UINTN) Address, *OriginalIn.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*In.Uint32));
|
||||
IoWrite32 ((UINTN) Address, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x (0x%08x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x (0x%08x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint32));
|
||||
IoWrite32 ((UINTN) OriginalAddress, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint32));
|
||||
IoWrite32 ((UINTN) Address, *OriginalIn.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *In.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *In.Uint64));
|
||||
IoWrite64 ((UINTN) Address, *In.Uint64);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x (0x%016lx)\n", (UINTN)OriginalAddress, *In.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x (0x%016lx)\n", (UINTN)OriginalAddress, *In.Uint64));
|
||||
IoWrite64 ((UINTN) OriginalAddress, *In.Uint64);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *OriginalIn.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *OriginalIn.Uint64));
|
||||
IoWrite64 ((UINTN) Address, *OriginalIn.Uint64);
|
||||
break;
|
||||
default:
|
||||
|
@ -397,7 +397,7 @@ BootScriptExecuteIoWrite (
|
|||
Count = IoWrite.Count;
|
||||
Buffer = Script + sizeof (EFI_BOOT_SCRIPT_IO_WRITE);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteIoWrite - 0x%08x, 0x%08x, 0x%08x\n", (UINTN)Address, Count, (UINTN)Width));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteIoWrite - 0x%08x, 0x%08x, 0x%08x\n", (UINTN)Address, Count, (UINTN)Width));
|
||||
return ScriptIoWrite(Width, Address, Count, Buffer);
|
||||
}
|
||||
/**
|
||||
|
@ -441,54 +441,54 @@ ScriptMemoryRead (
|
|||
for (; Count > 0; Count--, Address += AddressStride, Out.Buf += BufferStride) {
|
||||
switch (Width) {
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint8 = MmioRead8 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint8 = MmioRead8 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint8 = MmioRead8 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint16 = MmioRead16 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint16 = MmioRead16 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint16 = MmioRead16 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint32 = MmioRead32 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint32 = MmioRead32 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint32 = MmioRead32 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint64 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint64 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint64 = MmioRead64 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint64 = MmioRead64 ((UINTN) Address);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint64 - 0x%08x\n", (UINTN)Address));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint64 - 0x%08x\n", (UINTN)Address));
|
||||
*Out.Uint64 = MmioRead64 ((UINTN) Address);
|
||||
break;
|
||||
|
||||
|
@ -544,51 +544,51 @@ ScriptMemoryWrite (
|
|||
for (; Count > 0; Count--, Address += AddressStride, In.Buf += BufferStride) {
|
||||
switch (Width) {
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*In.Uint8));
|
||||
MmioWrite8 ((UINTN) Address, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint8));
|
||||
MmioWrite8 ((UINTN) OriginalAddress, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint8));
|
||||
MmioWrite8 ((UINTN) Address, *OriginalIn.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*In.Uint16));
|
||||
MmioWrite16 ((UINTN) Address, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x (0x%04x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x (0x%04x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint16));
|
||||
MmioWrite16 ((UINTN) OriginalAddress, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint16));
|
||||
MmioWrite16 ((UINTN) Address, *OriginalIn.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*In.Uint32));
|
||||
MmioWrite32 ((UINTN) Address, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x (0x%08x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x (0x%08x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint32));
|
||||
MmioWrite32 ((UINTN) OriginalAddress, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%08x (0x%08x)\n", (UINTN)Address, (UINTN)*OriginalIn.Uint32));
|
||||
MmioWrite32 ((UINTN) Address, *OriginalIn.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *In.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *In.Uint64));
|
||||
MmioWrite64 ((UINTN) Address, *In.Uint64);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x (0x%016lx)\n", (UINTN)OriginalAddress, *In.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint64 - 0x%08x (0x%016lx)\n", (UINTN)OriginalAddress, *In.Uint64));
|
||||
MmioWrite64 ((UINTN) OriginalAddress, *In.Uint64);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint64:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *OriginalIn.Uint64));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint64 - 0x%08x (0x%016lx)\n", (UINTN)Address, *OriginalIn.Uint64));
|
||||
MmioWrite64 ((UINTN) Address, *OriginalIn.Uint64);
|
||||
break;
|
||||
default:
|
||||
|
@ -627,7 +627,7 @@ BootScriptExecuteMemoryWrite (
|
|||
Count = MemWrite.Count;
|
||||
Buffer = Script + sizeof(EFI_BOOT_SCRIPT_MEM_WRITE);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteMemoryWrite - 0x%08x, 0x%08x, 0x%08x\n", (UINTN)Address, Count, (UINTN)Width));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteMemoryWrite - 0x%08x, 0x%08x, 0x%08x\n", (UINTN)Address, Count, (UINTN)Width));
|
||||
return ScriptMemoryWrite (Width,Address, Count, Buffer);
|
||||
|
||||
}
|
||||
|
@ -674,41 +674,41 @@ ScriptPciCfg2Read (
|
|||
for (; Count > 0; Count--, PciAddress += AddressStride, Out.Buf += BufferStride) {
|
||||
switch (Width) {
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint8 = PciSegmentRead8 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint8 = PciSegmentRead8 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint8 = PciSegmentRead8 (PciAddress);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint16 = PciSegmentRead16 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint16 = PciSegmentRead16 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint16 = PciSegmentRead16 (PciAddress);
|
||||
break;
|
||||
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint32 = PciSegmentRead32 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint32 = PciSegmentRead32 (PciAddress);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx\n", PciAddress));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx\n", PciAddress));
|
||||
*Out.Uint32 = PciSegmentRead32 (PciAddress);
|
||||
break;
|
||||
|
||||
|
@ -766,39 +766,39 @@ ScriptPciCfg2Write (
|
|||
for (; Count > 0; Count--, PciAddress += AddressStride, In.Buf += BufferStride) {
|
||||
switch (Width) {
|
||||
case S3BootScriptWidthUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*In.Uint8));
|
||||
PciSegmentWrite8 (PciAddress, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx (0x%02x)\n", OriginalPciAddress, (UINTN)*In.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx (0x%02x)\n", OriginalPciAddress, (UINTN)*In.Uint8));
|
||||
PciSegmentWrite8 (OriginalPciAddress, *In.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint8:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*OriginalIn.Uint8));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*OriginalIn.Uint8));
|
||||
PciSegmentWrite8 (PciAddress, *OriginalIn.Uint8);
|
||||
break;
|
||||
case S3BootScriptWidthUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*In.Uint16));
|
||||
PciSegmentWrite16 (PciAddress, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx (0x%04x)\n", OriginalPciAddress, (UINTN)*In.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx (0x%04x)\n", OriginalPciAddress, (UINTN)*In.Uint16));
|
||||
PciSegmentWrite16 (OriginalPciAddress, *In.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint16:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*OriginalIn.Uint16));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*OriginalIn.Uint16));
|
||||
PciSegmentWrite16 (PciAddress, *OriginalIn.Uint16);
|
||||
break;
|
||||
case S3BootScriptWidthUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%016lx (0x%08x)\n", PciAddress, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthUint32 - 0x%016lx (0x%08x)\n", PciAddress, (UINTN)*In.Uint32));
|
||||
PciSegmentWrite32 (PciAddress, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFifoUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx (0x%08x)\n", OriginalPciAddress, (UINTN)*In.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx (0x%08x)\n", OriginalPciAddress, (UINTN)*In.Uint32));
|
||||
PciSegmentWrite32 (OriginalPciAddress, *In.Uint32);
|
||||
break;
|
||||
case S3BootScriptWidthFillUint32:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx (0x%08x)\n", (UINTN)PciAddress, (UINTN)*OriginalIn.Uint32));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx (0x%08x)\n", (UINTN)PciAddress, (UINTN)*OriginalIn.Uint32));
|
||||
PciSegmentWrite32 (PciAddress, *OriginalIn.Uint32);
|
||||
break;
|
||||
default:
|
||||
|
@ -883,7 +883,7 @@ BootScriptExecutePciCfgWrite (
|
|||
Count = PciCfgWrite.Count;
|
||||
Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgWrite - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (0, Address), Count, (UINTN)Width));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecutePciCfgWrite - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (0, Address), Count, (UINTN)Width));
|
||||
return ScriptPciCfgWrite (Width, Address, Count, Buffer);
|
||||
}
|
||||
/**
|
||||
|
@ -911,7 +911,7 @@ BootScriptExecuteIoReadWrite (
|
|||
|
||||
CopyMem((VOID*)&IoReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_IO_READ_WRITE));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteIoReadWrite - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)IoReadWrite.Address, AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteIoReadWrite - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)IoReadWrite.Address, AndMask, OrMask));
|
||||
|
||||
Status = ScriptIoRead (
|
||||
(S3_BOOT_SCRIPT_LIB_WIDTH) IoReadWrite.Width,
|
||||
|
@ -955,7 +955,7 @@ BootScriptExecuteMemoryReadWrite (
|
|||
|
||||
CopyMem((VOID*)&MemReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_MEM_READ_WRITE));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteMemoryReadWrite - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)MemReadWrite.Address, AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteMemoryReadWrite - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)MemReadWrite.Address, AndMask, OrMask));
|
||||
|
||||
Status = ScriptMemoryRead (
|
||||
(S3_BOOT_SCRIPT_LIB_WIDTH) MemReadWrite.Width,
|
||||
|
@ -999,7 +999,7 @@ BootScriptExecutePciCfgReadWrite (
|
|||
|
||||
CopyMem((VOID*)&PciCfgReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgReadWrite.Address), AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecutePciCfgReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgReadWrite.Address), AndMask, OrMask));
|
||||
|
||||
Status = ScriptPciCfgRead (
|
||||
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfgReadWrite.Width,
|
||||
|
@ -1042,7 +1042,7 @@ BootScriptExecuteSmbusExecute (
|
|||
|
||||
CopyMem ((VOID*)&SmbusExecuteEntry, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_SMBUS_EXECUTE ));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteSmbusExecute - 0x%08x, 0x%08x\n", (UINTN)SmbusExecuteEntry.SmBusAddress, (UINTN)SmbusExecuteEntry.Operation));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteSmbusExecute - 0x%08x, 0x%08x\n", (UINTN)SmbusExecuteEntry.SmBusAddress, (UINTN)SmbusExecuteEntry.Operation));
|
||||
|
||||
SmBusAddress = (UINTN)SmbusExecuteEntry.SmBusAddress;
|
||||
DataSize = (UINTN) SmbusExecuteEntry.DataSize;
|
||||
|
@ -1069,7 +1069,7 @@ BootScriptExecuteStall (
|
|||
|
||||
CopyMem ((VOID*)&Stall, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_STALL));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteStall - 0x%08x\n", (UINTN)Stall.Duration));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteStall - 0x%08x\n", (UINTN)Stall.Duration));
|
||||
|
||||
MicroSecondDelay ((UINTN) Stall.Duration);
|
||||
return EFI_SUCCESS;
|
||||
|
@ -1092,7 +1092,7 @@ BootScriptExecuteDispatch (
|
|||
CopyMem ((VOID*)&ScriptDispatch, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_DISPATCH));
|
||||
EntryFunc = (DISPATCH_ENTRYPOINT_FUNC) (UINTN) (ScriptDispatch.EntryPoint);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteDispatch - 0x%08x\n", (UINTN)ScriptDispatch.EntryPoint));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteDispatch - 0x%08x\n", (UINTN)ScriptDispatch.EntryPoint));
|
||||
|
||||
Status = EntryFunc (NULL, NULL);
|
||||
|
||||
|
@ -1115,7 +1115,7 @@ BootScriptExecuteDispatch2 (
|
|||
|
||||
CopyMem ((VOID*)&ScriptDispatch2, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_DISPATCH_2));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteDispatch2 - 0x%08x(0x%08x)\n", (UINTN)ScriptDispatch2.EntryPoint, (UINTN)ScriptDispatch2.Context));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteDispatch2 - 0x%08x(0x%08x)\n", (UINTN)ScriptDispatch2.EntryPoint, (UINTN)ScriptDispatch2.Context));
|
||||
|
||||
EntryFunc = (DISPATCH_ENTRYPOINT_FUNC) (UINTN) (ScriptDispatch2.EntryPoint);
|
||||
|
||||
|
@ -1149,7 +1149,7 @@ BootScriptExecuteMemPoll (
|
|||
|
||||
CopyMem ((VOID*)&MemPoll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_MEM_POLL));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteMemPoll - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)MemPoll.Address, AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteMemPoll - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)MemPoll.Address, AndMask, OrMask));
|
||||
|
||||
Data = 0;
|
||||
Status = ScriptMemoryRead (
|
||||
|
@ -1203,13 +1203,13 @@ BootScriptExecuteInformation (
|
|||
CopyMem ((VOID*)&Information, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_INFORMATION));
|
||||
|
||||
InformationData = Script + sizeof (EFI_BOOT_SCRIPT_INFORMATION);
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteInformation - 0x%08x\n", (UINTN) InformationData));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteInformation - 0x%08x\n", (UINTN) InformationData));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptInformation: "));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptInformation: "));
|
||||
for (Index = 0; Index < Information.InformationLength; Index++) {
|
||||
DEBUG ((EFI_D_INFO, "%02x ", InformationData[Index]));
|
||||
DEBUG ((DEBUG_INFO, "%02x ", InformationData[Index]));
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "\n"));
|
||||
DEBUG ((DEBUG_INFO, "\n"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1231,13 +1231,13 @@ BootScriptExecuteLabel (
|
|||
CopyMem ((VOID*)&Information, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_INFORMATION));
|
||||
|
||||
InformationData = Script + sizeof (EFI_BOOT_SCRIPT_INFORMATION);
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteLabel - 0x%08x\n", (UINTN) InformationData));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteLabel - 0x%08x\n", (UINTN) InformationData));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptLabel: "));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptLabel: "));
|
||||
for (Index = 0; Index < Information.InformationLength; Index++) {
|
||||
DEBUG ((EFI_D_INFO, "%02x ", InformationData[Index]));
|
||||
DEBUG ((DEBUG_INFO, "%02x ", InformationData[Index]));
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "\n"));
|
||||
DEBUG ((DEBUG_INFO, "\n"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1349,7 +1349,7 @@ BootScriptExecuteIoPoll (
|
|||
|
||||
CopyMem ((VOID*)&IoPoll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_IO_POLL));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecuteIoPoll - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)IoPoll.Address, AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecuteIoPoll - 0x%08x, 0x%016lx, 0x%016lx\n", (UINTN)IoPoll.Address, AndMask, OrMask));
|
||||
|
||||
Data = 0;
|
||||
Status = ScriptIoRead (
|
||||
|
@ -1409,7 +1409,7 @@ BootScriptExecutePciCfg2Write (
|
|||
Count = PciCfg2Write.Count;
|
||||
Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2Write - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (Segment, Address), Count, (UINTN)Width));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecutePciCfg2Write - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (Segment, Address), Count, (UINTN)Width));
|
||||
return ScriptPciCfg2Write (Width, Segment, Address, Count, Buffer);
|
||||
}
|
||||
|
||||
|
@ -1439,7 +1439,7 @@ BootScriptExecutePciCfg2ReadWrite (
|
|||
|
||||
CopyMem ((VOID*)&PciCfg2ReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2ReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2ReadWrite.Segment, PciCfg2ReadWrite.Address), AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptExecutePciCfg2ReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2ReadWrite.Segment, PciCfg2ReadWrite.Address), AndMask, OrMask));
|
||||
|
||||
Status = ScriptPciCfg2Read (
|
||||
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2ReadWrite.Width,
|
||||
|
@ -1486,7 +1486,7 @@ BootScriptPciCfgPoll (
|
|||
EFI_BOOT_SCRIPT_PCI_CONFIG_POLL PciCfgPoll;
|
||||
CopyMem ((VOID*)&PciCfgPoll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_POLL));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptPciCfgPoll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgPoll.Address), AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptPciCfgPoll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgPoll.Address), AndMask, OrMask));
|
||||
|
||||
Data = 0;
|
||||
Status = ScriptPciCfgRead (
|
||||
|
@ -1548,7 +1548,7 @@ BootScriptPciCfg2Poll (
|
|||
Data = 0;
|
||||
CopyMem ((VOID*)&PciCfg2Poll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL));
|
||||
|
||||
DEBUG ((EFI_D_INFO, "BootScriptPciCfg2Poll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2Poll.Segment, PciCfg2Poll.Address), AndMask, OrMask));
|
||||
DEBUG ((DEBUG_INFO, "BootScriptPciCfg2Poll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2Poll.Segment, PciCfg2Poll.Address), AndMask, OrMask));
|
||||
|
||||
Status = ScriptPciCfg2Read (
|
||||
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2Poll.Width,
|
||||
|
@ -1613,12 +1613,12 @@ S3BootScriptExecute (
|
|||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptExecute:\n"));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptExecute:\n"));
|
||||
if (TableHeader.OpCode != S3_BOOT_SCRIPT_LIB_TABLE_OPCODE) {
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "TableHeader - 0x%08x\n", Script));
|
||||
DEBUG ((DEBUG_INFO, "TableHeader - 0x%08x\n", Script));
|
||||
|
||||
StartAddress = (UINTN) Script;
|
||||
TableLength = TableHeader.TableLength;
|
||||
|
@ -1627,22 +1627,22 @@ S3BootScriptExecute (
|
|||
AndMask = 0;
|
||||
OrMask = 0;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "TableHeader.Version - 0x%04x\n", (UINTN)TableHeader.Version));
|
||||
DEBUG ((EFI_D_INFO, "TableHeader.TableLength - 0x%08x\n", (UINTN)TableLength));
|
||||
DEBUG ((DEBUG_INFO, "TableHeader.Version - 0x%04x\n", (UINTN)TableHeader.Version));
|
||||
DEBUG ((DEBUG_INFO, "TableHeader.TableLength - 0x%08x\n", (UINTN)TableLength));
|
||||
|
||||
while ((UINTN) Script < (UINTN) (StartAddress + TableLength)) {
|
||||
DEBUG ((EFI_D_INFO, "ExecuteBootScript - %08x\n", (UINTN)Script));
|
||||
DEBUG ((DEBUG_INFO, "ExecuteBootScript - %08x\n", (UINTN)Script));
|
||||
|
||||
CopyMem ((VOID*)&ScriptHeader, Script, sizeof(EFI_BOOT_SCRIPT_COMMON_HEADER));
|
||||
switch (ScriptHeader.OpCode) {
|
||||
|
||||
case EFI_BOOT_SCRIPT_MEM_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_MEM_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_MEM_WRITE_OPCODE\n"));
|
||||
Status = BootScriptExecuteMemoryWrite (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_MEM_READ_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_MEM_READ_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_MEM_READ_WRITE_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecuteMemoryReadWrite (
|
||||
Script,
|
||||
|
@ -1652,17 +1652,17 @@ S3BootScriptExecute (
|
|||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_IO_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_IO_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_IO_WRITE_OPCODE\n"));
|
||||
Status = BootScriptExecuteIoWrite (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE_OPCODE\n"));
|
||||
Status = BootScriptExecutePciCfgWrite (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecutePciCfgReadWrite (
|
||||
Script,
|
||||
|
@ -1671,12 +1671,12 @@ S3BootScriptExecute (
|
|||
);
|
||||
break;
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE\n"));
|
||||
Status = BootScriptExecutePciCfg2Write (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecutePciCfg2ReadWrite (
|
||||
Script,
|
||||
|
@ -1685,27 +1685,27 @@ S3BootScriptExecute (
|
|||
);
|
||||
break;
|
||||
case EFI_BOOT_SCRIPT_DISPATCH_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_DISPATCH_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_DISPATCH_OPCODE\n"));
|
||||
Status = BootScriptExecuteDispatch (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE\n"));
|
||||
Status = BootScriptExecuteDispatch2 (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_INFORMATION_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_INFORMATION_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_INFORMATION_OPCODE\n"));
|
||||
BootScriptExecuteInformation (Script);
|
||||
break;
|
||||
|
||||
case S3_BOOT_SCRIPT_LIB_TERMINATE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "S3_BOOT_SCRIPT_LIB_TERMINATE_OPCODE\n"));
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptDone - %r\n", EFI_SUCCESS));
|
||||
DEBUG ((DEBUG_INFO, "S3_BOOT_SCRIPT_LIB_TERMINATE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptDone - %r\n", EFI_SUCCESS));
|
||||
return EFI_SUCCESS;
|
||||
|
||||
case EFI_BOOT_SCRIPT_IO_READ_WRITE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_IO_READ_WRITE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_IO_READ_WRITE_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecuteIoReadWrite (
|
||||
Script,
|
||||
|
@ -1715,36 +1715,36 @@ S3BootScriptExecute (
|
|||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_SMBUS_EXECUTE_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_SMBUS_EXECUTE_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_SMBUS_EXECUTE_OPCODE\n"));
|
||||
Status = BootScriptExecuteSmbusExecute (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_STALL_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_STALL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_STALL_OPCODE\n"));
|
||||
Status = BootScriptExecuteStall (Script);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_MEM_POLL_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_MEM_POLL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_MEM_POLL_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecuteMemPoll (Script, AndMask, OrMask);
|
||||
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_IO_POLL_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_IO_POLL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_IO_POLL_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptExecuteIoPoll (Script, AndMask, OrMask);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG_POLL_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_POLL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG_POLL_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptPciCfgPoll (Script, AndMask, OrMask);
|
||||
break;
|
||||
|
||||
case EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE:
|
||||
DEBUG ((EFI_D_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE\n"));
|
||||
CheckAndOrMask (&ScriptHeader, &AndMask, &OrMask, Script);
|
||||
Status = BootScriptPciCfg2Poll (Script, AndMask, OrMask);
|
||||
break;
|
||||
|
@ -1753,24 +1753,23 @@ S3BootScriptExecute (
|
|||
//
|
||||
// For label
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "S3_BOOT_SCRIPT_LIB_LABEL_OPCODE\n"));
|
||||
DEBUG ((DEBUG_INFO, "S3_BOOT_SCRIPT_LIB_LABEL_OPCODE\n"));
|
||||
BootScriptExecuteLabel (Script);
|
||||
break;
|
||||
default:
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptDone - %r\n", EFI_UNSUPPORTED));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptDone - %r\n", EFI_UNSUPPORTED));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptDone - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptDone - %r\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
Script = Script + ScriptHeader.Length;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "S3BootScriptDone - %r\n", Status));
|
||||
DEBUG ((DEBUG_INFO, "S3BootScriptDone - %r\n", Status));
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -573,7 +573,7 @@ S3BootScriptLibDeinitialize (
|
|||
return RETURN_SUCCESS;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "%a() in %a module\n", __FUNCTION__, gEfiCallerBaseName));
|
||||
DEBUG ((DEBUG_INFO, "%a() in %a module\n", __FUNCTION__, gEfiCallerBaseName));
|
||||
|
||||
if (mEventDxeSmmReadyToLock != NULL) {
|
||||
//
|
||||
|
@ -834,7 +834,7 @@ S3BootScriptGetEntryAddAddress (
|
|||
// Add DEBUG ERROR, so that we can find it after SmmReadyToLock.
|
||||
// Do not use ASSERT, because we may have test to invoke this interface.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "FATAL ERROR: Set boot script outside SMM after SmmReadyToLock!!!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "FATAL ERROR: Set boot script outside SMM after SmmReadyToLock!!!\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ InternalGetVarErrorFlag (
|
|||
&ErrorFlag
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "%s - not found\n", VAR_ERROR_FLAG_NAME));
|
||||
DEBUG ((DEBUG_INFO, "%s - not found\n", VAR_ERROR_FLAG_NAME));
|
||||
return VAR_ERROR_FLAG_NO_ERROR;
|
||||
}
|
||||
return ErrorFlag;
|
||||
|
@ -115,16 +115,16 @@ IsUserVariable (
|
|||
//
|
||||
// No property, it is user variable.
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "PlatformVarCleanup - User variable: %g:%s\n", Guid, Name));
|
||||
DEBUG ((DEBUG_INFO, "PlatformVarCleanup - User variable: %g:%s\n", Guid, Name));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// DEBUG ((EFI_D_INFO, "PlatformVarCleanup - Variable Property: %g:%s\n", Guid, Name));
|
||||
// DEBUG ((EFI_D_INFO, " Revision - 0x%04x\n", Property.Revision));
|
||||
// DEBUG ((EFI_D_INFO, " Property - 0x%04x\n", Property.Property));
|
||||
// DEBUG ((EFI_D_INFO, " Attribute - 0x%08x\n", Property.Attributes));
|
||||
// DEBUG ((EFI_D_INFO, " MinSize - 0x%x\n", Property.MinSize));
|
||||
// DEBUG ((EFI_D_INFO, " MaxSize - 0x%x\n", Property.MaxSize));
|
||||
// DEBUG ((DEBUG_INFO, "PlatformVarCleanup - Variable Property: %g:%s\n", Guid, Name));
|
||||
// DEBUG ((DEBUG_INFO, " Revision - 0x%04x\n", Property.Revision));
|
||||
// DEBUG ((DEBUG_INFO, " Property - 0x%04x\n", Property.Property));
|
||||
// DEBUG ((DEBUG_INFO, " Attribute - 0x%08x\n", Property.Attributes));
|
||||
// DEBUG ((DEBUG_INFO, " MinSize - 0x%x\n", Property.MinSize));
|
||||
// DEBUG ((DEBUG_INFO, " MaxSize - 0x%x\n", Property.MaxSize));
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -276,7 +276,7 @@ CreateUserVariableNode (
|
|||
|
||||
mUserVariableCount = Index;
|
||||
ASSERT (mUserVariableCount <= MAX_USER_VARIABLE_COUNT);
|
||||
DEBUG ((EFI_D_INFO, "PlatformVarCleanup - User variable count: 0x%04x\n", mUserVariableCount));
|
||||
DEBUG ((DEBUG_INFO, "PlatformVarCleanup - User variable count: 0x%04x\n", mUserVariableCount));
|
||||
|
||||
FreePool (VarName);
|
||||
FreePool (Data);
|
||||
|
@ -515,7 +515,7 @@ DeleteUserVariable (
|
|||
UserVariableNameNode = USER_VARIABLE_NAME_FROM_LINK (NameLink);
|
||||
|
||||
if (!UserVariableNameNode->Deleted && (DeleteAll || ((VariableCleanupData != NULL) && (VariableCleanupData->UserVariable[UserVariableNameNode->Index] == TRUE)))) {
|
||||
DEBUG ((EFI_D_INFO, "PlatformVarCleanup - Delete variable: %g:%s\n", &UserVariableNode->Guid, UserVariableNameNode->Name));
|
||||
DEBUG ((DEBUG_INFO, "PlatformVarCleanup - Delete variable: %g:%s\n", &UserVariableNode->Guid, UserVariableNameNode->Name));
|
||||
if ((UserVariableNameNode->Attributes & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) != 0) {
|
||||
DataSize = 0;
|
||||
Data = NULL;
|
||||
|
@ -538,7 +538,7 @@ DeleteUserVariable (
|
|||
if (!EFI_ERROR (Status)) {
|
||||
UserVariableNameNode->Deleted = TRUE;
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, "PlatformVarCleanup - Delete variable fail: %g:%s\n", &UserVariableNode->Guid, UserVariableNameNode->Name));
|
||||
DEBUG ((DEBUG_INFO, "PlatformVarCleanup - Delete variable fail: %g:%s\n", &UserVariableNode->Guid, UserVariableNameNode->Name));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1052,8 +1052,8 @@ PlatformVarCleanup (
|
|||
//
|
||||
// This sample does not support system variables cleanup.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "NOTICE - VAR_ERROR_FLAG_SYSTEM_ERROR\n"));
|
||||
DEBUG ((EFI_D_ERROR, "Platform should have mechanism to reset system to manufacture mode\n"));
|
||||
DEBUG ((DEBUG_ERROR, "NOTICE - VAR_ERROR_FLAG_SYSTEM_ERROR\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Platform should have mechanism to reset system to manufacture mode\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
@ -1232,7 +1232,7 @@ PlatformVarCleanupLibConstructor (
|
|||
EFI_STATUS Status;
|
||||
|
||||
mLastVarErrorFlag = InternalGetVarErrorFlag ();
|
||||
DEBUG ((EFI_D_INFO, "mLastVarErrorFlag - 0x%02x\n", mLastVarErrorFlag));
|
||||
DEBUG ((DEBUG_INFO, "mLastVarErrorFlag - 0x%02x\n", mLastVarErrorFlag));
|
||||
|
||||
//
|
||||
// Register EFI_END_OF_DXE_EVENT_GROUP_GUID event.
|
||||
|
|
|
@ -55,7 +55,7 @@ IpmiSubmitCommand (
|
|||
//
|
||||
// Smm Ipmi Protocol is not installed. So, IPMI device is not present.
|
||||
//
|
||||
DEBUG ((EFI_D_ERROR, "IpmiSubmitCommand for SMM Status - %r\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "IpmiSubmitCommand for SMM Status - %r\n", Status));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1807,7 +1807,7 @@ EfiBootManagerBoot (
|
|||
}
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "[Bds] Failed to create Boot#### for a temporary boot - %r!\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "[Bds] Failed to create Boot#### for a temporary boot - %r!\n", Status));
|
||||
BootOption->Status = Status;
|
||||
return ;
|
||||
}
|
||||
|
@ -1830,7 +1830,7 @@ EfiBootManagerBoot (
|
|||
// the boot option.
|
||||
//
|
||||
if (BmIsBootManagerMenuFilePath (BootOption->FilePath)) {
|
||||
DEBUG ((EFI_D_INFO, "[Bds] Booting Boot Manager Menu.\n"));
|
||||
DEBUG ((DEBUG_INFO, "[Bds] Booting Boot Manager Menu.\n"));
|
||||
BmStopHotkeyService (NULL, NULL);
|
||||
} else {
|
||||
EfiSignalEventReadyToBoot();
|
||||
|
@ -2440,7 +2440,7 @@ BmRegisterBootManagerMenu (
|
|||
&DevicePath
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_WARN, "[Bds]BootManagerMenu FFS section can not be found, skip its boot option registration\n"));
|
||||
DEBUG ((DEBUG_WARN, "[Bds]BootManagerMenu FFS section can not be found, skip its boot option registration\n"));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
ASSERT (DevicePath != NULL);
|
||||
|
|
|
@ -199,7 +199,7 @@ EfiBootManagerGetGopDevicePath (
|
|||
//
|
||||
// Recursively look for GOP child in this frame buffer handle
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "[Bds] Looking for GOP child deeper ... \n"));
|
||||
DEBUG ((DEBUG_INFO, "[Bds] Looking for GOP child deeper ... \n"));
|
||||
TempDevicePath = GopPool;
|
||||
ReturnDevicePath = EfiBootManagerGetGopDevicePath (OpenInfoBuffer[Index].ControllerHandle);
|
||||
GopPool = AppendDevicePathInstance (GopPool, ReturnDevicePath);
|
||||
|
@ -340,7 +340,7 @@ BmUpdateSystemTableConsole (
|
|||
//
|
||||
Instance = GetNextDevicePathInstance (&VarConsole, &DevicePathSize);
|
||||
if (Instance == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "[Bds] No valid console instance is found for %s!\n", VarName));
|
||||
DEBUG ((DEBUG_ERROR, "[Bds] No valid console instance is found for %s!\n", VarName));
|
||||
// We should not ASSERT when all the console devices are removed.
|
||||
// ASSERT_EFI_ERROR (EFI_NOT_FOUND);
|
||||
FreePool (FullDevicePath);
|
||||
|
|
|
@ -129,7 +129,7 @@ BmDisplayMessages (
|
|||
DriverHealthInfo->ChildHandle
|
||||
);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Controller: %s\n", ControllerName));
|
||||
DEBUG ((DEBUG_INFO, "Controller: %s\n", ControllerName));
|
||||
Print (L"Controller: %s\n", ControllerName);
|
||||
for (Index = 0; DriverHealthInfo->MessageList[Index].HiiHandle != NULL; Index++) {
|
||||
String = HiiGetString (
|
||||
|
@ -139,7 +139,7 @@ BmDisplayMessages (
|
|||
);
|
||||
if (String != NULL) {
|
||||
Print (L" %s\n", String);
|
||||
DEBUG ((EFI_D_INFO, " %s\n", String));
|
||||
DEBUG ((DEBUG_INFO, " %s\n", String));
|
||||
FreePool (String);
|
||||
}
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ BmRepairNotify (
|
|||
IN UINTN Limit
|
||||
)
|
||||
{
|
||||
DEBUG ((EFI_D_INFO, "[BDS]RepairNotify: %d/%d\n", Value, Limit));
|
||||
DEBUG ((DEBUG_INFO, "[BDS]RepairNotify: %d/%d\n", Value, Limit));
|
||||
Print (L"[BDS]RepairNotify: %d/%d\n", Value, Limit);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
@ -556,7 +556,7 @@ BmRepairAllControllers (
|
|||
DriverHealthInfo[Index].ChildHandle
|
||||
);
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"%02d: %s - %s\n",
|
||||
Index,
|
||||
ControllerName,
|
||||
|
@ -579,7 +579,7 @@ BmRepairAllControllers (
|
|||
}
|
||||
|
||||
if (RebootRequired) {
|
||||
DEBUG ((EFI_D_INFO, "[BDS] One of the Driver Health instances requires rebooting.\n"));
|
||||
DEBUG ((DEBUG_INFO, "[BDS] One of the Driver Health instances requires rebooting.\n"));
|
||||
gRT->ResetSystem (EfiResetWarm, EFI_SUCCESS, 0, NULL);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -353,7 +353,7 @@ BmHotkeyCallback (
|
|||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, "[Bds]BmHotkeyCallback: %04x:%04x\n", KeyData->Key.ScanCode, KeyData->Key.UnicodeChar));
|
||||
DEBUG ((DEBUG_INFO, "[Bds]BmHotkeyCallback: %04x:%04x\n", KeyData->Key.ScanCode, KeyData->Key.UnicodeChar));
|
||||
|
||||
EfiAcquireLock (&mBmHotkeyLock);
|
||||
for ( Link = GetFirstNode (&mBmHotkeyList)
|
||||
|
@ -399,12 +399,12 @@ BmHotkeyCallback (
|
|||
mBmLoadOptionName[LoadOptionTypeBoot], Hotkey->BootOption
|
||||
);
|
||||
Status = EfiBootManagerVariableToLoadOption (OptionName, &mBmHotkeyBootOption);
|
||||
DEBUG ((EFI_D_INFO, "[Bds]Hotkey for %s pressed - %r\n", OptionName, Status));
|
||||
DEBUG ((DEBUG_INFO, "[Bds]Hotkey for %s pressed - %r\n", OptionName, Status));
|
||||
if (EFI_ERROR (Status)) {
|
||||
mBmHotkeyBootOption.OptionNumber = LoadOptionNumberUnassigned;
|
||||
}
|
||||
} else {
|
||||
DEBUG ((EFI_D_INFO, "[Bds]Continue key pressed!\n"));
|
||||
DEBUG ((DEBUG_INFO, "[Bds]Continue key pressed!\n"));
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -503,7 +503,7 @@ BmUnregisterHotkeyNotify (
|
|||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
Status = TxtInEx->UnregisterKeyNotify (TxtInEx, NotifyHandle);
|
||||
DEBUG ((EFI_D_INFO, "[Bds]UnregisterKeyNotify: %04x/%04x %r\n", Hotkey->KeyData[KeyIndex].Key.ScanCode, Hotkey->KeyData[KeyIndex].Key.UnicodeChar, Status));
|
||||
DEBUG ((DEBUG_INFO, "[Bds]UnregisterKeyNotify: %04x/%04x %r\n", Hotkey->KeyData[KeyIndex].Key.ScanCode, Hotkey->KeyData[KeyIndex].Key.UnicodeChar, Status));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -542,7 +542,7 @@ BmRegisterHotkeyNotify (
|
|||
&NotifyHandle
|
||||
);
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
DEBUG_INFO,
|
||||
"[Bds]RegisterKeyNotify: %04x/%04x %08x/%02x %r\n",
|
||||
Hotkey->KeyData[Index].Key.ScanCode,
|
||||
Hotkey->KeyData[Index].Key.UnicodeChar,
|
||||
|
@ -830,7 +830,7 @@ BmStopHotkeyService (
|
|||
LIST_ENTRY *Link;
|
||||
BM_HOTKEY *Hotkey;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "[Bds]Stop Hotkey Service!\n"));
|
||||
DEBUG ((DEBUG_INFO, "[Bds]Stop Hotkey Service!\n"));
|
||||
gBS->CloseEvent (Event);
|
||||
|
||||
EfiAcquireLock (&mBmHotkeyLock);
|
||||
|
@ -873,7 +873,7 @@ EfiBootManagerStartHotkeyService (
|
|||
}
|
||||
|
||||
if (mBmHotkeySupportCount == 0) {
|
||||
DEBUG ((EFI_D_INFO, "Bds: BootOptionSupport NV variable forbids starting the hotkey service.\n"));
|
||||
DEBUG ((DEBUG_INFO, "Bds: BootOptionSupport NV variable forbids starting the hotkey service.\n"));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
|
|
@ -1081,7 +1081,7 @@ EfiBootManagerGetLoadOptions (
|
|||
|
||||
Status = EfiBootManagerVariableToLoadOption (OptionName, &Options[OptionIndex]);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_INFO, "[Bds] %s doesn't exist - Update ****Order variable to remove the reference!!", OptionName));
|
||||
DEBUG ((DEBUG_INFO, "[Bds] %s doesn't exist - Update ****Order variable to remove the reference!!", OptionName));
|
||||
EfiBootManagerDeleteLoadOptionVariable (OptionNumber, LoadOptionType);
|
||||
} else {
|
||||
ASSERT (Options[OptionIndex].OptionNumber == OptionNumber);
|
||||
|
|
|
@ -208,9 +208,9 @@ BmSetMemoryTypeInformationVariable (
|
|||
//
|
||||
// Use a heuristic to adjust the Memory Type Information for the next boot
|
||||
//
|
||||
DEBUG ((EFI_D_INFO, "Memory Previous Current Next \n"));
|
||||
DEBUG ((EFI_D_INFO, " Type Pages Pages Pages \n"));
|
||||
DEBUG ((EFI_D_INFO, "====== ======== ======== ========\n"));
|
||||
DEBUG ((DEBUG_INFO, "Memory Previous Current Next \n"));
|
||||
DEBUG ((DEBUG_INFO, " Type Pages Pages Pages \n"));
|
||||
DEBUG ((DEBUG_INFO, "====== ======== ======== ========\n"));
|
||||
|
||||
for (Index = 0; PreviousMemoryTypeInformation[Index].Type != EfiMaxMemoryType; Index++) {
|
||||
|
||||
|
@ -253,7 +253,7 @@ BmSetMemoryTypeInformationVariable (
|
|||
MemoryTypeInformationModified = TRUE;
|
||||
}
|
||||
|
||||
DEBUG ((EFI_D_INFO, " %02x %08x %08x %08x\n", PreviousMemoryTypeInformation[Index].Type, Previous, Current, Next));
|
||||
DEBUG ((DEBUG_INFO, " %02x %08x %08x %08x\n", PreviousMemoryTypeInformation[Index].Type, Previous, Current, Next));
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -276,14 +276,14 @@ BmSetMemoryTypeInformationVariable (
|
|||
// entry/resume cycle will not fail.
|
||||
//
|
||||
if (MemoryTypeInformationModified) {
|
||||
DEBUG ((EFI_D_INFO, "Memory Type Information settings change.\n"));
|
||||
DEBUG ((DEBUG_INFO, "Memory Type Information settings change.\n"));
|
||||
if (Boot && PcdGetBool (PcdResetOnMemoryTypeInformationChange)) {
|
||||
DEBUG ((EFI_D_INFO, "...Warm Reset!!!\n"));
|
||||
DEBUG ((DEBUG_INFO, "...Warm Reset!!!\n"));
|
||||
gRT->ResetSystem (EfiResetWarm, EFI_SUCCESS, 0, NULL);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
DEBUG ((EFI_D_ERROR, "Memory Type Information settings cannot be saved. OS S4 may fail!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "Memory Type Information settings cannot be saved. OS S4 may fail!\n"));
|
||||
}
|
||||
}
|
||||
FreePool (PreviousMemoryTypeInformation);
|
||||
|
@ -385,7 +385,7 @@ BmPrintDp (
|
|||
CHAR16 *Str;
|
||||
|
||||
Str = ConvertDevicePathToText (DevicePath, FALSE, FALSE);
|
||||
DEBUG ((EFI_D_INFO, "%s", Str));
|
||||
DEBUG ((DEBUG_INFO, "%s", Str));
|
||||
if (Str != NULL) {
|
||||
FreePool (Str);
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue