summaryrefslogtreecommitdiffstats
path: root/src/cpu/x86/lapic/secondary.S
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-09-21 10:17:24 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-09-29 14:12:58 +0000
commitea5c31138b7591efd68147b6ea12097ea98d98c9 (patch)
treeb5d08412fb9dd5146c97dfb3372369d3bf174c91 /src/cpu/x86/lapic/secondary.S
parent326a2c4794e392df2803a22cbaca66dbb5ed58fd (diff)
downloadcoreboot-ea5c31138b7591efd68147b6ea12097ea98d98c9.tar.gz
coreboot-ea5c31138b7591efd68147b6ea12097ea98d98c9.tar.bz2
coreboot-ea5c31138b7591efd68147b6ea12097ea98d98c9.zip
arch/x86,cpu/x86: Disable the %gs and %fs segments
The %fs and %gs segment are typically used to implement thread local storage or cpu local storage. We don't currently use these in coreboot, so there is no reason to map them. By setting the segment index to 0, it disables the segment. If an instruction tries to read from one of these segments an exception will be raised. The end goal is to make cpu_info() use the %gs segment. This will remove the stack alignment requirements and fix smm_do_relocation. BUG=b:194391185, b:179699789 TEST=Boot guybrush to OS Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Iaa376e562acc6bd1dfffb7a23bdec82aa474c1d5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57860 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Peers <epeers@google.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/cpu/x86/lapic/secondary.S')
-rw-r--r--src/cpu/x86/lapic/secondary.S3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/x86/lapic/secondary.S b/src/cpu/x86/lapic/secondary.S
index d36bc9a64544..d2d43a2b5bed 100644
--- a/src/cpu/x86/lapic/secondary.S
+++ b/src/cpu/x86/lapic/secondary.S
@@ -52,8 +52,9 @@ __ap_protected_start:
movw %ax, %ds
movw %ax, %es
movw %ax, %ss
+ xor %ax, %ax /* zero out the gs and fs segment index */
movw %ax, %fs
- movw %ax, %gs
+ movw %ax, %gs /* Will be used for cpu_info */
/* Load the Interrupt descriptor table */
lidt idtarg