Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15476
-gerrit
commit 3008715dfea64abb9f872abd81a4f10b6359acac Author: Kyösti Mälkki kyosti.malkki@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@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 b4c3cbe..7043851 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 741e5cf..b216bc8 100644 --- a/src/arch/x86/acpi_s3.c +++ b/src/arch/x86/acpi_s3.c @@ -95,11 +95,6 @@ void *acpi_backup_container(uintptr_t base, size_t size) struct resume_backup *backup_mem; uintptr_t top, target;
- 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);