From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/8] ARM: smp: populate logical CPU mapping during boot
Date: Mon, 15 Aug 2011 18:30:46 +0100 [thread overview]
Message-ID: <1313429452-2820-3-git-send-email-will.deacon@arm.com> (raw)
In-Reply-To: <1313429452-2820-1-git-send-email-will.deacon@arm.com>
To allow booting Linux on a CPU with physical ID != 0, we need to
provide a mapping from the logical CPU number to the physical CPU
number.
This patch adds such a mapping and populates it during boot.
Signed-off-by: Will Deacon <will.deacon@arm.com>
---
arch/arm/include/asm/smp.h | 6 ++++++
arch/arm/kernel/smp.c | 15 +++++++++++++++
2 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/smp.h b/arch/arm/include/asm/smp.h
index e42d96a..674ebcd 100644
--- a/arch/arm/include/asm/smp.h
+++ b/arch/arm/include/asm/smp.h
@@ -66,6 +66,12 @@ extern void platform_secondary_init(unsigned int cpu);
extern void platform_smp_prepare_cpus(unsigned int);
/*
+ * Logical CPU mapping.
+ */
+extern int __cpu_logical_map[NR_CPUS];
+#define cpu_logical_map(cpu) __cpu_logical_map[cpu]
+
+/*
* Initial data for bringing up a secondary CPU.
*/
struct secondary_data {
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
index d88ff02..0016665 100644
--- a/arch/arm/kernel/smp.c
+++ b/arch/arm/kernel/smp.c
@@ -39,6 +39,7 @@
#include <asm/tlbflush.h>
#include <asm/ptrace.h>
#include <asm/localtimer.h>
+#include <asm/smp_plat.h>
/*
* as from 2.5, kernels no longer have an init_tasks structure
@@ -259,6 +260,20 @@ void __ref cpu_die(void)
}
#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
* per-processor storage.
--
1.7.0.4
next prev parent reply other threads:[~2011-08-15 17:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-15 17:30 [PATCH v2 0/8] Introduce logical CPU mapping Will Deacon
2011-08-15 17:30 ` [PATCH v2 1/8] ARM: cpuid: add support for reading MPIDR Will Deacon
2011-08-16 9:06 ` Vincent Guittot
2011-08-16 9:12 ` Will Deacon
2011-08-15 17:30 ` Will Deacon [this message]
2011-08-15 17:30 ` [PATCH v2 3/8] ARM: gic: convert logical CPU numbers into physical numbers Will Deacon
2011-08-15 17:30 ` [PATCH v2 4/8] ARM: exynos4: convert logical CPU numbers to " Will Deacon
2011-08-15 17:30 ` [PATCH v2 5/8] ARM: msm: " Will Deacon
2011-08-15 17:30 ` [PATCH v2 6/8] ARM: shmobile: " Will Deacon
2011-08-19 12:52 ` Will Deacon
2011-08-15 17:30 ` [PATCH v2 7/8] ARM: ux500: " Will Deacon
2011-08-15 17:30 ` [PATCH v2 8/8] ARM: versatile: " Will Deacon
[not found] <CADrkgWK=Or3=js81b2kRb1drwUsuSyxWFv2LkcKC673VgODK0A@mail.gmail.com>
2011-10-25 8:37 ` [PATCH v2 2/8] ARM: smp: populate logical CPU mapping during boot Will Deacon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1313429452-2820-3-git-send-email-will.deacon@arm.com \
--to=will.deacon@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).