Add generic V2 CPU SoC. This will allow for compiling a binary that will run on any SoC that uses V2 CPU.
Signed-off-by: Honnappa Nagarahalli <honnappa.nagaraha...@arm.com> Reviewed-by: Wathsala Vithanage <wathsala.vithan...@arm.com> --- config/arm/arm64_v2_linux_gcc | 16 ++++++++++++++++ config/arm/meson.build | 9 +++++++++ 2 files changed, 25 insertions(+) create mode 100644 config/arm/arm64_v2_linux_gcc diff --git a/config/arm/arm64_v2_linux_gcc b/config/arm/arm64_v2_linux_gcc new file mode 100644 index 0000000000..50d9be3da3 --- /dev/null +++ b/config/arm/arm64_v2_linux_gcc @@ -0,0 +1,16 @@ +[binaries] +c = ['ccache', 'aarch64-linux-gnu-gcc'] +cpp = ['ccache', 'aarch64-linux-gnu-g++'] +ar = 'aarch64-linux-gnu-gcc-ar' +strip = 'aarch64-linux-gnu-strip' +pkgconfig = 'aarch64-linux-gnu-pkg-config' +pcap-config = '' + +[host_machine] +system = 'linux' +cpu_family = 'aarch64' +cpu = 'armv9-a' +endian = 'little' + +[properties] +platform = 'v2' diff --git a/config/arm/meson.build b/config/arm/meson.build index 18b595ead1..f096ed9ebf 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -527,6 +527,13 @@ soc_bluefield3 = { 'numa': false } +soc_v2 = { + 'description': 'Arm Neoverse V2', + 'implementer': '0x41', + 'part_number': '0xd4f', + 'numa': true +} + ''' Start of SoCs list generic: Generic un-optimized build for armv8 aarch64 execution mode. @@ -555,6 +562,7 @@ stingray: Broadcom Stingray thunderx2: Marvell ThunderX2 T99 thunderxt88: Marvell ThunderX T88 thunderxt83: Marvell ThunderX T83 +v2: Arm Neoverse V2 End of SoCs list ''' # The string above is included in the documentation, keep it in sync with the @@ -586,6 +594,7 @@ socs = { 'thunderx2': soc_thunderx2, 'thunderxt88': soc_thunderxt88, 'thunderxt83': soc_thunderxt83, + 'v2': soc_v2, } dpdk_conf.set('RTE_ARCH_ARM', 1) -- 2.34.1