mlx5: introduce new driver for Mellanox ConnectX-4 adapters
[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_autoconf.h"
67 #include "mlx5_defs.h"
68
69 enum {
70         PCI_VENDOR_ID_MELLANOX = 0x15b3,
71 };
72
73 enum {
74         PCI_DEVICE_ID_MELLANOX_CONNECTX4 = 0x1013,
75         PCI_DEVICE_ID_MELLANOX_CONNECTX4VF = 0x1014,
76         PCI_DEVICE_ID_MELLANOX_CONNECTX4LX = 0x1015,
77         PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF = 0x1016,
78 };
79
80 struct priv {
81         struct rte_eth_dev *dev; /* Ethernet device. */
82         struct ibv_context *ctx; /* Verbs context. */
83         struct ibv_device_attr device_attr; /* Device properties. */
84         struct ibv_pd *pd; /* Protection Domain. */
85         /*
86          * MAC addresses array and configuration bit-field.
87          * An extra entry that cannot be modified by the DPDK is reserved
88          * for broadcast frames (destination MAC address ff:ff:ff:ff:ff:ff).
89          */
90         struct ether_addr mac[MLX5_MAX_MAC_ADDRESSES];
91         BITFIELD_DECLARE(mac_configured, uint32_t, MLX5_MAX_MAC_ADDRESSES);
92         /* Device properties. */
93         uint16_t mtu; /* Configured MTU. */
94         uint8_t port; /* Physical port number. */
95         unsigned int started:1; /* Device started, flows enabled. */
96         unsigned int hw_qpg:1; /* QP groups are supported. */
97         unsigned int hw_tss:1; /* TSS is supported. */
98         unsigned int hw_rss:1; /* RSS is supported. */
99         unsigned int hw_csum:1; /* Checksum offload is supported. */
100         unsigned int hw_csum_l2tun:1; /* Same for L2 tunnels. */
101         unsigned int rss:1; /* RSS is enabled. */
102         unsigned int vf:1; /* This is a VF device. */
103         unsigned int max_rss_tbl_sz; /* Maximum number of RSS queues. */
104         rte_spinlock_t lock; /* Lock for control functions. */
105 };
106
107 /**
108  * Lock private structure to protect it from concurrent access in the
109  * control path.
110  *
111  * @param priv
112  *   Pointer to private structure.
113  */
114 static inline void
115 priv_lock(struct priv *priv)
116 {
117         rte_spinlock_lock(&priv->lock);
118 }
119
120 /**
121  * Unlock private structure.
122  *
123  * @param priv
124  *   Pointer to private structure.
125  */
126 static inline void
127 priv_unlock(struct priv *priv)
128 {
129         rte_spinlock_unlock(&priv->lock);
130 }
131
132 /* mlx5_ethdev.c */
133
134 int priv_get_ifname(const struct priv *, char (*)[IF_NAMESIZE]);
135 int priv_ifreq(const struct priv *, int req, struct ifreq *);
136 int priv_get_mtu(struct priv *, uint16_t *);
137 int priv_set_flags(struct priv *, unsigned int, unsigned int);
138 int mlx5_ibv_device_to_pci_addr(const struct ibv_device *,
139                                 struct rte_pci_addr *);
140
141 /* mlx5_mac.c */
142
143 int priv_get_mac(struct priv *, uint8_t (*)[ETHER_ADDR_LEN]);
144 int priv_mac_addr_add(struct priv *, unsigned int,
145                       const uint8_t (*)[ETHER_ADDR_LEN]);
146
147 #endif /* RTE_PMD_MLX5_H_ */