Add support for Cortex-A53 and Cortex-A57.

This commit is contained in:
Ramana Radhakrishnan 2013-03-28 11:00:15 +00:00
parent e21e1a5196
commit 92eb40d9df
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-03-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* config/tc-arm.c (arm_cpus): Add support for Cortex-A53 and
Cortex-A57.
2013-03-27 Alexis Deruelle <alexis.deruelle@gmail.com>
PR binutils/15068

View File

@ -23966,6 +23966,10 @@ static const struct arm_cpu_option_table arm_cpus[] =
ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT,
FPU_ARCH_NEON_VFP_V4,
"Cortex-A15"),
ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
"Cortex-A53"),
ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
"Cortex-A57"),
ARM_CPU_OPT ("cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"),
ARM_CPU_OPT ("cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16,
"Cortex-R4F"),