diff options
author | Eric Biederman <ebiederm@xmission.com> | 2004-10-16 08:38:58 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2004-10-16 08:38:58 +0000 |
commit | f3ed1cfad748bf5610d315afba7ec04d6338bd9b (patch) | |
tree | 53c56bca5bc651c1e4f129c49d6083033f8273bf /src/arch/i386/smp | |
parent | 7003ba4a88a847707c55d593e517eaa70fc8c63d (diff) |
- 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
Diffstat (limited to 'src/arch/i386/smp')
-rw-r--r-- | src/arch/i386/smp/mpspec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |