summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/hwcap.h
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2011-06-03 14:15:22 +0100
committerWill Deacon <will.deacon@arm.com>2011-07-07 19:20:51 +0100
commit254cdf8ec39653d19cce71b6622f38a6b62ac3a8 (patch)
tree95fef4b85d2a490f1a27668f1d3d960d2063cf86 /arch/arm/include/asm/hwcap.h
parent194a7f720f6f009867a01b760f311b68f1e81872 (diff)
ARM: hwcaps: add new HWCAP defines for ARMv7-A
Modern ARMv7-A cores can optionally implement these new hardware features: - VFPv4: The latest version of the ARMv7 vector floating-point extensions, including hardware support for fused multiple accumulate. D16 or D32 variants may be implemented. - Integer divide: The SDIV and UDIV instructions provide signed and unsigned integer division in hardware. When implemented, these instructions may be available in either both Thumb and ARM, or Thumb only. This patch adds new HWCAP defines to describe these new features. The integer divide capabilities are split into two bits for ARM and Thumb respectively. Whilst HWCAP_IDIVA should never be set if HWCAP_IDIVT is clear, separating the bits makes it easier to interpret from userspace. Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/include/asm/hwcap.h')
-rw-r--r--arch/arm/include/asm/hwcap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/include/asm/hwcap.h b/arch/arm/include/asm/hwcap.h
index 81512db2b628..c93a22a8b924 100644
--- a/arch/arm/include/asm/hwcap.h
+++ b/arch/arm/include/asm/hwcap.h
@@ -20,6 +20,10 @@
#define HWCAP_VFPv3 (1 << 13)
#define HWCAP_VFPv3D16 (1 << 14)
#define HWCAP_TLS (1 << 15)
+#define HWCAP_VFPv4 (1 << 16)
+#define HWCAP_IDIVA (1 << 17)
+#define HWCAP_IDIVT (1 << 18)
+#define HWCAP_IDIV (HWCAP_IDIVA | HWCAP_IDIVT)
#if defined(__KERNEL__) && !defined(__ASSEMBLY__)
/*