mlx5: support VLAN filtering
[dpdk.git] / drivers / net / mlx5 / mlx5.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2015 6WIND S.A.
5  *   Copyright 2015 Mellanox.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef RTE_PMD_MLX5_H_
35 #define RTE_PMD_MLX5_H_
36
37 #include <stddef.h>
38 #include <stdint.h>
39 #include <limits.h>
40 #include <net/if.h>
41 #include <netinet/in.h>
42 #include <linux/if.h>
43
44 /* Verbs header. */
45 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
46 #ifdef PEDANTIC
47 #pragma GCC diagnostic ignored "-pedantic"
48 #endif
49 #include <infiniband/verbs.h>
50 #ifdef PEDANTIC
51 #pragma GCC diagnostic error "-pedantic"
52 #endif
53
54 /* DPDK headers don't like -pedantic. */
55 #ifdef PEDANTIC
56 #pragma GCC diagnostic ignored "-pedantic"
57 #endif
58 #include <rte_ether.h>
59 #include <rte_ethdev.h>
60 #include <rte_spinlock.h>
61 #ifdef PEDANTIC
62 #pragma GCC diagnostic error "-pedantic"
63 #endif
64
65 #include "mlx5_utils.h"
66 #include "mlx5_rxtx.h"
67 #include "mlx5_autoconf.h"
68 #include "mlx5_defs.h"
69
70 enum {
71         PCI_VENDOR_ID_MELLANOX = 0x15b3,
72 };
73
74 enum {
75         PCI_DEVICE_ID_MELLANOX_CONNECTX4 = 0x1013,
76         PCI_DEVICE_ID_MELLANOX_CONNECTX4VF = 0x1014,
77         PCI_DEVICE_ID_MELLANOX_CONNECTX4LX = 0x1015,
78         PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF = 0x1016,
79 };
80
81 struct priv {
82         struct rte_eth_dev *dev; /* Ethernet device. */
83         struct ibv_context *ctx; /* Verbs context. */
84         struct ibv_device_attr device_attr; /* Device properties. */
85         struct ibv_pd *pd; /* Protection Domain. */
86         /*
87          * MAC addresses array and configuration bit-field.
88          * An extra entry that cannot be modified by the DPDK is reserved
89          * for broadcast frames (destination MAC address ff:ff:ff:ff:ff:ff).
90          */
91         struct ether_addr mac[MLX5_MAX_MAC_ADDRESSES];
92         BITFIELD_DECLARE(mac_configured, uint32_t, MLX5_MAX_MAC_ADDRESSES);
93         uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */
94         unsigned int vlan_filter_n; /* Number of configured VLAN filters. */
95         /* Device properties. */
96         uint16_t mtu; /* Configured MTU. */
97         uint8_t port; /* Physical port number. */
98         unsigned int started:1; /* Device started, flows enabled. */
99         unsigned int promisc_req:1; /* Promiscuous mode requested. */
100         unsigned int allmulti_req:1; /* All multicast mode requested. */
101         unsigned int hw_qpg:1; /* QP groups are supported. */
102         unsigned int hw_tss:1; /* TSS is supported. */
103         unsigned int hw_rss:1; /* RSS is supported. */
104         unsigned int hw_csum:1; /* Checksum offload is supported. */
105         unsigned int hw_csum_l2tun:1; /* Same for L2 tunnels. */
106         unsigned int rss:1; /* RSS is enabled. */
107         unsigned int vf:1; /* This is a VF device. */
108         unsigned int max_rss_tbl_sz; /* Maximum number of RSS queues. */
109         /* RX/TX queues. */
110         struct rxq rxq_parent; /* Parent queue when RSS is enabled. */
111         unsigned int rxqs_n; /* RX queues array size. */
112         unsigned int txqs_n; /* TX queues array size. */
113         struct rxq *(*rxqs)[]; /* RX queues. */
114         struct txq *(*txqs)[]; /* TX queues. */
115         rte_spinlock_t lock; /* Lock for control functions. */
116 };
117
118 /* Work Request ID data type (64 bit). */
119 typedef union {
120         struct {
121                 uint32_t id;
122                 uint16_t offset;
123         } data;
124         uint64_t raw;
125 } wr_id_t;
126
127 /* Compile-time check. */
128 static inline void wr_id_t_check(void)
129 {
130         wr_id_t check[1 + (2 * -!(sizeof(wr_id_t) == sizeof(uint64_t)))];
131
132         (void)check;
133         (void)wr_id_t_check;
134 }
135
136 /**
137  * Lock private structure to protect it from concurrent access in the
138  * control path.
139  *
140  * @param priv
141  *   Pointer to private structure.
142  */
143 static inline void
144 priv_lock(struct priv *priv)
145 {
146         rte_spinlock_lock(&priv->lock);
147 }
148
149 /**
150  * Unlock private structure.
151  *
152  * @param priv
153  *   Pointer to private structure.
154  */
155 static inline void
156 priv_unlock(struct priv *priv)
157 {
158         rte_spinlock_unlock(&priv->lock);
159 }
160
161 /* mlx5_ethdev.c */
162
163 int priv_get_ifname(const struct priv *, char (*)[IF_NAMESIZE]);
164 int priv_ifreq(const struct priv *, int req, struct ifreq *);
165 int priv_get_mtu(struct priv *, uint16_t *);
166 int priv_set_flags(struct priv *, unsigned int, unsigned int);
167 int mlx5_dev_configure(struct rte_eth_dev *);
168 void mlx5_dev_infos_get(struct rte_eth_dev *, struct rte_eth_dev_info *);
169 int mlx5_link_update(struct rte_eth_dev *, int);
170 int mlx5_dev_set_mtu(struct rte_eth_dev *, uint16_t);
171 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *, struct rte_eth_fc_conf *);
172 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *, struct rte_eth_fc_conf *);
173 int mlx5_ibv_device_to_pci_addr(const struct ibv_device *,
174                                 struct rte_pci_addr *);
175
176 /* mlx5_mac.c */
177
178 int priv_get_mac(struct priv *, uint8_t (*)[ETHER_ADDR_LEN]);
179 void rxq_mac_addrs_del(struct rxq *);
180 void mlx5_mac_addr_remove(struct rte_eth_dev *, uint32_t);
181 int rxq_mac_addrs_add(struct rxq *);
182 int priv_mac_addr_add(struct priv *, unsigned int,
183                       const uint8_t (*)[ETHER_ADDR_LEN]);
184 void mlx5_mac_addr_add(struct rte_eth_dev *, struct ether_addr *, uint32_t,
185                        uint32_t);
186
187 /* mlx5_rxmode.c */
188
189 int rxq_promiscuous_enable(struct rxq *);
190 void mlx5_promiscuous_enable(struct rte_eth_dev *);
191 void rxq_promiscuous_disable(struct rxq *);
192 void mlx5_promiscuous_disable(struct rte_eth_dev *);
193 int rxq_allmulticast_enable(struct rxq *);
194 void mlx5_allmulticast_enable(struct rte_eth_dev *);
195 void rxq_allmulticast_disable(struct rxq *);
196 void mlx5_allmulticast_disable(struct rte_eth_dev *);
197
198 /* mlx5_stats.c */
199
200 void mlx5_stats_get(struct rte_eth_dev *, struct rte_eth_stats *);
201 void mlx5_stats_reset(struct rte_eth_dev *);
202
203 /* mlx5_vlan.c */
204
205 int mlx5_vlan_filter_set(struct rte_eth_dev *, uint16_t, int);
206
207 /* mlx5_trigger.c */
208
209 int mlx5_dev_start(struct rte_eth_dev *);
210 void mlx5_dev_stop(struct rte_eth_dev *);
211
212 #endif /* RTE_PMD_MLX5_H_ */