[coreboot-gerrit] New patch to review for coreboot: 97adc6a intel/fsp_baytrail: Fix default SMM_TSEG_SIZE value

d imhoff (dimhoff_devel@xs4all.nl) gerrit at coreboot.org
Wed Apr 22 18:12:07 CEST 2015


d imhoff (dimhoff_devel at xs4all.nl) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9961

-gerrit

commit 97adc6a9ab2c2bf2617f70ec721af4c1f4b472b3
Author: David Imhoff <dimhoff_devel at xs4all.nl>
Date:   Wed Apr 22 17:24:26 2015 +0200

    intel/fsp_baytrail: Fix default SMM_TSEG_SIZE value
    
    The value of SMM_TSEG_SIZE was equal to SMM_RESERVED_SIZE. This caused
    the install_permanent_handler() function to fail. Changed the value to
    0x800000, which is already used as default in smm_region_size() in case
    SMM_TSEG_SIZE is 0.
    
    Change-Id: I4ff3568aefd4729a98c1777a2cae2a4715afbc2f
    Signed-off-by: David Imhoff <dimhoff_devel at xs4all.nl>
---
 src/soc/intel/fsp_baytrail/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/soc/intel/fsp_baytrail/Kconfig b/src/soc/intel/fsp_baytrail/Kconfig
index d97879f..4881d8d 100644
--- a/src/soc/intel/fsp_baytrail/Kconfig
+++ b/src/soc/intel/fsp_baytrail/Kconfig
@@ -72,7 +72,7 @@ config CPU_ADDR_BITS
 
 config SMM_TSEG_SIZE
 	hex
-	default 0x100000
+	default 0x800000
 	help
 	  This is set by the FSP
 



More information about the coreboot-gerrit mailing list