[coreboot-gerrit] Patch set updated for coreboot: intel/skylake: Create "RtcLock" Silicon UPD from coreboot

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Sep 17 14:16:53 CET 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11655

-gerrit

commit 29079e52878d0fed60baf6bb88b201a1e713834a
Author: Barnali Sarkar <barnali.sarkar at intel.com>
Date:   Tue Sep 8 16:00:46 2015 +0530

    intel/skylake: Create "RtcLock" Silicon UPD from coreboot
    
    FSP should not lock CMOS unconditionally. coreboot sends Silicon
    UPD parameter "RtcLock" to FSP to take action on CMOS
    region locking/un-locking. This patch has CB generic code for
    creating the Silicon UPD paramater.
    
    BUG=chrome-os-partner:44484
    BRANCH=none
    TEST=Build and booted in kunimitsu, tested using below command-
    When DIsabled RtcLock from devicetree in coreboot, booted to kernel
    and run following commands -
    >> crossystem fw_result=success
    >> crossystem | grep fw_result
    It should reflect the value that is set. Here, success.
    If ENabled RtcLock from Coreboot devicetree, The same commands will
    fail to update the fw_result status from crossystem utility.
    CQ-DEPEND=CL:*229144
    
    Change-Id: I7f63332097cdaf6eedefbc84bec69ce4e9cc59d7
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: c7b8293a2c55117d7ca2001ac9ec0de24d35b80b
    Original-Change-Id: If708e2c782644dcf7f03785d1bfa235ef5385d80
    Original-Signed-off-by: Barnali Sarkar <barnali.sarkar at intel.com>
    Original-Reviewed-on: https://chromium-review.googlesource.com/297980
    Original-Commit-Ready: Subrata Banik <subrata.banik at intel.com>
    Original-Tested-by: Subrata Banik <subrata.banik at intel.com>
    Original-Reviewed-by: Aaron Durbin <adurbin at chromium.org>
---
 src/soc/intel/skylake/chip.c | 3 +++
 src/soc/intel/skylake/chip.h | 1 +
 2 files changed, 4 insertions(+)

diff --git a/src/soc/intel/skylake/chip.c b/src/soc/intel/skylake/chip.c
index afb0ff6..fd959b2 100644
--- a/src/soc/intel/skylake/chip.c
+++ b/src/soc/intel/skylake/chip.c
@@ -94,6 +94,7 @@ void soc_silicon_init_params(SILICON_INIT_UPD *params)
 	params->DspEnable = config->DspEnable;
 	params->XdciEnable = config->XdciEnable;
 	params->Device4Enable = config->Device4Enable;
+	params->RtcLock = config->RtcLock;
 
 	/* Show SPI controller if enabled in devicetree.cb */
 	dev = dev_find_slot(0, PCH_DEVFN_SPI);
@@ -265,6 +266,8 @@ void soc_display_silicon_init_params(const SILICON_INIT_UPD *original,
 		params->HsioMessaging);
 	soc_display_upd_value("Heci3Enabled", 1, original->Heci3Enabled,
 		params->Heci3Enabled);
+	soc_display_upd_value("RtcLock", 1, original->RtcLock,
+		params->RtcLock);
 }
 
 static void pci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
diff --git a/src/soc/intel/skylake/chip.h b/src/soc/intel/skylake/chip.h
index 94aa3a4..95f9502 100644
--- a/src/soc/intel/skylake/chip.h
+++ b/src/soc/intel/skylake/chip.h
@@ -229,6 +229,7 @@ struct soc_intel_skylake_config {
 	u32 LogoSize;
 	u32 GraphicsConfigPtr;
 	u8 Device4Enable;
+	u8 RtcLock;
 };
 
 typedef struct soc_intel_skylake_config config_t;



More information about the coreboot-gerrit mailing list