config/arm: add Qualcomm
authorHonnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Fri, 5 Feb 2021 22:33:10 +0000 (16:33 -0600)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 10 Feb 2021 10:29:32 +0000 (11:29 +0100)
Add Qualcomm config back which was deleted.

Fixes: 91c730fd4e09 ("config/arm: remove unused or superfluous variables")

Signed-off-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
config/arm/meson.build

index f948768..00bc461 100644 (file)
@@ -147,6 +147,20 @@ implementer_ampere = {
        }
 }
 
+implementer_qualcomm = {
+       'description': 'Qualcomm',
+       'flags': [
+               ['RTE_MACHINE', '"armv8a"'],
+               ['RTE_USE_C11_MEM_MODEL', true],
+               ['RTE_CACHE_LINE_SIZE', 64],
+               ['RTE_MAX_LCORE', 64],
+               ['RTE_MAX_NUMA_NODES', 1]
+       ],
+       'part_number_config': {
+               '0xc00': {'machine_args':  ['-march=armv8-a+crc']}
+       }
+}
+
 implementer_marvell = {
        'description': 'Marvell ARMADA',
        'flags': [
@@ -177,6 +191,7 @@ implementers = {
        '0x41': implementer_arm,
        '0x43': implementer_cavium,
        '0x50': implementer_ampere,
+       '0x51': implementer_qualcomm,
        '0x56': implementer_marvell,
        'dpaa': implementer_dpaa
 }