mlx5: support flow director
[dpdk.git] / drivers / net / mlx5 / Makefile
1 #   BSD LICENSE
2 #
3 #   Copyright 2015 6WIND S.A.
4 #   Copyright 2015 Mellanox.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of 6WIND S.A. nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 include $(RTE_SDK)/mk/rte.vars.mk
33
34 # Library name.
35 LIB = librte_pmd_mlx5.a
36
37 # Sources.
38 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5.c
39 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_rxq.c
40 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_txq.c
41 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_rxtx.c
42 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_trigger.c
43 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_ethdev.c
44 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_mac.c
45 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_rxmode.c
46 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_vlan.c
47 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_stats.c
48 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_rss.c
49 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += mlx5_fdir.c
50
51 # Dependencies.
52 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += lib/librte_ether
53 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += lib/librte_mbuf
54 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += lib/librte_eal
55 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += lib/librte_mempool
56
57 # Basic CFLAGS.
58 CFLAGS += -O3
59 CFLAGS += -std=gnu99 -Wall -Wextra
60 CFLAGS += -g
61 CFLAGS += -I.
62 CFLAGS += -D_XOPEN_SOURCE=600
63 CFLAGS += $(WERROR_FLAGS)
64 LDLIBS += -libverbs
65
66 # A few warnings cannot be avoided in external headers.
67 CFLAGS += -Wno-error=cast-qual
68
69 EXPORT_MAP := rte_pmd_mlx5_version.map
70 LIBABIVER := 1
71
72 # DEBUG which is usually provided on the command-line may enable
73 # CONFIG_RTE_LIBRTE_MLX5_DEBUG.
74 ifeq ($(DEBUG),1)
75 CONFIG_RTE_LIBRTE_MLX5_DEBUG := y
76 endif
77
78 # User-defined CFLAGS.
79 ifeq ($(CONFIG_RTE_LIBRTE_MLX5_DEBUG),y)
80 CFLAGS += -pedantic -UNDEBUG -DPEDANTIC
81 else
82 CFLAGS += -DNDEBUG -UPEDANTIC
83 endif
84
85 ifdef CONFIG_RTE_LIBRTE_MLX5_SGE_WR_N
86 CFLAGS += -DMLX5_PMD_SGE_WR_N=$(CONFIG_RTE_LIBRTE_MLX5_SGE_WR_N)
87 endif
88
89 ifdef CONFIG_RTE_LIBRTE_MLX5_MAX_INLINE
90 CFLAGS += -DMLX5_PMD_MAX_INLINE=$(CONFIG_RTE_LIBRTE_MLX5_MAX_INLINE)
91 endif
92
93 ifdef CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE
94 CFLAGS += -DMLX5_PMD_TX_MP_CACHE=$(CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE)
95 endif
96
97 include $(RTE_SDK)/mk/rte.lib.mk
98
99 # Generate and clean-up mlx5_autoconf.h.
100
101 export CC CFLAGS CPPFLAGS EXTRA_CFLAGS EXTRA_CPPFLAGS
102 export AUTO_CONFIG_CFLAGS = -Wno-error
103
104 ifndef V
105 AUTOCONF_OUTPUT := >/dev/null
106 endif
107
108 mlx5_autoconf.h: $(RTE_SDK)/scripts/auto-config-h.sh
109         $Q $(RM) -f -- '$@'
110         $Q sh -- '$<' '$@' \
111                 HAVE_EXP_QUERY_DEVICE \
112                 infiniband/verbs.h \
113                 type 'struct ibv_exp_device_attr' $(AUTOCONF_OUTPUT)
114         $Q sh -- '$<' '$@' \
115                 HAVE_FLOW_SPEC_IPV6 \
116                 infiniband/verbs.h \
117                 type 'struct ibv_exp_flow_spec_ipv6' $(AUTOCONF_OUTPUT)
118         $Q sh -- '$<' '$@' \
119                 HAVE_EXP_QP_BURST_CREATE_ENABLE_MULTI_PACKET_SEND_WR \
120                 infiniband/verbs.h \
121                 enum IBV_EXP_QP_BURST_CREATE_ENABLE_MULTI_PACKET_SEND_WR \
122                 $(AUTOCONF_OUTPUT)
123         $Q sh -- '$<' '$@' \
124                 HAVE_EXP_DEVICE_ATTR_VLAN_OFFLOADS \
125                 infiniband/verbs.h \
126                 enum IBV_EXP_DEVICE_ATTR_VLAN_OFFLOADS \
127                 $(AUTOCONF_OUTPUT)
128
129 $(SRCS-$(CONFIG_RTE_LIBRTE_MLX5_PMD):.c=.o): mlx5_autoconf.h
130
131 clean_mlx5: FORCE
132         $Q rm -f -- mlx5_autoconf.h
133
134 clean: clean_mlx5