diff options
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/include/arch/acpi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h index 276ca5210d..5674c3a240 100644 --- a/src/arch/x86/include/arch/acpi.h +++ b/src/arch/x86/include/arch/acpi.h @@ -24,6 +24,14 @@ #ifndef __ASM_ACPI_H #define __ASM_ACPI_H +#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME) && \ + ! IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE) +#define HIGH_MEMORY_SAVE (CONFIG_RAMTOP - CONFIG_RAMBASE) +#else +#define HIGH_MEMORY_SAVE 0 +#endif + +#ifndef __ASSEMBLER__ #include <stdint.h> #include <rules.h> #include <commonlib/helpers.h> @@ -643,4 +651,6 @@ static inline uintptr_t acpi_align_current(uintptr_t current) return ALIGN(current, 16); } +#endif /* __ASSEMBLER__ */ + #endif /* __ASM_ACPI_H */ |