From 7b5b145ad50909aab381aca60902c4749b762bd4 Mon Sep 17 00:00:00 2001 From: vit9696 Date: Sat, 18 Jul 2020 23:20:27 +0300 Subject: [PATCH] Patches: Add AtaAtapiPassThru patches for G33 --- ...aControllerDxe-Add-support-for-drive.patch | 4 +- ...AtapiPassThru-Add-support-for-drives.patch | 44 +++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 Patches/0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch diff --git a/Patches/0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch b/Patches/0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch index 7bcf2ba2..2c156fc2 100644 --- a/Patches/0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch +++ b/Patches/0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch @@ -1,12 +1,14 @@ From 9538d71f69e18e2fa198dee03590d3421a63c308 Mon Sep 17 00:00:00 2001 From: Vitaly Cheptsov Date: Sat, 18 Jul 2020 05:07:03 +0300 -Subject: [PATCH 1/1] MdeModulePkg/SataControllerDxe: Add support for drives in +Subject: [PATCH 1/2] MdeModulePkg/SataControllerDxe: Add support for drives in RAID mode This resolves the problem of using drivers connected to Intel G33 builtin SATA controller when run from DuetPkg when the only configurable modes in the BIOS are IDE and RAID. + +Signed-off-by: Vitaly Cheptsov --- MdeModulePkg/Bus/Pci/SataControllerDxe/SataController.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Patches/0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch b/Patches/0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch new file mode 100644 index 00000000..d60f0778 --- /dev/null +++ b/Patches/0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch @@ -0,0 +1,44 @@ +From 77ef871e081ba7dfe7f7be9c7a464c9e0ce80dd9 Mon Sep 17 00:00:00 2001 +From: Vitaly Cheptsov +Date: Sat, 18 Jul 2020 23:15:18 +0300 +Subject: [PATCH 2/2] MdeModulePkg/AtaAtapiPassThru: Add support for drives in + RAID mode + +This resolves the problem of using drivers connected to Intel G33 +builtin SATA controller when run from DuetPkg when the only configurable +modes in the BIOS are IDE and RAID. + +Signed-off-by: Vitaly Cheptsov +--- + MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c +index 86fe9d954f..5892508aef 100644 +--- a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c ++++ b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c +@@ -620,7 +620,7 @@ AtaAtapiPassThruSupported ( + return EFI_UNSUPPORTED; + } + +- if (IS_PCI_IDE (&PciData) || IS_PCI_SATADPA (&PciData)) { ++ if (IS_PCI_IDE (&PciData) || IS_PCI_SATADPA (&PciData) || IS_PCI_RAID (&PciData)) { + return EFI_SUCCESS; + } + +@@ -1208,6 +1208,12 @@ EnumerateAttachedDevice ( + goto Done; + } + break; ++ case PCI_CLASS_MASS_STORAGE_RAID : ++ Instance->AtaPassThruMode.Attributes &= ~EFI_ATA_PASS_THRU_ATTRIBUTES_PHYSICAL; ++ Instance->ExtScsiPassThruMode.Attributes &= ~EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_PHYSICAL; ++ // ++ // Fall through to AHCI ++ // + case PCI_CLASS_MASS_STORAGE_SATADPA : + // + // The ATA controller is working at AHCI mode +-- +2.24.3 (Apple Git-128) + -- GitLab