diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-05-24 10:49:50 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-06-04 11:06:58 -0400 |
commit | 0673b7870063a3affbad9046fb6d385a4e734c19 (patch) | |
tree | 4aaa57d88e3f8e35930600bbe5e64762fd1ca971 /src/util.h | |
parent | 31bcda20eff45de7fdd2aad30d42f28165ccd69a (diff) | |
download | seabios-0673b7870063a3affbad9046fb6d385a4e734c19.tar.gz |
smp: Replace QEMU SMP init assembler code with C; run only in 32bit mode.
Change the multi-processor init code to trampoline into 32bit mode on
each of the additional processors. Implement an atomic lock so that
each processor performs its initialization serially.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -125,7 +125,6 @@ void smm_device_setup(void); void smm_setup(void); // fw/smp.c -extern u32 CountCPUs; extern u32 MaxCountCPUs; void wrmsr_smp(u32 index, u64 val); void smp_setup(void); |