build: add meson support for cortex a55 and a76 platforms

Message ID 1548929512-30408-1-git-send-email-phil.yang@arm.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series build: add meson support for cortex a55 and a76 platforms |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/intel-Performance-Testing success Performance Testing PASS
ci/mellanox-Performance-Testing success Performance Testing PASS

Commit Message

Phil Yang Jan. 31, 2019, 10:11 a.m. UTC
  Enable native/cross compiling for Cortex-A55 and Cortex-A76 on meson.

Signed-off-by: Phil Yang <phil.yang@arm.com>
Reviewed-by: Ola Liljedahl <ola.liljedahl@arm.com>
Reviewed-by: Gavin Hu <gavin.hu@arm.com>
---
 config/arm/arm64_armv8_linuxapp_gcc | 2 ++
 config/arm/meson.build              | 2 ++
 2 files changed, 4 insertions(+)
  

Comments

Thomas Monjalon March 1, 2019, 1:29 p.m. UTC | #1
31/01/2019 11:11, Phil Yang:
> Enable native/cross compiling for Cortex-A55 and Cortex-A76 on meson.
> 
> Signed-off-by: Phil Yang <phil.yang@arm.com>
> Reviewed-by: Ola Liljedahl <ola.liljedahl@arm.com>
> Reviewed-by: Gavin Hu <gavin.hu@arm.com>
> ---
>  config/arm/arm64_armv8_linuxapp_gcc | 2 ++
>  config/arm/meson.build              | 2 ++
>  2 files changed, 4 insertions(+)

Applied, thanks.

Some thoughts:
- Can we merge support for cross and native compilation in one place?
- Why isn't it native in Meson?
  
Bruce Richardson March 1, 2019, 1:38 p.m. UTC | #2
On Fri, Mar 01, 2019 at 02:29:50PM +0100, Thomas Monjalon wrote:
> 31/01/2019 11:11, Phil Yang:
> > Enable native/cross compiling for Cortex-A55 and Cortex-A76 on meson.
> > 
> > Signed-off-by: Phil Yang <phil.yang@arm.com>
> > Reviewed-by: Ola Liljedahl <ola.liljedahl@arm.com>
> > Reviewed-by: Gavin Hu <gavin.hu@arm.com>
> > ---
> >  config/arm/arm64_armv8_linuxapp_gcc | 2 ++
> >  config/arm/meson.build              | 2 ++
> >  2 files changed, 4 insertions(+)
> 
> Applied, thanks.
> 
> Some thoughts:
> - Can we merge support for cross and native compilation in one place?
> - Why isn't it native in Meson?
> 
I believe there is some work being done upstream on meson to make native
and cross builds more similar, but I'm not sure of the exact scope of that
work.

/Bruce
  

Patch

diff --git a/config/arm/arm64_armv8_linuxapp_gcc b/config/arm/arm64_armv8_linuxapp_gcc
index 987c02f..da66d59 100644
--- a/config/arm/arm64_armv8_linuxapp_gcc
+++ b/config/arm/arm64_armv8_linuxapp_gcc
@@ -17,8 +17,10 @@  implementor_id = 'generic'
 # 'default': valid for all armv8-a architectures (default value)
 # '0xd03':   cortex-a53
 # '0xd04':   cortex-a35
+# '0xd05':   cortex-a55
 # '0xd07':   cortex-a57
 # '0xd08':   cortex-a72
 # '0xd09':   cortex-a73
 # '0xd0a':   cortex-a75
+# '0xd0b':   cortex-a76
 implementor_pn = 'default'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index dae55d6..97e4e0d 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -12,10 +12,12 @@  machine_args_generic = [
 	['native', ['-march=native']],
 	['0xd03', ['-mcpu=cortex-a53']],
 	['0xd04', ['-mcpu=cortex-a35']],
+	['0xd05', ['-mcpu=cortex-a55']],
 	['0xd07', ['-mcpu=cortex-a57']],
 	['0xd08', ['-mcpu=cortex-a72']],
 	['0xd09', ['-mcpu=cortex-a73']],
 	['0xd0a', ['-mcpu=cortex-a75']],
+	['0xd0b', ['-mcpu=cortex-a76']],
 ]
 machine_args_cavium = [
 	['default', ['-march=armv8-a+crc+crypto','-mcpu=thunderx']],