aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/tboot.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-08-17 14:16:16 -0400
committerH. Peter Anvin <hpa@zytor.com>2009-08-17 14:16:16 -0400
commit62a3207b8cf3de35368cdc3822b30b82d59eea95 (patch)
treea033c86fed4aef491c32d8d979b6e5e17d559a09 /arch/x86/kernel/tboot.c
parent3c556e4198926b284ff5ff6756111a64e1e98cb0 (diff)
x86, intel_txt: Handle ACPI_SLEEP without X86_TRAMPOLINE
On 32 bits, we can have CONFIG_ACPI_SLEEP set without implying CONFIG_X86_TRAMPOLINE. In that case, we simply do not need to mark the trampoline as a MAC region. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Cc: Shane Wang <shane.wang@intel.com> Cc: Joseph Cihula <joseph.cihula@intel.com>
Diffstat (limited to 'arch/x86/kernel/tboot.c')
-rw-r--r--arch/x86/kernel/tboot.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c
index a183beffe39e..c2e760ca7b01 100644
--- a/arch/x86/kernel/tboot.c
+++ b/arch/x86/kernel/tboot.c
@@ -189,8 +189,12 @@ static int tboot_setup_sleep(void)
189 189
190 /* S3 resume code */ 190 /* S3 resume code */
191 add_mac_region(acpi_wakeup_address, WAKEUP_SIZE); 191 add_mac_region(acpi_wakeup_address, WAKEUP_SIZE);
192
193#ifdef CONFIG_X86_TRAMPOLINE
192 /* AP trampoline code */ 194 /* AP trampoline code */
193 add_mac_region(virt_to_phys(trampoline_base), TRAMPOLINE_SIZE); 195 add_mac_region(virt_to_phys(trampoline_base), TRAMPOLINE_SIZE);
196#endif
197
194 /* kernel code + data + bss */ 198 /* kernel code + data + bss */
195 add_mac_region(virt_to_phys(_text), _end - _text); 199 add_mac_region(virt_to_phys(_text), _end - _text);
196 200