summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2016-12-06 13:58:56 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2016-12-06 20:53:30 +0100
commitcd6d281fbee4de59aad1e76f1ed9afeb19ce9a0b (patch)
tree4c4aac8a2cc3ff1a2f3326ed260fb258d3f867e3 /src/arch
parentc895b7def185ddb623bbcc531048d4d936b814b7 (diff)
downloadcoreboot-cd6d281fbee4de59aad1e76f1ed9afeb19ce9a0b.tar.xz
CPU: Move SMM prototypes under x86
Change-Id: Iefbc17dcfcf312338d94b2c2945c7fac3b23bff6 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17732 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/include/arch/cpu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h
index faa237565c..578bb07369 100644
--- a/src/arch/x86/include/arch/cpu.h
+++ b/src/arch/x86/include/arch/cpu.h
@@ -163,6 +163,10 @@ int cpu_cpuid_extended_level(void);
int cpu_have_cpuid(void);
int cpu_phys_address_size(void);
+void smm_init(void);
+void smm_lock(void);
+void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
+
#ifndef __SIMPLE_DEVICE__
struct device;