[coreboot-gerrit] Patch set updated for coreboot: ACPI S3: Drop ACPI_HUGE_LOWMEM_BACKUP

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Fri Jul 8 20:57:59 CEST 2016


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15476

-gerrit

commit 76551ea91986f2d8d285817c302b0cead85c7076
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Tue Jun 28 07:50:48 2016 +0300

    ACPI S3: Drop ACPI_HUGE_LOWMEM_BACKUP
    
    Change-Id: Ifae41b51b359010ec02269c674936a87bd15623b
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 src/Kconfig            | 4 ----
 src/arch/x86/acpi_s3.c | 5 -----
 2 files changed, 9 deletions(-)

diff --git a/src/Kconfig b/src/Kconfig
index c63ad41..7c1415e 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -516,10 +516,6 @@ config HAVE_ACPI_RESUME
 	bool
 	default n
 
-config ACPI_HUGE_LOWMEM_BACKUP
-	bool
-	default n
-
 config RESUME_PATH_SAME_AS_BOOT
 	bool
 	default y if ARCH_X86
diff --git a/src/arch/x86/acpi_s3.c b/src/arch/x86/acpi_s3.c
index 4f4f2c2..c8372d5 100644
--- a/src/arch/x86/acpi_s3.c
+++ b/src/arch/x86/acpi_s3.c
@@ -95,11 +95,6 @@ static int backup_create_or_update(struct resume_backup *backup_mem,
 {
 	uintptr_t top;
 
-	if (IS_ENABLED(CONFIG_ACPI_HUGE_LOWMEM_BACKUP)) {
-		base = CONFIG_RAMBASE;
-		size = HIGH_MEMORY_SAVE;
-	}
-
 	/* Align backup region to complete pages. */
 	top = ALIGN_UP(base + size, BACKUP_PAGE_SZ);
 	base = ALIGN_DOWN(base, BACKUP_PAGE_SZ);



More information about the coreboot-gerrit mailing list