[coreboot] Patch set updated for coreboot: 9c36aa5 drop use of MAX_PHYSICAL_CPUS and MAX_CPUS where not needed

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Wed Mar 7 02:12:10 CET 2012


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/760

-gerrit

commit 9c36aa5171f0a0810305ed71a781f9d78536907e
Author: Stefan Reinauer <reinauer at chromium.org>
Date:   Thu Dec 15 09:24:40 2011 -0800

    drop use of MAX_PHYSICAL_CPUS and MAX_CPUS where not needed
    
    Change-Id: Idf875ddec417e627f1e72a6d834860e7fd324a50
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
---
 src/cpu/x86/lapic/lapic_cpu_init.c |    6 ------
 src/cpu/x86/pae/Makefile.inc       |    2 +-
 2 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/src/cpu/x86/lapic/lapic_cpu_init.c b/src/cpu/x86/lapic/lapic_cpu_init.c
index fc22ea4..99c3c4e 100644
--- a/src/cpu/x86/lapic/lapic_cpu_init.c
+++ b/src/cpu/x86/lapic/lapic_cpu_init.c
@@ -363,9 +363,7 @@ void secondary_cpu_init(void)
 {
 	atomic_inc(&active_cpus);
 #if CONFIG_SERIAL_CPU_INIT == 1
-  #if CONFIG_MAX_CPUS>2
 	spin_lock(&start_cpu_lock);
-  #endif
 #endif
 
 #ifdef __SSE3__
@@ -380,9 +378,7 @@ void secondary_cpu_init(void)
 #endif
 	cpu_initialize();
 #if CONFIG_SERIAL_CPU_INIT == 1
-  #if CONFIG_MAX_CPUS>2
 	spin_unlock(&start_cpu_lock);
-  #endif
 #endif
 
 	atomic_dec(&active_cpus);
@@ -419,9 +415,7 @@ static void start_other_cpus(struct bus *cpu_bus, device_t bsp_cpu)
 				cpu->path.apic.apic_id);
 		}
 #if CONFIG_SERIAL_CPU_INIT == 1
-  #if CONFIG_MAX_CPUS>2
 		udelay(10);
-  #endif
 #endif
 	}
 
diff --git a/src/cpu/x86/pae/Makefile.inc b/src/cpu/x86/pae/Makefile.inc
index 0ecec47..060720c 100644
--- a/src/cpu/x86/pae/Makefile.inc
+++ b/src/cpu/x86/pae/Makefile.inc
@@ -1 +1 @@
-ramstage-y += pgtbl.c
+ramstage-$(CONFIG_CPU_AMD_MODEL_FXX) += pgtbl.c




More information about the coreboot mailing list