From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 1/8] ARM: cpuid: add support for reading MPIDR
Date: Tue, 9 Aug 2011 22:42:35 +0100 [thread overview]
Message-ID: <1312926162-22469-2-git-send-email-will.deacon@arm.com> (raw)
In-Reply-To: <1312926162-22469-1-git-send-email-will.deacon@arm.com>
The MPIDR register forms part of the CPUID interface and allows software
to determine the physical ID of the CPU on which it is currently
executing.
This patch adds support for reading the MPIDR to cputype.h
Signed-off-by: Will Deacon <will.deacon@arm.com>
---
arch/arm/include/asm/cputype.h | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/cputype.h b/arch/arm/include/asm/cputype.h
index cd4458f..cb47d28 100644
--- a/arch/arm/include/asm/cputype.h
+++ b/arch/arm/include/asm/cputype.h
@@ -8,6 +8,7 @@
#define CPUID_CACHETYPE 1
#define CPUID_TCM 2
#define CPUID_TLBTYPE 3
+#define CPUID_MPIDR 5
#define CPUID_EXT_PFR0 "c1, 0"
#define CPUID_EXT_PFR1 "c1, 1"
@@ -70,6 +71,11 @@ static inline unsigned int __attribute_const__ read_cpuid_tcmstatus(void)
return read_cpuid(CPUID_TCM);
}
+static inline unsigned int __attribute_const__ read_cpuid_mpidr(void)
+{
+ return read_cpuid(CPUID_MPIDR);
+}
+
/*
* Intel's XScale3 core supports some v6 features (supersections, L2)
* but advertises itself as v5 as it does not support the v6 ISA. For
--
1.7.0.4
next prev parent reply other threads:[~2011-08-09 21:42 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-09 21:42 [RFC PATCH 0/8] Introduce logical CPU mapping Will Deacon
2011-08-09 21:42 ` Will Deacon [this message]
2011-08-09 21:42 ` [RFC PATCH 2/8] ARM: smp: populate logical CPU mapping during boot Will Deacon
2011-08-09 21:42 ` [RFC PATCH 3/8] ARM: gic: convert logical CPU numbers into physical numbers Will Deacon
2011-08-11 15:04 ` Will Deacon
2011-08-09 21:42 ` [RFC PATCH 4/8] ARM: exynos4: convert logical CPU numbers to " Will Deacon
2011-08-10 1:07 ` Kyungmin Park
2011-08-10 8:46 ` Will Deacon
2011-08-10 8:49 ` Kyungmin Park
2011-08-10 8:57 ` Will Deacon
2011-08-09 21:42 ` [RFC PATCH 5/8] ARM: msm: " Will Deacon
2011-08-09 22:26 ` David Brown
2011-08-10 8:42 ` Will Deacon
2011-08-10 15:51 ` David Brown
2011-08-09 21:42 ` [RFC PATCH 6/8] ARM: shmobile: " Will Deacon
2011-08-09 21:42 ` [RFC PATCH 7/8] ARM: ux500: " Will Deacon
2011-08-11 13:31 ` Linus Walleij
2011-08-09 21:42 ` [RFC PATCH 8/8] ARM: versatile: " Will Deacon
2011-08-10 8:50 ` [RFC PATCH 0/8] Introduce logical CPU mapping Santosh
2011-08-10 8:58 ` 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=1312926162-22469-2-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).