diff options
author | Andrey Petrov <anpetrov@fb.com> | 2019-10-28 15:11:16 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-05 14:59:59 +0000 |
commit | ddcfcb8ebc64d71717407607323fd18e29fa651e (patch) | |
tree | 05f0452bc0378bfc64b0704bbdb3de3dbc8c0576 /src | |
parent | 15fcc86907dc6f8f782cfdc98808f508aa66082c (diff) |
soc/intel/fsp_broadwell_de: Add CONFIG_IED_SIZE, drop CONFIG_SMM_TSEG_SIZE
Fix regression introduced in recent SMM region handling overhaul.
Previously IED region size was hardcoded in the code. However when
chip code was modified to use smm_region() and friends, IED_SIZE
define was not added and build system quetly substituted it with 0.
Also, drop CONFIG_SMM_TSEG_SIZE which is now obsolete.
TEST=tested on watson platform; without the patch tg3 NIC driver doesn't work
properly and that gets solved with this patch
Change-Id: Id6fb258e555bb507851886b0e75f1f53c3762276
Signed-off-by: Andrey Petrov <anpetrov@fb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36417
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/fsp_broadwell_de/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/fsp_broadwell_de/Kconfig b/src/soc/intel/fsp_broadwell_de/Kconfig index 4c50828e0d..b2f4968004 100644 --- a/src/soc/intel/fsp_broadwell_de/Kconfig +++ b/src/soc/intel/fsp_broadwell_de/Kconfig @@ -63,9 +63,9 @@ config VGA_BIOS bool default n -config SMM_TSEG_SIZE +config IED_REGION_SIZE hex - default 0x800000 + default 0x400000 config SMM_RESERVED_SIZE hex |