diff options
author | Eugene D. Myers <edmyers@tycho.nsa.gov> | 2019-07-02 14:06:46 -0400 |
---|---|---|
committer | ron minnich <rminnich@gmail.com> | 2019-12-18 00:33:30 +0000 |
commit | 297b6b862a724de70abf33f681f63b6a3d84c24b (patch) | |
tree | b40b6b473ffb212c612118dd219b4446e40a26f6 /src/include/cpu/x86/smm.h | |
parent | 7a1b60b694f397e4a7c3ddd8c7242f8c312212f8 (diff) | |
download | coreboot-297b6b862a724de70abf33f681f63b6a3d84c24b.tar.xz |
include/cpu/x86: Add STM Support
Addtions to include/cpu/x86 include for STM support.
Change-Id: I2b8e68b2928aefc7996b6a9560c52f71c7c0e1d0
Signed-off-by: Eugene D. Myers <edmyers@tycho.nsa.gov>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33985
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: ron minnich <rminnich@gmail.com>
Diffstat (limited to 'src/include/cpu/x86/smm.h')
-rw-r--r-- | src/include/cpu/x86/smm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/cpu/x86/smm.h b/src/include/cpu/x86/smm.h index cf107b121a..9efe2e04eb 100644 --- a/src/include/cpu/x86/smm.h +++ b/src/include/cpu/x86/smm.h @@ -64,6 +64,9 @@ extern unsigned char _binary_smm_end[]; struct smm_runtime { u32 smbase; u32 save_state_size; + u32 num_cpus; + /* STM's 32bit entry into SMI handler */ + u32 start32_offset; /* The apic_id_to_cpu provides a mapping from APIC id to CPU number. * The CPU number is indicated by the index into the array by matching * the default APIC id and value at the index. The stub loader |