diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-11-19 18:54:35 +0100 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-11-21 06:47:43 +0000 |
commit | 15c012181d073ff68ee8fb5635ed9bde2b4fe23d (patch) | |
tree | c592a762e6e3dbca20d52dc2d36166adfa033023 /src/security/memory | |
parent | f67c81fc7030e278cf3dbc906f9ba5e265d843f0 (diff) |
drivers/intel/fsp1_0: Drop support
No platform is using this.
Change-Id: I3ea6df4d9ce9043755f319f699adc189d754df1f
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36985
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/security/memory')
-rw-r--r-- | src/security/memory/memory_clear.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/security/memory/memory_clear.c b/src/security/memory/memory_clear.c index 45bee91036..255ddccfaa 100644 --- a/src/security/memory/memory_clear.c +++ b/src/security/memory/memory_clear.c @@ -97,12 +97,6 @@ static void clear_memory(void *unused) cbmem_get_region(&baseptr, &size); memranges_insert(&mem, (uintptr_t)baseptr, size, BM_MEM_TABLE); - if (CONFIG(PLATFORM_USES_FSP1_0)) { - /* Protect CBMEM pointer */ - memranges_insert(&mem, CBMEM_FSP_HOB_PTR, sizeof(void *), - BM_MEM_TABLE); - } - if (CONFIG(ARCH_X86)) { /* Find space for PAE enabled memset */ pgtbl = get_free_memory_range(&mem, MEMSET_PAE_PGTL_ALIGN, |