From 7f5e73463882a92b64dc9f3ffd72a3bc0762300c Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 17 Apr 2018 10:55:14 -0600 Subject: cpu/x86: add pae paging module to all stages In preparation for bringing in paging early always provide the paging pae module to all stages. Since we cull unused symbols this is a no-op. Compilation testing will happen all the time since the module currently doesn't compile without include. The current file is completely guarded with ENV_RAMSTAGE because it's using cpu_index() which is a ramstage-only construct. BUG=b:72728953 Change-Id: Ib4310b8206e5247fa220b42203bcd18d522d51ea Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/25712 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Justin TerAvest --- src/cpu/x86/pae/Makefile.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/cpu/x86/pae/Makefile.inc') diff --git a/src/cpu/x86/pae/Makefile.inc b/src/cpu/x86/pae/Makefile.inc index 060720c898..62176d20b8 100644 --- a/src/cpu/x86/pae/Makefile.inc +++ b/src/cpu/x86/pae/Makefile.inc @@ -1 +1,6 @@ -ramstage-$(CONFIG_CPU_AMD_MODEL_FXX) += pgtbl.c +bootblock-y += pgtbl.c +verstage-y += pgtbl.c +romstage-y += pgtbl.c +postcar-y += pgtbl.c +ramstage-y += pgtbl.c +smm-y += pgtbl.c -- cgit v1.2.3