All targets now use cbmem for the BERT region, so the implementation can be common. This also drops the obsolete comment about the need to have bert in a reserved region (cbmem gets fixed to be in a reserved region). Change-Id: I6f33d9e05a02492a1c91fb7af94aadaa9acd2931 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64602 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
49 lines
873 B
C
49 lines
873 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <amdblocks/smm.h>
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <cpu/x86/msr.h>
|
|
#include <cpu/x86/smm.h>
|
|
#include <cpu/amd/msr.h>
|
|
#include <cpu/amd/mtrr.h>
|
|
#include <cbmem.h>
|
|
#include <soc/northbridge.h>
|
|
#include <soc/iomap.h>
|
|
#include <amdblocks/biosram.h>
|
|
|
|
void *cbmem_top_chipset(void)
|
|
{
|
|
msr_t tom = rdmsr(TOP_MEM);
|
|
|
|
if (!tom.lo)
|
|
return 0;
|
|
|
|
/* 8MB alignment to keep MTRR usage low */
|
|
return (void *)ALIGN_DOWN(restore_top_of_low_cacheable()
|
|
- CONFIG_SMM_TSEG_SIZE, 8*MiB);
|
|
}
|
|
|
|
static uintptr_t smm_region_start(void)
|
|
{
|
|
return (uintptr_t)cbmem_top();
|
|
}
|
|
|
|
static size_t smm_region_size(void)
|
|
{
|
|
return CONFIG_SMM_TSEG_SIZE;
|
|
}
|
|
|
|
void smm_region(uintptr_t *start, size_t *size)
|
|
{
|
|
static int once;
|
|
|
|
*start = smm_region_start();
|
|
*size = smm_region_size();
|
|
|
|
if (!once) {
|
|
clear_tvalid();
|
|
once = 1;
|
|
}
|
|
}
|