summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgowda <pgowda.cve@gmail.com>2021-12-21 02:41:36 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-14 09:34:04 +0000
commitc03cf58a20169ebcbc16798e1ada8c3294707b92 (patch)
tree159d537dfeae4f4d6dc1610748d419dc9d449b64
parent5f93a1c2ee139e49f21fe4b8a6bf47d4d02a547d (diff)
downloadpoky-c03cf58a20169ebcbc16798e1ada8c3294707b92.tar.gz
gcc: add aarch64 support for Arm's Neoverse N2 CPU
The patch backports the AArch64 support for Arm's Neoverse N2 CPU Upstream-Status: Backport [https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=9428e9267435a62f672e2ba42df46432c021a9cf] (From OE-Core rev: ae9b3b5a57682d9de93f3171cdb448a8f5cbc536) Signed-off-by: pgowda <pgowda.cve@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/gcc/gcc-10.2.inc1
-rw-r--r--meta/recipes-devtools/gcc/gcc/0039-arm64-neoverse-n2-support.patch60
2 files changed, 61 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-10.2.inc b/meta/recipes-devtools/gcc/gcc-10.2.inc
index 5626bf20f0..89158258d7 100644
--- a/meta/recipes-devtools/gcc/gcc-10.2.inc
+++ b/meta/recipes-devtools/gcc/gcc-10.2.inc
@@ -74,6 +74,7 @@ SRC_URI = "\
74 file://0002-CVE-2021-35465.patch \ 74 file://0002-CVE-2021-35465.patch \
75 file://0003-CVE-2021-35465.patch \ 75 file://0003-CVE-2021-35465.patch \
76 file://0004-CVE-2021-35465.patch \ 76 file://0004-CVE-2021-35465.patch \
77 file://0039-arm64-neoverse-n2-support.patch \
77" 78"
78SRC_URI[sha256sum] = "b8dd4368bb9c7f0b98188317ee0254dd8cc99d1e3a18d0ff146c855fe16c1d8c" 79SRC_URI[sha256sum] = "b8dd4368bb9c7f0b98188317ee0254dd8cc99d1e3a18d0ff146c855fe16c1d8c"
79 80
diff --git a/meta/recipes-devtools/gcc/gcc/0039-arm64-neoverse-n2-support.patch b/meta/recipes-devtools/gcc/gcc/0039-arm64-neoverse-n2-support.patch
new file mode 100644
index 0000000000..b3e0f396bd
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc/0039-arm64-neoverse-n2-support.patch
@@ -0,0 +1,60 @@
1From 9428e9267435a62f672e2ba42df46432c021a9cf Mon Sep 17 00:00:00 2001
2From: Alex Coplan <alex.coplan@arm.com>
3Date: Tue, 29 Sep 2020 17:09:09 +0100
4Subject: [PATCH] aarch64: Add support for Neoverse N2 CPU
5
6This patch backports the AArch64 support for Arm's Neoverse N2 CPU to
7GCC 10.
8
9gcc/ChangeLog:
10
11 * config/aarch64/aarch64-cores.def: Add Neoverse N2.
12 * config/aarch64/aarch64-tune.md: Regenerate.
13 * doc/invoke.texi: Document AArch64 support for Neoverse N2.
14
15Upstream-Status: Backport [https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=9428e9267435a62f672e2ba42df46432c021a9cf]
16
17Signed-off-by: pgowda <pgowda.cve@gmail.com>
18---
19 gcc/config/aarch64/aarch64-cores.def | 3 +++
20 gcc/config/aarch64/aarch64-tune.md | 2 +-
21 gcc/doc/invoke.texi | 4 ++--
22 3 files changed, 6 insertions(+), 3 deletions(-)
23
24diff --git a/gcc/config/aarch64/aarch64-cores.def b/gcc/config/aarch64/aarch64-cores.def
25--- a/gcc/config/aarch64/aarch64-cores.def 2020-07-22 23:35:17.320384289 -0700
26+++ b/gcc/config/aarch64/aarch64-cores.def 2021-12-21 01:08:45.518472342 -0800
27@@ -135,6 +135,9 @@ AARCH64_CORE("zeus", zeus, cortexa57, 8_
28 /* Qualcomm ('Q') cores. */
29 AARCH64_CORE("saphira", saphira, saphira, 8_4A, AARCH64_FL_FOR_ARCH8_4 | AARCH64_FL_CRYPTO | AARCH64_FL_RCPC, saphira, 0x51, 0xC01, -1)
30
31+/* Armv8.5-A Architecture Processors. */
32+AARCH64_CORE("neoverse-n2", neoversen2, cortexa57, 8_5A, AARCH64_FL_FOR_ARCH8_5 | AARCH64_FL_I8MM | AARCH64_FL_BF16 | AARCH64_FL_F16 | AARCH64_FL_SVE | AARCH64_FL_SVE2 | AARCH64_FL_SVE2_BITPERM | AARCH64_FL_RNG | AARCH64_FL_MEMTAG, neoversen1, 0x41, 0xd49, -1)
33+
34 /* ARMv8-A big.LITTLE implementations. */
35
36 AARCH64_CORE("cortex-a57.cortex-a53", cortexa57cortexa53, cortexa53, 8A, AARCH64_FL_FOR_ARCH8 | AARCH64_FL_CRC, cortexa57, 0x41, AARCH64_BIG_LITTLE (0xd07, 0xd03), -1)
37diff --git a/gcc/config/aarch64/aarch64-tune.md b/gcc/config/aarch64/aarch64-tune.md
38--- a/gcc/config/aarch64/aarch64-tune.md 2020-07-22 23:35:54.684795913 -0700
39+++ b/gcc/config/aarch64/aarch64-tune.md 2021-12-21 01:09:56.829252050 -0800
40@@ -1,5 +1,5 @@
41 ;; -*- buffer-read-only: t -*-
42 ;; Generated automatically by gentune.sh from aarch64-cores.def
43 (define_attr "tune"
44- "cortexa34,cortexa35,cortexa53,cortexa57,cortexa72,cortexa73,thunderx,thunderxt88p1,thunderxt88,octeontx,octeontxt81,octeontxt83,thunderxt81,thunderxt83,emag,xgene1,falkor,qdf24xx,exynosm1,phecda,thunderx2t99p1,vulcan,thunderx2t99,cortexa55,cortexa75,cortexa76,cortexa76ae,cortexa77,cortexa65,cortexa65ae,ares,neoversen1,neoversee1,octeontx2,octeontx2t98,octeontx2t96,octeontx2t93,octeontx2f95,octeontx2f95n,octeontx2f95mm,tsv110,thunderx3t110,zeus,saphira,cortexa57cortexa53,cortexa72cortexa53,cortexa73cortexa35,cortexa73cortexa53,cortexa75cortexa55,cortexa76cortexa55"
45+ "cortexa34,cortexa35,cortexa53,cortexa57,cortexa72,cortexa73,thunderx,thunderxt88p1,thunderxt88,octeontx,octeontxt81,octeontxt83,thunderxt81,thunderxt83,emag,xgene1,falkor,qdf24xx,exynosm1,phecda,thunderx2t99p1,vulcan,thunderx2t99,cortexa55,cortexa75,cortexa76,cortexa76ae,cortexa77,cortexa65,cortexa65ae,ares,neoversen1,neoversee1,octeontx2,octeontx2t98,octeontx2t96,octeontx2t93,octeontx2f95,octeontx2f95n,octeontx2f95mm,tsv110,thunderx3t110,zeus,neoversen2,saphira,cortexa57cortexa53,cortexa72cortexa53,cortexa73cortexa35,cortexa73cortexa53,cortexa75cortexa55,cortexa76cortexa55"
46 (const (symbol_ref "((enum attr_tune) aarch64_tune)")))
47diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
48--- a/gcc/doc/invoke.texi 2021-12-21 00:50:18.345426447 -0800
49+++ b/gcc/doc/invoke.texi 2021-12-21 01:11:18.547853686 -0800
50@@ -17010,8 +17010,8 @@ performance of the code. Permissible va
51 @samp{cortex-a57}, @samp{cortex-a72}, @samp{cortex-a73}, @samp{cortex-a75},
52 @samp{cortex-a76}, @samp{cortex-a76ae}, @samp{cortex-a77},
53 @samp{cortex-a65}, @samp{cortex-a65ae}, @samp{cortex-a34},
54-@samp{ares}, @samp{exynos-m1}, @samp{emag}, @samp{falkor},
55-@samp{neoverse-e1},@samp{neoverse-n1},@samp{qdf24xx}, @samp{saphira},
56+@samp{ares}, @samp{exynos-m1}, @samp{emag}, @samp{falkor}, @samp{neoverse-e1},
57+@samp{neoverse-n1}, @samp{neoverse-n2}, @samp{qdf24xx}, @samp{saphira},
58 @samp{phecda}, @samp{xgene1}, @samp{vulcan}, @samp{octeontx},
59 @samp{octeontx81}, @samp{octeontx83},
60 @samp{octeontx2}, @samp{octeontx2t98}, @samp{octeontx2t96}