X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fbnxt%2Fmeson.build;h=59dda69321ed70da9cab6fe76720b9d14f6ad4da;hb=9311beeea4963d8b97330c20ff1736b006486c5d;hp=bfb448f7a3ab6f4c31ec18f9e300c531ea319f70;hpb=4a2361df8ffdb613f8702cf6f127c78483dabbc2;p=dpdk.git diff --git a/drivers/net/bnxt/meson.build b/drivers/net/bnxt/meson.build index bfb448f7a3..59dda69321 100644 --- a/drivers/net/bnxt/meson.build +++ b/drivers/net/bnxt/meson.build @@ -1,11 +1,16 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation +# Copyright(c) 2020 Broadcom install_headers('rte_pmd_bnxt.h') -version = 2 + +includes += include_directories('tf_ulp') +includes += include_directories('tf_core') + sources = files('bnxt_cpr.c', 'bnxt_ethdev.c', 'bnxt_filter.c', + 'bnxt_flow.c', 'bnxt_hwrm.c', 'bnxt_irq.c', 'bnxt_ring.c', @@ -16,4 +21,30 @@ sources = files('bnxt_cpr.c', 'bnxt_txr.c', 'bnxt_util.c', 'bnxt_vnic.c', + + 'tf_core/tf_core.c', + 'tf_core/bitalloc.c', + 'tf_core/tf_msg.c', + 'tf_core/rand.c', + 'tf_core/stack.c', + 'tf_core/tf_em.c', + 'tf_core/tf_rm.c', + 'tf_core/tf_tbl.c', + 'tf_core/tfp.c', + + 'tf_ulp/bnxt_ulp.c', + 'tf_ulp/ulp_mark_mgr.c', + 'tf_ulp/ulp_flow_db.c', + 'tf_ulp/ulp_template_db.c', + 'tf_ulp/ulp_utils.c', + 'tf_ulp/ulp_mapper.c', + 'tf_ulp/ulp_matcher.c', + 'tf_ulp/ulp_rte_parser.c', + 'tf_ulp/bnxt_ulp_flow.c', + 'tf_ulp/ulp_port_db.c', + 'rte_pmd_bnxt.c') + +if arch_subdir == 'x86' + sources += files('bnxt_rxtx_vec_sse.c') +endif