From: Lukasz Dalek <luk0104@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v5 2/3] pxa: Add code to examine cpu model and revision
Date: Wed, 3 Oct 2012 00:51:06 +0200 [thread overview]
Message-ID: <1349218267-23809-2-git-send-email-luk0104@gmail.com> (raw)
In-Reply-To: <1349218267-23809-1-git-send-email-luk0104@gmail.com>
Add function which return CPU model and revision which can be used for
cpu detection.
Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
---
Changes for v5:
- Changed commit message
arch/arm/cpu/pxa/cpuinfo.c | 11 +++++++++--
arch/arm/include/asm/arch-pxa/pxa.h | 13 +++++++++++++
2 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/arch/arm/cpu/pxa/cpuinfo.c b/arch/arm/cpu/pxa/cpuinfo.c
index f1cdd40..bab6340 100644
--- a/arch/arm/cpu/pxa/cpuinfo.c
+++ b/arch/arm/cpu/pxa/cpuinfo.c
@@ -24,9 +24,11 @@
#include <errno.h>
#include <linux/compiler.h>
-#define CPU_MASK_PXA_REVID 0x00f
+#define CPU_MASK_PXA_PRODID 0x000003f0
+#define CPU_MASK_PXA_REVID 0x0000000f
+
+#define CPU_MASK_PRODREV (CPU_MASK_PXA_PRODID | CPU_MASK_PXA_REVID)
-#define CPU_MASK_PXA_PRODID 0x3f0
#define CPU_VALUE_PXA25X 0x100
#define CPU_VALUE_PXA27X 0x110
@@ -51,6 +53,11 @@ int cpu_is_pxa27x(void)
return id == CPU_VALUE_PXA27X;
}
+uint32_t pxa_get_cpu_revision(void)
+{
+ return pxa_get_cpuid() & CPU_MASK_PRODREV;
+}
+
#ifdef CONFIG_DISPLAY_CPUINFO
static const char *pxa25x_get_revision(void)
{
diff --git a/arch/arm/include/asm/arch-pxa/pxa.h b/arch/arm/include/asm/arch-pxa/pxa.h
index 49c6552..b67d8f2 100644
--- a/arch/arm/include/asm/arch-pxa/pxa.h
+++ b/arch/arm/include/asm/arch-pxa/pxa.h
@@ -22,8 +22,21 @@
#ifndef __PXA_H__
#define __PXA_H__
+#define PXA255_A0 0x00000106
+#define PXA250_C0 0x00000105
+#define PXA250_B2 0x00000104
+#define PXA250_B1 0x00000103
+#define PXA250_B0 0x00000102
+#define PXA250_A1 0x00000101
+#define PXA250_A0 0x00000100
+#define PXA210_C0 0x00000125
+#define PXA210_B2 0x00000124
+#define PXA210_B1 0x00000123
+#define PXA210_B0 0x00000122
+
int cpu_is_pxa25x(void);
int cpu_is_pxa27x(void);
+uint32_t pxa_get_cpu_revision(void);
void pxa2xx_dram_init(void);
#endif /* __PXA_H__ */
--
1.7.8.6
next prev parent reply other threads:[~2012-10-02 22:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-02 22:51 [U-Boot] [PATCH v5 1/3] h2200: Add support for iPAQ h2200 palmtop Lukasz Dalek
2012-10-02 22:51 ` Lukasz Dalek [this message]
2012-10-02 22:51 ` [U-Boot] [PATCH v5 3/3] h2200: Add USB CDC ethernet support Lukasz Dalek
2012-10-03 0:06 ` Marek Vasut
2012-10-03 0:09 ` Łukasz Dałek
2012-10-03 0:18 ` Marek Vasut
2012-10-03 0:24 ` Łukasz Dałek
2012-10-03 0:25 ` Marek Vasut
2012-10-03 0:30 ` Łukasz Dałek
2012-10-03 1:04 ` Marek Vasut
2012-10-03 9:50 ` Łukasz Dałek
2012-10-03 18:20 ` [U-Boot] [PATCH v6] " Lukasz Dalek
2012-10-03 18:34 ` Marek Vasut
2012-10-03 19:02 ` Łukasz Dałek
2012-10-03 19:22 ` Marek Vasut
2012-10-03 19:25 ` Łukasz Dałek
2012-10-03 19:40 ` Marek Vasut
2012-10-03 19:44 ` Łukasz Dałek
2012-10-03 20:02 ` Marek Vasut
2012-10-03 21:10 ` Łukasz Dałek
2012-10-03 21:32 ` Marek Vasut
2012-10-03 21:46 ` [U-Boot] [PATCH v7] " Lukasz Dalek
2012-10-03 23:30 ` Marek Vasut
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=1349218267-23809-2-git-send-email-luk0104@gmail.com \
--to=luk0104@gmail.com \
--cc=u-boot@lists.denx.de \
/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