net/mlx4: add new memory region support
[dpdk.git] / drivers / net / mlx4 / mlx4.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2012 6WIND S.A.
3  * Copyright 2012 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_PMD_MLX4_H_
7 #define RTE_PMD_MLX4_H_
8
9 #include <net/if.h>
10 #include <stdint.h>
11 #include <sys/queue.h>
12
13 /* Verbs headers do not support -pedantic. */
14 #ifdef PEDANTIC
15 #pragma GCC diagnostic ignored "-Wpedantic"
16 #endif
17 #include <infiniband/verbs.h>
18 #ifdef PEDANTIC
19 #pragma GCC diagnostic error "-Wpedantic"
20 #endif
21
22 #include <rte_ethdev_driver.h>
23 #include <rte_ether.h>
24 #include <rte_interrupts.h>
25 #include <rte_mempool.h>
26 #include <rte_rwlock.h>
27
28 #include "mlx4_mr.h"
29
30 #ifndef IBV_RX_HASH_INNER
31 /** This is not necessarily defined by supported RDMA core versions. */
32 #define IBV_RX_HASH_INNER (1ull << 31)
33 #endif /* IBV_RX_HASH_INNER */
34
35 /** Maximum number of simultaneous MAC addresses. This value is arbitrary. */
36 #define MLX4_MAX_MAC_ADDRESSES 128
37
38 /** Request send completion once in every 64 sends, might be less. */
39 #define MLX4_PMD_TX_PER_COMP_REQ 64
40
41 /** Maximum size for inline data. */
42 #define MLX4_PMD_MAX_INLINE 0
43
44 /** Fixed RSS hash key size in bytes. Cannot be modified. */
45 #define MLX4_RSS_HASH_KEY_SIZE 40
46
47 /** Interrupt alarm timeout value in microseconds. */
48 #define MLX4_INTR_ALARM_TIMEOUT 100000
49
50 /** Port parameter. */
51 #define MLX4_PMD_PORT_KVARG "port"
52
53 enum {
54         PCI_VENDOR_ID_MELLANOX = 0x15b3,
55 };
56
57 enum {
58         PCI_DEVICE_ID_MELLANOX_CONNECTX3 = 0x1003,
59         PCI_DEVICE_ID_MELLANOX_CONNECTX3VF = 0x1004,
60         PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO = 0x1007,
61 };
62
63 /** Driver name reported to lower layers and used in log output. */
64 #define MLX4_DRIVER_NAME "net_mlx4"
65
66 struct mlx4_drop;
67 struct mlx4_rss;
68 struct rxq;
69 struct txq;
70 struct rte_flow;
71
72 LIST_HEAD(mlx4_dev_list, priv);
73 LIST_HEAD(mlx4_mr_list, mlx4_mr);
74
75 /** Private data structure. */
76 struct priv {
77         LIST_ENTRY(priv) mem_event_cb; /* Called by memory event callback. */
78         struct rte_eth_dev *dev; /**< Ethernet device. */
79         struct ibv_context *ctx; /**< Verbs context. */
80         struct ibv_device_attr device_attr; /**< Device properties. */
81         struct ibv_pd *pd; /**< Protection Domain. */
82         /* Device properties. */
83         uint16_t mtu; /**< Configured MTU. */
84         uint8_t port; /**< Physical port number. */
85         uint32_t started:1; /**< Device started, flows enabled. */
86         uint32_t vf:1; /**< This is a VF device. */
87         uint32_t intr_alarm:1; /**< An interrupt alarm is scheduled. */
88         uint32_t isolated:1; /**< Toggle isolated mode. */
89         uint32_t rss_init:1; /**< Common RSS context is initialized. */
90         uint32_t hw_csum:1; /**< Checksum offload is supported. */
91         uint32_t hw_csum_l2tun:1; /**< Checksum support for L2 tunnels. */
92         uint32_t hw_fcs_strip:1; /**< FCS stripping toggling is supported. */
93         uint64_t hw_rss_sup; /**< Supported RSS hash fields (Verbs format). */
94         struct rte_intr_handle intr_handle; /**< Port interrupt handle. */
95         struct mlx4_drop *drop; /**< Shared resources for drop flow rules. */
96         struct {
97                 uint32_t dev_gen; /* Generation number to flush local caches. */
98                 rte_rwlock_t rwlock; /* MR Lock. */
99                 struct mlx4_mr_btree cache; /* Global MR cache table. */
100                 struct mlx4_mr_list mr_list; /* Registered MR list. */
101                 struct mlx4_mr_list mr_free_list; /* Freed MR list. */
102         } mr;
103         LIST_HEAD(, mlx4_rss) rss; /**< Shared targets for Rx flow rules. */
104         LIST_HEAD(, rte_flow) flows; /**< Configured flow rule handles. */
105         struct ether_addr mac[MLX4_MAX_MAC_ADDRESSES];
106         /**< Configured MAC addresses. Unused entries are zeroed. */
107 };
108
109 /* mlx4_ethdev.c */
110
111 int mlx4_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE]);
112 int mlx4_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN]);
113 int mlx4_mtu_get(struct priv *priv, uint16_t *mtu);
114 int mlx4_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
115 int mlx4_dev_set_link_down(struct rte_eth_dev *dev);
116 int mlx4_dev_set_link_up(struct rte_eth_dev *dev);
117 void mlx4_promiscuous_enable(struct rte_eth_dev *dev);
118 void mlx4_promiscuous_disable(struct rte_eth_dev *dev);
119 void mlx4_allmulticast_enable(struct rte_eth_dev *dev);
120 void mlx4_allmulticast_disable(struct rte_eth_dev *dev);
121 void mlx4_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
122 int mlx4_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
123                       uint32_t index, uint32_t vmdq);
124 int mlx4_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr);
125 int mlx4_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
126 int mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
127 void mlx4_stats_reset(struct rte_eth_dev *dev);
128 void mlx4_dev_infos_get(struct rte_eth_dev *dev,
129                         struct rte_eth_dev_info *info);
130 int mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete);
131 int mlx4_flow_ctrl_get(struct rte_eth_dev *dev,
132                        struct rte_eth_fc_conf *fc_conf);
133 int mlx4_flow_ctrl_set(struct rte_eth_dev *dev,
134                        struct rte_eth_fc_conf *fc_conf);
135 const uint32_t *mlx4_dev_supported_ptypes_get(struct rte_eth_dev *dev);
136 int mlx4_is_removed(struct rte_eth_dev *dev);
137
138 /* mlx4_intr.c */
139
140 int mlx4_intr_uninstall(struct priv *priv);
141 int mlx4_intr_install(struct priv *priv);
142 int mlx4_rxq_intr_enable(struct priv *priv);
143 void mlx4_rxq_intr_disable(struct priv *priv);
144 int mlx4_rx_intr_disable(struct rte_eth_dev *dev, uint16_t idx);
145 int mlx4_rx_intr_enable(struct rte_eth_dev *dev, uint16_t idx);
146
147 #endif /* RTE_PMD_MLX4_H_ */