diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-01 23:48:32 +0100 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-07 14:00:00 +0000 |
commit | f4c11dcb53bbd324741ecd7109584eaa55579f7f (patch) | |
tree | 35d56636dbeae4e6338aa842823a43ae3505ae72 /src/security/intel | |
parent | 66b2888b77da6721955a918c8cd5399abe786a6a (diff) |
cpu/x86: Drop !CPU_INFO_V2 code
Now that all platforms use parallel_mp this is the only codepath used
for cpu_info() local thread storage.
Change-Id: I119214e703aea8a4fe93f83b784159cf86d859d3
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69122
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/security/intel')
-rw-r--r-- | src/security/intel/txt/getsec_enteraccs.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/intel/txt/getsec_enteraccs.S b/src/security/intel/txt/getsec_enteraccs.S index cbb24b6511..ff9db05f06 100644 --- a/src/security/intel/txt/getsec_enteraccs.S +++ b/src/security/intel/txt/getsec_enteraccs.S @@ -227,7 +227,7 @@ cond_clear_var_mtrrs: movd %esp, %xmm0 movd %ebp, %xmm1 - /* Backup %gs used by CPU_INFO_V2 */ + /* Backup %gs used by cpu_info() */ movl %gs, %eax movd %eax, %xmm2 @@ -265,7 +265,7 @@ cond_clear_var_mtrrs: movl %eax, %es movl %eax, %ss movl %eax, %fs - /* Restore %gs used by CPU_INFO_V2 */ + /* Restore %gs used by cpu_info */ movd %xmm2, %eax movl %eax, %gs |