net/bnxt: add port representor infrastructure
[dpdk.git] / drivers / net / bnxt / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3 # Copyright(c) 2020 Broadcom
4
5 install_headers('rte_pmd_bnxt.h')
6
7 includes += include_directories('tf_ulp')
8 includes += include_directories('tf_core')
9
10 sources = files('bnxt_cpr.c',
11         'bnxt_ethdev.c',
12         'bnxt_filter.c',
13         'bnxt_flow.c',
14         'bnxt_hwrm.c',
15         'bnxt_irq.c',
16         'bnxt_ring.c',
17         'bnxt_rxq.c',
18         'bnxt_rxr.c',
19         'bnxt_stats.c',
20         'bnxt_txq.c',
21         'bnxt_txr.c',
22         'bnxt_util.c',
23         'bnxt_vnic.c',
24         'bnxt_reps.c',
25
26         'tf_core/tf_core.c',
27         'tf_core/bitalloc.c',
28         'tf_core/tf_msg.c',
29         'tf_core/rand.c',
30         'tf_core/stack.c',
31         'tf_core/tf_em.c',
32         'tf_core/tf_rm.c',
33         'tf_core/tf_tbl.c',
34         'tf_core/tfp.c',
35
36         'tf_ulp/bnxt_ulp.c',
37         'tf_ulp/ulp_mark_mgr.c',
38         'tf_ulp/ulp_flow_db.c',
39         'tf_ulp/ulp_template_db_tbl.c',
40         'tf_ulp/ulp_template_db_class.c',
41         'tf_ulp/ulp_template_db_act.c',
42         'tf_ulp/ulp_utils.c',
43         'tf_ulp/ulp_mapper.c',
44         'tf_ulp/ulp_matcher.c',
45         'tf_ulp/ulp_rte_parser.c',
46         'tf_ulp/bnxt_ulp_flow.c',
47         'tf_ulp/ulp_port_db.c',
48
49         'rte_pmd_bnxt.c')
50
51 if arch_subdir == 'x86'
52         sources += files('bnxt_rxtx_vec_sse.c')
53 endif