Message ID | 1548929512-30408-1-git-send-email-phil.yang@arm.com |
---|---|
State | New |
Delegated to: | Thomas Monjalon |
Headers | show |
Series |
|
Related | show |
Context | Check | Description |
---|---|---|
ci/mellanox-Performance-Testing | success | Performance Testing PASS |
ci/intel-Performance-Testing | success | Performance Testing PASS |
ci/Intel-compilation | success | Compilation OK |
ci/checkpatch | success | coding style OK |
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']],