From f3ed1cfad748bf5610d315afba7ec04d6338bd9b Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Sat, 16 Oct 2004 08:38:58 +0000 Subject: - HDAMA boots! - Set the bootstrap processor flag in the mptable. - Implement 64bit support in our print statements - Fix the reporting of how many cpus we are waiting to stop. It is the 1 less than the actual number of cpus running. - Actually enable cpu_initialization. - Fix firstsiblingdevice in config.g - Add IORESOURCE_FIXED to all of the resources set by config.g - Fix the apic_cluster rule to add an apic_cluster path not an apic path. - Add a div64.h to assist in the 64bit printf. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1682 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/smp/mpspec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/i386/smp') diff --git a/src/arch/i386/smp/mpspec.c b/src/arch/i386/smp/mpspec.c index c674cf58f5..daeb78435d 100644 --- a/src/arch/i386/smp/mpspec.c +++ b/src/arch/i386/smp/mpspec.c @@ -121,7 +121,7 @@ void smp_write_processors(struct mp_config_table *mc) } cpu_flag = MPC_CPU_ENABLED; if (boot_apic_id == cpu->path.u.apic.apic_id) { - cpu_flag = MPC_CPU_ENABLED; + cpu_flag = MPC_CPU_ENABLED | MPC_CPU_BOOTPROCESSOR; } smp_write_processor(mc, cpu->path.u.apic.apic_id, apic_version, -- cgit v1.2.3