diff options
author | Varshit Pandya <pandyavarshit@gmail.com> | 2023-11-02 19:21:01 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-11-13 15:14:55 +0000 |
commit | 2edcd93c12df65398279235229f5654119ea4167 (patch) | |
tree | c9c5314837b6973e35d47b217b02d3648c9ab70e /src/soc | |
parent | 4f1dda7447025e42b73a31307db94c69fa5d277e (diff) |
soc/amd/genoa: Double HEAP_SIZE to 0x200000
Default value of HEAP_SIZE is 0x100000, since genoa has a lot of
CPU increase the HEAP_SIZE to 0x200000
Change-Id: Idd707200fe72730849267cd3cafc40e44f1f8c5d
Signed-off-by: Varshit Pandya <pandyavarshit@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78894
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/genoa/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/amd/genoa/Kconfig b/src/soc/amd/genoa/Kconfig index 2e80af4140..2e30df749c 100644 --- a/src/soc/amd/genoa/Kconfig +++ b/src/soc/amd/genoa/Kconfig @@ -152,4 +152,9 @@ config PSP_SOFTFUSE_BITS endmenu +#TODO: Check if the value of HEAP_SIZE is optimal +config HEAP_SIZE + hex + default 0x200000 + endif # SOC_AMD_GENOA |