summaryrefslogtreecommitdiffstats
path: root/src/northbridge
diff options
context:
space:
mode:
authorMichał Żygowski <michal.zygowski@3mdeb.com>2021-11-21 13:47:25 +0100
committerMichał Żygowski <michal.zygowski@3mdeb.com>2021-12-02 17:41:07 +0000
commit68ff33720a234d72e1b7152512198165e2cfc8e5 (patch)
treef9786425a1c45c279ad3df8793d12a33f277dfc6 /src/northbridge
parent1ce0f3aab72dab7a74277a8eda6e6605edf106e3 (diff)
downloadcoreboot-68ff33720a234d72e1b7152512198165e2cfc8e5.tar.gz
coreboot-68ff33720a234d72e1b7152512198165e2cfc8e5.tar.bz2
coreboot-68ff33720a234d72e1b7152512198165e2cfc8e5.zip
nb/intel/sandybridge/romstage.c: Configure DPR and initialize TXT
Initialize the DPR register and check if SCLEAN needs to be run. Allows to reliably boot the platform if ungraceful shutdown occured or the memory controller has been locked by TXT. TEST=Dell OptiPlex 9010 with Intel TXT enabled boots successfully after 4s power button override or power cable unplug when SENTER was executed. Successfully boot QubesOS 4.0 with TBoot v1.8.2 Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: I4b912f121593fa55c11813262f09be1a1055e950 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59523 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/sandybridge/romstage.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/northbridge/intel/sandybridge/romstage.c b/src/northbridge/intel/sandybridge/romstage.c
index d6e7ee9025b1..71b8e1278285 100644
--- a/src/northbridge/intel/sandybridge/romstage.c
+++ b/src/northbridge/intel/sandybridge/romstage.c
@@ -10,6 +10,9 @@
#include <device/pci_def.h>
#include <device/device.h>
#include <northbridge/intel/sandybridge/chip.h>
+#include <security/intel/txt/txt.h>
+#include <security/intel/txt/txt_platform.h>
+#include <security/intel/txt/txt_register.h>
#include <southbridge/intel/bd82x6x/pch.h>
#include <southbridge/intel/common/pmclib.h>
#include <elog.h>
@@ -22,6 +25,21 @@ __weak void mainboard_late_rcba_config(void)
{
}
+static void configure_dpr(void)
+{
+ union dpr_register dpr = txt_get_chipset_dpr();
+
+ /*
+ * Just need to program the size of DPR, enable and lock it.
+ * The dpr.top will always point to TSEG_BASE (updated by hardware).
+ * We do it early because it will be needed later to calculate cbmem_top.
+ */
+ dpr.lock = 1;
+ dpr.epm = 1;
+ dpr.size = CONFIG_INTEL_TXT_DPR_SIZE;
+ pci_write_config32(HOST_BRIDGE, DPR, dpr.raw);
+}
+
static void early_pch_reset_pmcon(void)
{
/* Reset RTC power status */
@@ -60,6 +78,11 @@ void mainboard_romstage_entry(void)
post_code(0x39);
+ if (CONFIG(INTEL_TXT)) {
+ configure_dpr();
+ intel_txt_romstage_init();
+ }
+
perform_raminit(s3resume);
post_code(0x3b);