This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [AArch64] Add support for the Samsung Exynos M1 processor


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=2412d878342e6fc36caf314826d6bfa8292d84c6

commit 2412d878342e6fc36caf314826d6bfa8292d84c6
Author: Evandro Menezes <emenezes@osdn.samsung.com>
Date:   Thu Mar 26 15:18:08 2015 -0500

    [AArch64] Add support for the Samsung Exynos M1 processor
    
    2015-03-26  Evandro Menezes  <e.menezes@samsung.com>
    
    gas/
    	* config/tc-aarch64.c: Add support for Samsung Exynos M1.
    	* doc/c-aarch64.texi (-mcpu=): Add "exynos-m1".

Diff:
---
 gas/ChangeLog           | 5 +++++
 gas/config/tc-aarch64.c | 3 +++
 gas/doc/c-aarch64.texi  | 1 +
 3 files changed, 9 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index b80ca11..2fa2313 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2015-04-01  Evandro Menezes  <e.menezes@samsung.com>
 
+	* config/tc-aarch64.c: Add support for Samsung Exynos M1.
+	* doc/c-aarch64.texi (-mcpu=): Add "exynos-m1".
+
+2015-04-01  Evandro Menezes  <e.menezes@samsung.com>
+
 	* config/tc-arm.c: Add support for Samsung Exynos M1.
 	* doc/c-arm.texi (-mcpu=): Add "exynos-m1".
 
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index ef4fae8..32ae6d4 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7320,6 +7320,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
 				  AARCH64_FEATURE_CRC), "Cortex-A57"},
   {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8,
 				  AARCH64_FEATURE_CRC), "Cortex-A72"},
+  {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8,
+				 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+				"Samsung Exynos M1"},
   {"thunderx", AARCH64_ARCH_V8, "Cavium ThunderX"},
   /* The 'xgene-1' name is an older name for 'xgene1', which was used
      in earlier releases and is superseded by 'xgene1' in all
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index ce3694a..79fe168 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -58,6 +58,7 @@ on the target processor.  The following processor names are recognized:
 @code{cortex-a53},
 @code{cortex-a57},
 @code{cortex-a72},
+@code{exynos-m1},
 @code{thunderx},
 @code{xgene1}
 and


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]