summaryrefslogtreecommitdiffstats
path: root/src/cpu
diff options
context:
space:
mode:
authorBora Guvendik <bora.guvendik@intel.com>2024-03-18 13:38:28 -0700
committerJérémy Compostella <jeremy.compostella@intel.com>2024-03-19 15:03:18 +0000
commitde37be8a1afd3ce676142bf75b975cc6e4f26dcd (patch)
treeb7fe0df14f3d30ec10b769fa92df776f726b96c6 /src/cpu
parenta7fbef4c19d596f759c50c5790dd6da9fe7dc658 (diff)
downloadcoreboot-de37be8a1afd3ce676142bf75b975cc6e4f26dcd.tar.gz
coreboot-de37be8a1afd3ce676142bf75b975cc6e4f26dcd.tar.bz2
coreboot-de37be8a1afd3ce676142bf75b975cc6e4f26dcd.zip
cpu/x86: Use correct config flag for 1GiB page table
The commit below uses USE_1G_PAGETABLES config flag instead of the correct USE_1G_PAGES_TLB. "commit ecbc243a45de3b7894e2fe6c8e22b5d07172274b ("cpu/x86: Add 1GiB pages for memory access up to 512GiB")" Signed-off-by: Bora Guvendik <bora.guvendik@intel.com> Change-Id: Ic19812bc1f90cbe7d3739c42a0314b3650e0501d Reviewed-on: https://review.coreboot.org/c/coreboot/+/81343 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/x86/64bit/Makefile.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/64bit/Makefile.mk b/src/cpu/x86/64bit/Makefile.mk
index 680ab2d42a35..a8dc1a286af4 100644
--- a/src/cpu/x86/64bit/Makefile.mk
+++ b/src/cpu/x86/64bit/Makefile.mk
@@ -3,7 +3,7 @@
all_x86-y += mode_switch.S
all_x86-y += mode_switch2.S
-ifeq ($(CONFIG_USE_1G_PAGETABLES),y)
+ifeq ($(CONFIG_USE_1G_PAGES_TLB),y)
PAGETABLE_SRC := pt1G.S
else
PAGETABLE_SRC := pt.S