From: erictian Date: Tue, 29 May 2012 07:05:33 +0000 (+0000) Subject: MdeModulePkg/Ata: Clear PxCmd.SUD bit when the port has no device presented at AHCI... X-Git-Tag: edk2-stable201903~13374 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=2721fabc5353114660dc53ac04939d29cb685263;hp=fc80ee69cba877e2d8efed767e23ab36fc36d91c MdeModulePkg/Ata: Clear PxCmd.SUD bit when the port has no device presented at AHCI mode. Signed-off-by: Feng Tian Reviewed-by: Sun Rui git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13370 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c index 42ee5bc580..c2c2c2869a 100644 --- a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c +++ b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c @@ -2278,7 +2278,10 @@ AhciModeInitialization ( if (PhyDetectDelay == 0) { // // No device detected at this port. + // Clear PxCMD.SUD for those ports at which there are no device present. // + Offset = EFI_AHCI_PORT_START + Port * EFI_AHCI_PORT_REG_WIDTH + EFI_AHCI_PORT_CMD; + AhciAndReg (PciIo, Offset, (UINT32) ~(EFI_AHCI_PORT_CMD_SUD)); continue; }