summaryrefslogtreecommitdiffstats
path: root/src/northbridge/amd/agesa/family14/Kconfig
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-05-16 14:55:46 +0200
committerMartin L Roth <gaumless@tutanota.com>2022-05-28 04:18:19 +0000
commit704ccafb392212cffc3810197da5cb2b619f1ba6 (patch)
tree7318075446c17ce7f64de57a7371135b8e542c72 /src/northbridge/amd/agesa/family14/Kconfig
parent8d3640d22610eeb9a21c803d75c698e681a1dc62 (diff)
downloadcoreboot-704ccafb392212cffc3810197da5cb2b619f1ba6.tar.gz
coreboot-704ccafb392212cffc3810197da5cb2b619f1ba6.tar.bz2
coreboot-704ccafb392212cffc3810197da5cb2b619f1ba6.zip
vendorcode/amd/agesa/f14: Fix improper use of .data
AGESA has a lot of code in the .data section which is for initialized data, that in fact should be .rodata. This adds the 'CONST' keyword everywhere it is needed. TEST: See in the .elf file (e.g. using readelf) that there is nothing in .data section. Change-Id: I657d09f05070f5a88a4a162872c961db869a8df3 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64399 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/agesa/family14/Kconfig')
-rw-r--r--src/northbridge/amd/agesa/family14/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/northbridge/amd/agesa/family14/Kconfig b/src/northbridge/amd/agesa/family14/Kconfig
index 941972b1a197..0e5a2bea6b51 100644
--- a/src/northbridge/amd/agesa/family14/Kconfig
+++ b/src/northbridge/amd/agesa/family14/Kconfig
@@ -17,4 +17,7 @@ config ECAM_MMCONF_BASE_ADDRESS
config ECAM_MMCONF_BUS_NUMBER
default 64
+config AGESA_BROKEN_DATA_SECTION
+ default n
+
endif # NORTHBRIDGE_AMD_AGESA_FAMILY14