net/octeontx2: create security context
[dpdk.git] / drivers / net / octeontx2 / meson.build
index 0d0ca32..dfbf99a 100644 (file)
@@ -2,8 +2,42 @@
 # Copyright(C) 2019 Marvell International Ltd.
 #
 
-sources = files(
+sources = files('otx2_rx.c',
+               'otx2_tx.c',
+               'otx2_tm.c',
+               'otx2_rss.c',
+               'otx2_mac.c',
+               'otx2_ptp.c',
+               'otx2_flow.c',
+               'otx2_link.c',
+               'otx2_vlan.c',
+               'otx2_stats.c',
+               'otx2_mcast.c',
+               'otx2_lookup.c',
                'otx2_ethdev.c',
+               'otx2_flow_ctrl.c',
+               'otx2_flow_parse.c',
+               'otx2_flow_utils.c',
+               'otx2_ethdev_irq.c',
+               'otx2_ethdev_ops.c',
+               'otx2_ethdev_sec.c',
+               'otx2_ethdev_debug.c',
+               'otx2_ethdev_devargs.c'
                )
 
+deps += ['bus_pci', 'cryptodev', 'security']
 deps += ['common_octeontx2', 'mempool_octeontx2']
+
+cflags += ['-flax-vector-conversions']
+
+extra_flags = []
+# This integrated controller runs only on a arm64 machine, remove 32bit warnings
+if not dpdk_conf.get('RTE_ARCH_64')
+       extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
+endif
+
+foreach flag: extra_flags
+       if cc.has_argument(flag)
+               cflags += flag
+       endif
+endforeach