soc/amd/common/cpu/smm/smm_relocate: don't assume TSEG is below 4GB

Even though right now TSEG will always be located below 4GB, better not
make assumptions in the SMM relocation code. Instead of clearing the
higher 32 bits and just assigning the TSEG base and per-core SMM base to
the lower 32 bits of the MSR, assign those two base addresses to the raw
64 bit MSR value to not truncate the base addresses. Since TSEG will
realistically never be larger than 4GB and it needs to be aligned to its
power-of-two size, the TSEG mask still only needs to affect the lower
half of the corresponding MSR value.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I1004b5e05a7dba83b76b93b3e7152aef7db58f4d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73639
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Felix Held 2023-03-09 19:43:18 +01:00
parent 65c4b8652d
commit cabf6eaac3
1 changed files with 2 additions and 4 deletions

View File

@ -65,8 +65,7 @@ static void smm_relocation_handler(void)
smm_region(&tseg_base, &tseg_size);
msr_t msr;
msr.lo = tseg_base;
msr.hi = 0;
msr.raw = tseg_base;
wrmsr(SMM_ADDR_MSR, msr);
msr.lo = ~(tseg_size - 1);
@ -76,8 +75,7 @@ static void smm_relocation_handler(void)
uintptr_t smbase = smm_get_cpu_smbase(cpu_index());
msr_t smm_base = {
.hi = 0,
.lo = smbase
.raw = smbase
};
wrmsr(SMM_BASE_MSR, smm_base);