|
@@ -40,6 +40,7 @@
|
|
#include <asm/tlbflush.h>
|
|
#include <asm/tlbflush.h>
|
|
#include <asm/ptrace.h>
|
|
#include <asm/ptrace.h>
|
|
#include <asm/localtimer.h>
|
|
#include <asm/localtimer.h>
|
|
|
|
+#include <asm/smp_plat.h>
|
|
|
|
|
|
/*
|
|
/*
|
|
* as from 2.5, kernels no longer have an init_tasks structure
|
|
* as from 2.5, kernels no longer have an init_tasks structure
|
|
@@ -260,6 +261,20 @@ void __ref cpu_die(void)
|
|
}
|
|
}
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
|
|
|
|
+int __cpu_logical_map[NR_CPUS];
|
|
|
|
+
|
|
|
|
+void __init smp_setup_processor_id(void)
|
|
|
|
+{
|
|
|
|
+ int i;
|
|
|
|
+ u32 cpu = is_smp() ? read_cpuid_mpidr() & 0xff : 0;
|
|
|
|
+
|
|
|
|
+ cpu_logical_map(0) = cpu;
|
|
|
|
+ for (i = 1; i < NR_CPUS; ++i)
|
|
|
|
+ cpu_logical_map(i) = i == cpu ? 0 : i;
|
|
|
|
+
|
|
|
|
+ printk(KERN_INFO "Booting Linux on physical CPU %d\n", cpu);
|
|
|
|
+}
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* Called by both boot and secondaries to move global data into
|
|
* Called by both boot and secondaries to move global data into
|
|
* per-processor storage.
|
|
* per-processor storage.
|