ARM: kernel: smp_setup_processor_id() updates
authorLorenzo Pieralisi <[email protected]>
Thu, 8 Nov 2012 18:05:56 +0000 (18:05 +0000)
committerLorenzo Pieralisi <[email protected]>
Mon, 19 Nov 2012 15:44:33 +0000 (15:44 +0000)
This patch applies some basic changes to the smp_setup_processor_id()
ARM implementation to make the code that builds cpu_logical_map more
uniform across the kernel.

The function now prints the full extent of the boot CPU MPIDR[23:0] and
initializes the cpu_logical_map for CPUs up to nr_cpu_ids.

Signed-off-by: Lorenzo Pieralisi <[email protected]>
Acked-by: Nicolas Pitre <[email protected]>
Acked-by: Will Deacon <[email protected]>
arch/arm/kernel/setup.c

index da1d1aa20ad957ccd7021815014d12530de4f3a1..4515bf6abee0e0ad326e0d80464530971786e9a5 100644 (file)
@@ -426,13 +426,14 @@ int __cpu_logical_map[NR_CPUS];
 void __init smp_setup_processor_id(void)
 {
        int i;
-       u32 cpu = is_smp() ? read_cpuid_mpidr() & 0xff : 0;
+       u32 mpidr = is_smp() ? read_cpuid_mpidr() & MPIDR_HWID_BITMASK : 0;
+       u32 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
 
        cpu_logical_map(0) = cpu;
-       for (i = 1; i < NR_CPUS; ++i)
+       for (i = 1; i < nr_cpu_ids; ++i)
                cpu_logical_map(i) = i == cpu ? 0 : i;
 
-       printk(KERN_INFO "Booting Linux on physical CPU %d\n", cpu);
+       printk(KERN_INFO "Booting Linux on physical CPU 0x%x\n", mpidr);
 }
 
 static void __init setup_processor(void)