blob: 9d4d2a74c95e1639ffb64fab86b2dee5021dc21c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2004 Infinicon Corporation. All rights reserved.
4 * Copyright (c) 2004 Intel Corporation. All rights reserved.
5 * Copyright (c) 2004 Topspin Corporation. All rights reserved.
6 * Copyright (c) 2004 Voltaire Corporation. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07007 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08008 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
39#if !defined(IB_VERBS_H)
40#define IB_VERBS_H
41
42#include <linux/types.h>
43#include <linux/device.h>
Ralph Campbell9b513092006-12-12 14:27:41 -080044#include <linux/mm.h>
45#include <linux/dma-mapping.h>
Michael S. Tsirkin459d6e22007-02-04 14:11:55 -080046#include <linux/kref.h>
Dotan Barakbfb3ea12007-07-31 16:49:15 +030047#include <linux/list.h>
48#include <linux/rwsem.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010049#include <linux/scatterlist.h>
Tejun Heof0626712010-10-19 15:24:36 +000050#include <linux/workqueue.h>
Yotam Kenneth9268f722015-07-30 17:50:15 +030051#include <linux/socket.h>
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -080052#include <linux/irq_poll.h>
Matan Barakdd5f03b2013-12-12 18:03:11 +020053#include <uapi/linux/if_ether.h>
Somnath Koturc865f242015-12-23 14:56:51 +020054#include <net/ipv6.h>
55#include <net/ip.h>
Matan Barak301a7212015-12-15 20:30:10 +020056#include <linux/string.h>
57#include <linux/slab.h>
Vishwanathapura, Niranjana2fc77572017-04-12 20:29:20 -070058#include <linux/netdevice.h>
Roland Dreiere2773c02005-07-07 17:57:10 -070059
Eli Cohen50174a72016-03-11 22:58:38 +020060#include <linux/if_link.h>
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Haggai Eran882214e2014-12-11 17:04:18 +020062#include <linux/mmu_notifier.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080063#include <linux/uaccess.h>
Parav Pandit43579b52017-01-10 00:02:14 +000064#include <linux/cgroup_rdma.h>
Nicolas Dichtelea6819e2017-03-27 14:20:14 +020065#include <uapi/rdma/ib_user_verbs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Tejun Heof0626712010-10-19 15:24:36 +000067extern struct workqueue_struct *ib_wq;
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -080068extern struct workqueue_struct *ib_comp_wq;
Tejun Heof0626712010-10-19 15:24:36 +000069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070union ib_gid {
71 u8 raw[16];
72 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -070073 __be64 subnet_prefix;
74 __be64 interface_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 } global;
76};
77
Moni Shouae26be1b2015-07-30 18:33:29 +030078extern union ib_gid zgid;
79
Matan Barakb39ffa12015-12-23 14:56:47 +020080enum ib_gid_type {
81 /* If link layer is Ethernet, this is RoCE V1 */
82 IB_GID_TYPE_IB = 0,
83 IB_GID_TYPE_ROCE = 0,
Matan Barak7766a992015-12-23 14:56:50 +020084 IB_GID_TYPE_ROCE_UDP_ENCAP = 1,
Matan Barakb39ffa12015-12-23 14:56:47 +020085 IB_GID_TYPE_SIZE
86};
87
Moni Shoua7ead4bc2016-01-14 17:50:38 +020088#define ROCE_V2_UDP_DPORT 4791
Matan Barak03db3a22015-07-30 18:33:26 +030089struct ib_gid_attr {
Matan Barakb39ffa12015-12-23 14:56:47 +020090 enum ib_gid_type gid_type;
Matan Barak03db3a22015-07-30 18:33:26 +030091 struct net_device *ndev;
92};
93
Tom Tucker07ebafb2006-08-03 16:02:42 -050094enum rdma_node_type {
95 /* IB values map to NodeInfo:NodeType. */
96 RDMA_NODE_IB_CA = 1,
97 RDMA_NODE_IB_SWITCH,
98 RDMA_NODE_IB_ROUTER,
Upinder Malhi \(umalhi\)180771a2013-09-10 03:36:59 +000099 RDMA_NODE_RNIC,
100 RDMA_NODE_USNIC,
Upinder Malhi5db57652014-01-15 17:02:36 -0800101 RDMA_NODE_USNIC_UDP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Eli Cohena0c1b2a2016-03-11 22:58:37 +0200104enum {
105 /* set the local administered indication */
106 IB_SA_WELL_KNOWN_GUID = BIT_ULL(57) | 2,
107};
108
Tom Tucker07ebafb2006-08-03 16:02:42 -0500109enum rdma_transport_type {
110 RDMA_TRANSPORT_IB,
Upinder Malhi \(umalhi\)180771a2013-09-10 03:36:59 +0000111 RDMA_TRANSPORT_IWARP,
Upinder Malhi248567f2014-01-09 14:48:19 -0800112 RDMA_TRANSPORT_USNIC,
113 RDMA_TRANSPORT_USNIC_UDP
Tom Tucker07ebafb2006-08-03 16:02:42 -0500114};
115
Michael Wang6b90a6d2015-05-05 14:50:18 +0200116enum rdma_protocol_type {
117 RDMA_PROTOCOL_IB,
118 RDMA_PROTOCOL_IBOE,
119 RDMA_PROTOCOL_IWARP,
120 RDMA_PROTOCOL_USNIC_UDP
121};
122
Roland Dreier8385fd82014-06-04 10:00:16 -0700123__attribute_const__ enum rdma_transport_type
124rdma_node_get_transport(enum rdma_node_type node_type);
Tom Tucker07ebafb2006-08-03 16:02:42 -0500125
Somnath Koturc865f242015-12-23 14:56:51 +0200126enum rdma_network_type {
127 RDMA_NETWORK_IB,
128 RDMA_NETWORK_ROCE_V1 = RDMA_NETWORK_IB,
129 RDMA_NETWORK_IPV4,
130 RDMA_NETWORK_IPV6
131};
132
133static inline enum ib_gid_type ib_network_to_gid_type(enum rdma_network_type network_type)
134{
135 if (network_type == RDMA_NETWORK_IPV4 ||
136 network_type == RDMA_NETWORK_IPV6)
137 return IB_GID_TYPE_ROCE_UDP_ENCAP;
138
139 /* IB_GID_TYPE_IB same as RDMA_NETWORK_ROCE_V1 */
140 return IB_GID_TYPE_IB;
141}
142
143static inline enum rdma_network_type ib_gid_to_network_type(enum ib_gid_type gid_type,
144 union ib_gid *gid)
145{
146 if (gid_type == IB_GID_TYPE_IB)
147 return RDMA_NETWORK_IB;
148
149 if (ipv6_addr_v4mapped((struct in6_addr *)gid))
150 return RDMA_NETWORK_IPV4;
151 else
152 return RDMA_NETWORK_IPV6;
153}
154
Eli Cohena3f5ada2010-09-27 17:51:10 -0700155enum rdma_link_layer {
156 IB_LINK_LAYER_UNSPECIFIED,
157 IB_LINK_LAYER_INFINIBAND,
158 IB_LINK_LAYER_ETHERNET,
159};
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161enum ib_device_cap_flags {
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200162 IB_DEVICE_RESIZE_MAX_WR = (1 << 0),
163 IB_DEVICE_BAD_PKEY_CNTR = (1 << 1),
164 IB_DEVICE_BAD_QKEY_CNTR = (1 << 2),
165 IB_DEVICE_RAW_MULTI = (1 << 3),
166 IB_DEVICE_AUTO_PATH_MIG = (1 << 4),
167 IB_DEVICE_CHANGE_PHY_PORT = (1 << 5),
168 IB_DEVICE_UD_AV_PORT_ENFORCE = (1 << 6),
169 IB_DEVICE_CURR_QP_STATE_MOD = (1 << 7),
170 IB_DEVICE_SHUTDOWN_PORT = (1 << 8),
171 IB_DEVICE_INIT_TYPE = (1 << 9),
172 IB_DEVICE_PORT_ACTIVE_EVENT = (1 << 10),
173 IB_DEVICE_SYS_IMAGE_GUID = (1 << 11),
174 IB_DEVICE_RC_RNR_NAK_GEN = (1 << 12),
175 IB_DEVICE_SRQ_RESIZE = (1 << 13),
176 IB_DEVICE_N_NOTIFY_CQ = (1 << 14),
Christoph Hellwigb1adc712015-12-23 19:12:45 +0100177
178 /*
179 * This device supports a per-device lkey or stag that can be
180 * used without performing a memory registration for the local
181 * memory. Note that ULPs should never check this flag, but
182 * instead of use the local_dma_lkey flag in the ib_pd structure,
183 * which will always contain a usable lkey.
184 */
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200185 IB_DEVICE_LOCAL_DMA_LKEY = (1 << 15),
186 IB_DEVICE_RESERVED /* old SEND_W_INV */ = (1 << 16),
187 IB_DEVICE_MEM_WINDOW = (1 << 17),
Eli Cohene0605d92008-01-30 18:30:57 +0200188 /*
189 * Devices should set IB_DEVICE_UD_IP_SUM if they support
190 * insertion of UDP and TCP checksum on outgoing UD IPoIB
191 * messages and can verify the validity of checksum for
192 * incoming messages. Setting this flag implies that the
193 * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
194 */
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200195 IB_DEVICE_UD_IP_CSUM = (1 << 18),
196 IB_DEVICE_UD_TSO = (1 << 19),
197 IB_DEVICE_XRC = (1 << 20),
Christoph Hellwigb1adc712015-12-23 19:12:45 +0100198
199 /*
200 * This device supports the IB "base memory management extension",
201 * which includes support for fast registrations (IB_WR_REG_MR,
202 * IB_WR_LOCAL_INV and IB_WR_SEND_WITH_INV verbs). This flag should
203 * also be set by any iWarp device which must support FRs to comply
204 * to the iWarp verbs spec. iWarp devices also support the
205 * IB_WR_RDMA_READ_WITH_INV verb for RDMA READs that invalidate the
206 * stag.
207 */
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200208 IB_DEVICE_MEM_MGT_EXTENSIONS = (1 << 21),
209 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK = (1 << 22),
210 IB_DEVICE_MEM_WINDOW_TYPE_2A = (1 << 23),
211 IB_DEVICE_MEM_WINDOW_TYPE_2B = (1 << 24),
212 IB_DEVICE_RC_IP_CSUM = (1 << 25),
Noa Osherovichebaaee22017-01-18 15:39:54 +0200213 /* Deprecated. Please use IB_RAW_PACKET_CAP_IP_CSUM. */
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200214 IB_DEVICE_RAW_IP_CSUM = (1 << 26),
Leon Romanovsky8a06ce52015-12-20 12:16:10 +0200215 /*
216 * Devices should set IB_DEVICE_CROSS_CHANNEL if they
217 * support execution of WQEs that involve synchronization
218 * of I/O operations with single completion queue managed
219 * by hardware.
220 */
221 IB_DEVICE_CROSS_CHANNEL = (1 << 27),
Leon Romanovsky7ca0bc52015-12-20 12:16:09 +0200222 IB_DEVICE_MANAGED_FLOW_STEERING = (1 << 29),
223 IB_DEVICE_SIGNATURE_HANDOVER = (1 << 30),
Max Gurtovoy47355b32016-06-06 19:34:39 +0300224 IB_DEVICE_ON_DEMAND_PAGING = (1ULL << 31),
Sagi Grimbergf5aa9152016-02-29 19:07:32 +0200225 IB_DEVICE_SG_GAPS_REG = (1ULL << 32),
Max Gurtovoyc7e162a2016-06-06 19:34:40 +0300226 IB_DEVICE_VIRTUAL_FUNCTION = (1ULL << 33),
Noa Osherovichebaaee22017-01-18 15:39:54 +0200227 /* Deprecated. Please use IB_RAW_PACKET_CAP_SCATTER_FCS. */
Max Gurtovoyc7e162a2016-06-06 19:34:40 +0300228 IB_DEVICE_RAW_SCATTER_FCS = (1ULL << 34),
Vishwanathapura, Niranjana62e45942017-04-12 20:29:21 -0700229 IB_DEVICE_RDMA_NETDEV_OPA_VNIC = (1ULL << 35),
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200230};
231
232enum ib_signature_prot_cap {
233 IB_PROT_T10DIF_TYPE_1 = 1,
234 IB_PROT_T10DIF_TYPE_2 = 1 << 1,
235 IB_PROT_T10DIF_TYPE_3 = 1 << 2,
236};
237
238enum ib_signature_guard_cap {
239 IB_GUARD_T10DIF_CRC = 1,
240 IB_GUARD_T10DIF_CSUM = 1 << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241};
242
243enum ib_atomic_cap {
244 IB_ATOMIC_NONE,
245 IB_ATOMIC_HCA,
246 IB_ATOMIC_GLOB
247};
248
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200249enum ib_odp_general_cap_bits {
Artemy Kovalyov25bf14d2017-01-18 16:58:06 +0200250 IB_ODP_SUPPORT = 1 << 0,
251 IB_ODP_SUPPORT_IMPLICIT = 1 << 1,
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200252};
253
254enum ib_odp_transport_cap_bits {
255 IB_ODP_SUPPORT_SEND = 1 << 0,
256 IB_ODP_SUPPORT_RECV = 1 << 1,
257 IB_ODP_SUPPORT_WRITE = 1 << 2,
258 IB_ODP_SUPPORT_READ = 1 << 3,
259 IB_ODP_SUPPORT_ATOMIC = 1 << 4,
260};
261
262struct ib_odp_caps {
263 uint64_t general_caps;
264 struct {
265 uint32_t rc_odp_caps;
266 uint32_t uc_odp_caps;
267 uint32_t ud_odp_caps;
268 } per_transport_caps;
269};
270
Yishai Hadasccf20562016-08-28 11:28:43 +0300271struct ib_rss_caps {
272 /* Corresponding bit will be set if qp type from
273 * 'enum ib_qp_type' is supported, e.g.
274 * supported_qpts |= 1 << IB_QPT_UD
275 */
276 u32 supported_qpts;
277 u32 max_rwq_indirection_tables;
278 u32 max_rwq_indirection_table_size;
279};
280
Matan Barakb9926b92015-06-11 16:35:22 +0300281enum ib_cq_creation_flags {
282 IB_CQ_FLAGS_TIMESTAMP_COMPLETION = 1 << 0,
Leon Romanovsky8a06ce52015-12-20 12:16:10 +0200283 IB_CQ_FLAGS_IGNORE_OVERRUN = 1 << 1,
Matan Barakb9926b92015-06-11 16:35:22 +0300284};
285
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300286struct ib_cq_init_attr {
287 unsigned int cqe;
288 int comp_vector;
289 u32 flags;
290};
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292struct ib_device_attr {
293 u64 fw_ver;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700294 __be64 sys_image_guid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 u64 max_mr_size;
296 u64 page_size_cap;
297 u32 vendor_id;
298 u32 vendor_part_id;
299 u32 hw_ver;
300 int max_qp;
301 int max_qp_wr;
Leon Romanovskyfb532d62016-02-23 10:25:25 +0200302 u64 device_cap_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int max_sge;
304 int max_sge_rd;
305 int max_cq;
306 int max_cqe;
307 int max_mr;
308 int max_pd;
309 int max_qp_rd_atom;
310 int max_ee_rd_atom;
311 int max_res_rd_atom;
312 int max_qp_init_rd_atom;
313 int max_ee_init_rd_atom;
314 enum ib_atomic_cap atomic_cap;
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300315 enum ib_atomic_cap masked_atomic_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 int max_ee;
317 int max_rdd;
318 int max_mw;
319 int max_raw_ipv6_qp;
320 int max_raw_ethy_qp;
321 int max_mcast_grp;
322 int max_mcast_qp_attach;
323 int max_total_mcast_qp_attach;
324 int max_ah;
325 int max_fmr;
326 int max_map_per_fmr;
327 int max_srq;
328 int max_srq_wr;
329 int max_srq_sge;
Steve Wise00f7ec32008-07-14 23:48:45 -0700330 unsigned int max_fast_reg_page_list_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 u16 max_pkeys;
332 u8 local_ca_ack_delay;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200333 int sig_prot_cap;
334 int sig_guard_cap;
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200335 struct ib_odp_caps odp_caps;
Matan Barak24306dc2015-06-11 16:35:24 +0300336 uint64_t timestamp_mask;
337 uint64_t hca_core_clock; /* in KHZ */
Yishai Hadasccf20562016-08-28 11:28:43 +0300338 struct ib_rss_caps rss_caps;
339 u32 max_wq_type_rq;
Noa Osherovichebaaee22017-01-18 15:39:54 +0200340 u32 raw_packet_caps; /* Use ib_raw_packet_caps enum */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
343enum ib_mtu {
344 IB_MTU_256 = 1,
345 IB_MTU_512 = 2,
346 IB_MTU_1024 = 3,
347 IB_MTU_2048 = 4,
348 IB_MTU_4096 = 5
349};
350
351static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
352{
353 switch (mtu) {
354 case IB_MTU_256: return 256;
355 case IB_MTU_512: return 512;
356 case IB_MTU_1024: return 1024;
357 case IB_MTU_2048: return 2048;
358 case IB_MTU_4096: return 4096;
359 default: return -1;
360 }
361}
362
Amrani, Ramd3f4aad2016-12-26 08:40:57 +0200363static inline enum ib_mtu ib_mtu_int_to_enum(int mtu)
364{
365 if (mtu >= 4096)
366 return IB_MTU_4096;
367 else if (mtu >= 2048)
368 return IB_MTU_2048;
369 else if (mtu >= 1024)
370 return IB_MTU_1024;
371 else if (mtu >= 512)
372 return IB_MTU_512;
373 else
374 return IB_MTU_256;
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377enum ib_port_state {
378 IB_PORT_NOP = 0,
379 IB_PORT_DOWN = 1,
380 IB_PORT_INIT = 2,
381 IB_PORT_ARMED = 3,
382 IB_PORT_ACTIVE = 4,
383 IB_PORT_ACTIVE_DEFER = 5
384};
385
386enum ib_port_cap_flags {
387 IB_PORT_SM = 1 << 1,
388 IB_PORT_NOTICE_SUP = 1 << 2,
389 IB_PORT_TRAP_SUP = 1 << 3,
390 IB_PORT_OPT_IPD_SUP = 1 << 4,
391 IB_PORT_AUTO_MIGR_SUP = 1 << 5,
392 IB_PORT_SL_MAP_SUP = 1 << 6,
393 IB_PORT_MKEY_NVRAM = 1 << 7,
394 IB_PORT_PKEY_NVRAM = 1 << 8,
395 IB_PORT_LED_INFO_SUP = 1 << 9,
396 IB_PORT_SM_DISABLED = 1 << 10,
397 IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
398 IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300399 IB_PORT_EXTENDED_SPEEDS_SUP = 1 << 14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 IB_PORT_CM_SUP = 1 << 16,
401 IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
402 IB_PORT_REINIT_SUP = 1 << 18,
403 IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
404 IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
405 IB_PORT_DR_NOTICE_SUP = 1 << 21,
406 IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
407 IB_PORT_BOOT_MGMT_SUP = 1 << 23,
408 IB_PORT_LINK_LATENCY_SUP = 1 << 24,
Moni Shouab4a26a22014-02-09 11:54:34 +0200409 IB_PORT_CLIENT_REG_SUP = 1 << 25,
Matan Barak03db3a22015-07-30 18:33:26 +0300410 IB_PORT_IP_BASED_GIDS = 1 << 26,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411};
412
413enum ib_port_width {
414 IB_WIDTH_1X = 1,
415 IB_WIDTH_4X = 2,
416 IB_WIDTH_8X = 4,
417 IB_WIDTH_12X = 8
418};
419
420static inline int ib_width_enum_to_int(enum ib_port_width width)
421{
422 switch (width) {
423 case IB_WIDTH_1X: return 1;
424 case IB_WIDTH_4X: return 4;
425 case IB_WIDTH_8X: return 8;
426 case IB_WIDTH_12X: return 12;
427 default: return -1;
428 }
429}
430
Or Gerlitz2e966912012-02-28 18:49:50 +0200431enum ib_port_speed {
432 IB_SPEED_SDR = 1,
433 IB_SPEED_DDR = 2,
434 IB_SPEED_QDR = 4,
435 IB_SPEED_FDR10 = 8,
436 IB_SPEED_FDR = 16,
Noa Osherovich12113a32017-04-20 20:53:31 +0300437 IB_SPEED_EDR = 32,
438 IB_SPEED_HDR = 64
Or Gerlitz2e966912012-02-28 18:49:50 +0200439};
440
Christoph Lameterb40f4752016-05-16 12:49:33 -0500441/**
442 * struct rdma_hw_stats
443 * @timestamp - Used by the core code to track when the last update was
444 * @lifespan - Used by the core code to determine how old the counters
445 * should be before being updated again. Stored in jiffies, defaults
446 * to 10 milliseconds, drivers can override the default be specifying
447 * their own value during their allocation routine.
448 * @name - Array of pointers to static names used for the counters in
449 * directory.
450 * @num_counters - How many hardware counters there are. If name is
451 * shorter than this number, a kernel oops will result. Driver authors
452 * are encouraged to leave BUILD_BUG_ON(ARRAY_SIZE(@name) < num_counters)
453 * in their code to prevent this.
454 * @value - Array of u64 counters that are accessed by the sysfs code and
455 * filled in by the drivers get_stats routine
456 */
457struct rdma_hw_stats {
458 unsigned long timestamp;
459 unsigned long lifespan;
460 const char * const *names;
461 int num_counters;
462 u64 value[];
Steve Wise7f624d02008-07-14 23:48:48 -0700463};
464
Christoph Lameterb40f4752016-05-16 12:49:33 -0500465#define RDMA_HW_STATS_DEFAULT_LIFESPAN 10
466/**
467 * rdma_alloc_hw_stats_struct - Helper function to allocate dynamic struct
468 * for drivers.
469 * @names - Array of static const char *
470 * @num_counters - How many elements in array
471 * @lifespan - How many milliseconds between updates
472 */
473static inline struct rdma_hw_stats *rdma_alloc_hw_stats_struct(
474 const char * const *names, int num_counters,
475 unsigned long lifespan)
476{
477 struct rdma_hw_stats *stats;
Steve Wise7f624d02008-07-14 23:48:48 -0700478
Christoph Lameterb40f4752016-05-16 12:49:33 -0500479 stats = kzalloc(sizeof(*stats) + num_counters * sizeof(u64),
480 GFP_KERNEL);
481 if (!stats)
482 return NULL;
483 stats->names = names;
484 stats->num_counters = num_counters;
485 stats->lifespan = msecs_to_jiffies(lifespan);
Steve Wise7f624d02008-07-14 23:48:48 -0700486
Christoph Lameterb40f4752016-05-16 12:49:33 -0500487 return stats;
488}
489
Steve Wise7f624d02008-07-14 23:48:48 -0700490
Ira Weinyf9b22e32015-05-13 20:02:59 -0400491/* Define bits for the various functionality this port needs to be supported by
492 * the core.
493 */
494/* Management 0x00000FFF */
495#define RDMA_CORE_CAP_IB_MAD 0x00000001
496#define RDMA_CORE_CAP_IB_SMI 0x00000002
497#define RDMA_CORE_CAP_IB_CM 0x00000004
498#define RDMA_CORE_CAP_IW_CM 0x00000008
499#define RDMA_CORE_CAP_IB_SA 0x00000010
Ira Weiny65995fe2015-06-06 14:38:32 -0400500#define RDMA_CORE_CAP_OPA_MAD 0x00000020
Ira Weinyf9b22e32015-05-13 20:02:59 -0400501
502/* Address format 0x000FF000 */
503#define RDMA_CORE_CAP_AF_IB 0x00001000
504#define RDMA_CORE_CAP_ETH_AH 0x00002000
Dasaratharaman Chandramouli94d595c2017-03-20 19:38:09 -0400505#define RDMA_CORE_CAP_OPA_AH 0x00004000
Ira Weinyf9b22e32015-05-13 20:02:59 -0400506
507/* Protocol 0xFFF00000 */
508#define RDMA_CORE_CAP_PROT_IB 0x00100000
509#define RDMA_CORE_CAP_PROT_ROCE 0x00200000
510#define RDMA_CORE_CAP_PROT_IWARP 0x00400000
Matan Barak7766a992015-12-23 14:56:50 +0200511#define RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP 0x00800000
Or Gerlitzaa773bd2017-01-24 13:02:35 +0200512#define RDMA_CORE_CAP_PROT_RAW_PACKET 0x01000000
Or Gerlitzce1e0552017-01-24 13:02:38 +0200513#define RDMA_CORE_CAP_PROT_USNIC 0x02000000
Ira Weinyf9b22e32015-05-13 20:02:59 -0400514
515#define RDMA_CORE_PORT_IBA_IB (RDMA_CORE_CAP_PROT_IB \
516 | RDMA_CORE_CAP_IB_MAD \
517 | RDMA_CORE_CAP_IB_SMI \
518 | RDMA_CORE_CAP_IB_CM \
519 | RDMA_CORE_CAP_IB_SA \
520 | RDMA_CORE_CAP_AF_IB)
521#define RDMA_CORE_PORT_IBA_ROCE (RDMA_CORE_CAP_PROT_ROCE \
522 | RDMA_CORE_CAP_IB_MAD \
523 | RDMA_CORE_CAP_IB_CM \
Ira Weinyf9b22e32015-05-13 20:02:59 -0400524 | RDMA_CORE_CAP_AF_IB \
525 | RDMA_CORE_CAP_ETH_AH)
Matan Barak7766a992015-12-23 14:56:50 +0200526#define RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP \
527 (RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP \
528 | RDMA_CORE_CAP_IB_MAD \
529 | RDMA_CORE_CAP_IB_CM \
530 | RDMA_CORE_CAP_AF_IB \
531 | RDMA_CORE_CAP_ETH_AH)
Ira Weinyf9b22e32015-05-13 20:02:59 -0400532#define RDMA_CORE_PORT_IWARP (RDMA_CORE_CAP_PROT_IWARP \
533 | RDMA_CORE_CAP_IW_CM)
Ira Weiny65995fe2015-06-06 14:38:32 -0400534#define RDMA_CORE_PORT_INTEL_OPA (RDMA_CORE_PORT_IBA_IB \
535 | RDMA_CORE_CAP_OPA_MAD)
Ira Weinyf9b22e32015-05-13 20:02:59 -0400536
Or Gerlitzaa773bd2017-01-24 13:02:35 +0200537#define RDMA_CORE_PORT_RAW_PACKET (RDMA_CORE_CAP_PROT_RAW_PACKET)
538
Or Gerlitzce1e0552017-01-24 13:02:38 +0200539#define RDMA_CORE_PORT_USNIC (RDMA_CORE_CAP_PROT_USNIC)
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541struct ib_port_attr {
Eli Cohenfad61ad2016-03-11 22:58:36 +0200542 u64 subnet_prefix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 enum ib_port_state state;
544 enum ib_mtu max_mtu;
545 enum ib_mtu active_mtu;
546 int gid_tbl_len;
547 u32 port_cap_flags;
548 u32 max_msg_sz;
549 u32 bad_pkey_cntr;
550 u32 qkey_viol_cntr;
551 u16 pkey_tbl_len;
552 u16 lid;
553 u16 sm_lid;
554 u8 lmc;
555 u8 max_vl_num;
556 u8 sm_sl;
557 u8 subnet_timeout;
558 u8 init_type_reply;
559 u8 active_width;
560 u8 active_speed;
561 u8 phys_state;
Eli Cohena0c1b2a2016-03-11 22:58:37 +0200562 bool grh_required;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563};
564
565enum ib_device_modify_flags {
Roland Dreierc5bcbbb2006-02-02 09:47:14 -0800566 IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
567 IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568};
569
Yuval Shaiabd99fde2016-08-25 10:57:07 -0700570#define IB_DEVICE_NODE_DESC_MAX 64
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572struct ib_device_modify {
573 u64 sys_image_guid;
Yuval Shaiabd99fde2016-08-25 10:57:07 -0700574 char node_desc[IB_DEVICE_NODE_DESC_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575};
576
577enum ib_port_modify_flags {
578 IB_PORT_SHUTDOWN = 1,
579 IB_PORT_INIT_TYPE = (1<<2),
Vishwanathapura, Niranjanacb493662017-06-01 17:04:02 -0700580 IB_PORT_RESET_QKEY_CNTR = (1<<3),
581 IB_PORT_OPA_MASK_CHG = (1<<4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582};
583
584struct ib_port_modify {
585 u32 set_port_cap_mask;
586 u32 clr_port_cap_mask;
587 u8 init_type;
588};
589
590enum ib_event_type {
591 IB_EVENT_CQ_ERR,
592 IB_EVENT_QP_FATAL,
593 IB_EVENT_QP_REQ_ERR,
594 IB_EVENT_QP_ACCESS_ERR,
595 IB_EVENT_COMM_EST,
596 IB_EVENT_SQ_DRAINED,
597 IB_EVENT_PATH_MIG,
598 IB_EVENT_PATH_MIG_ERR,
599 IB_EVENT_DEVICE_FATAL,
600 IB_EVENT_PORT_ACTIVE,
601 IB_EVENT_PORT_ERR,
602 IB_EVENT_LID_CHANGE,
603 IB_EVENT_PKEY_CHANGE,
Roland Dreierd41fcc62005-08-18 12:23:08 -0700604 IB_EVENT_SM_CHANGE,
605 IB_EVENT_SRQ_ERR,
606 IB_EVENT_SRQ_LIMIT_REACHED,
Leonid Arsh63942c92006-06-17 20:37:35 -0700607 IB_EVENT_QP_LAST_WQE_REACHED,
Or Gerlitz761d90e2011-06-15 14:39:29 +0000608 IB_EVENT_CLIENT_REREGISTER,
609 IB_EVENT_GID_CHANGE,
Yishai Hadasf213c052016-05-23 15:20:49 +0300610 IB_EVENT_WQ_FATAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611};
612
Bart Van Asschedb7489e2015-08-03 10:01:52 -0700613const char *__attribute_const__ ib_event_msg(enum ib_event_type event);
Sagi Grimberg2b1b5b62015-05-18 13:40:28 +0300614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615struct ib_event {
616 struct ib_device *device;
617 union {
618 struct ib_cq *cq;
619 struct ib_qp *qp;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700620 struct ib_srq *srq;
Yishai Hadasf213c052016-05-23 15:20:49 +0300621 struct ib_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 u8 port_num;
623 } element;
624 enum ib_event_type event;
625};
626
627struct ib_event_handler {
628 struct ib_device *device;
629 void (*handler)(struct ib_event_handler *, struct ib_event *);
630 struct list_head list;
631};
632
633#define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
634 do { \
635 (_ptr)->device = _device; \
636 (_ptr)->handler = _handler; \
637 INIT_LIST_HEAD(&(_ptr)->list); \
638 } while (0)
639
640struct ib_global_route {
641 union ib_gid dgid;
642 u32 flow_label;
643 u8 sgid_index;
644 u8 hop_limit;
645 u8 traffic_class;
646};
647
Hal Rosenstock513789e2005-07-27 11:45:34 -0700648struct ib_grh {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700649 __be32 version_tclass_flow;
650 __be16 paylen;
Hal Rosenstock513789e2005-07-27 11:45:34 -0700651 u8 next_hdr;
652 u8 hop_limit;
653 union ib_gid sgid;
654 union ib_gid dgid;
655};
656
Somnath Koturc865f242015-12-23 14:56:51 +0200657union rdma_network_hdr {
658 struct ib_grh ibgrh;
659 struct {
660 /* The IB spec states that if it's IPv4, the header
661 * is located in the last 20 bytes of the header.
662 */
663 u8 reserved[20];
664 struct iphdr roce4grh;
665 };
666};
667
Don Hiatt7dafbab2017-05-12 09:19:55 -0700668#define IB_QPN_MASK 0xFFFFFF
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670enum {
671 IB_MULTICAST_QPN = 0xffffff
672};
673
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800674#define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800675#define IB_MULTICAST_LID_BASE cpu_to_be16(0xC000)
Sean Hefty97f52eb2005-08-13 21:05:57 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677enum ib_ah_flags {
678 IB_AH_GRH = 1
679};
680
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700681enum ib_rate {
682 IB_RATE_PORT_CURRENT = 0,
683 IB_RATE_2_5_GBPS = 2,
684 IB_RATE_5_GBPS = 5,
685 IB_RATE_10_GBPS = 3,
686 IB_RATE_20_GBPS = 6,
687 IB_RATE_30_GBPS = 4,
688 IB_RATE_40_GBPS = 7,
689 IB_RATE_60_GBPS = 8,
690 IB_RATE_80_GBPS = 9,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300691 IB_RATE_120_GBPS = 10,
692 IB_RATE_14_GBPS = 11,
693 IB_RATE_56_GBPS = 12,
694 IB_RATE_112_GBPS = 13,
695 IB_RATE_168_GBPS = 14,
696 IB_RATE_25_GBPS = 15,
697 IB_RATE_100_GBPS = 16,
698 IB_RATE_200_GBPS = 17,
699 IB_RATE_300_GBPS = 18
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700700};
701
702/**
703 * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
704 * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
705 * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
706 * @rate: rate to convert.
707 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700708__attribute_const__ int ib_rate_to_mult(enum ib_rate rate);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700709
710/**
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300711 * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
712 * For example, IB_RATE_2_5_GBPS will be converted to 2500.
713 * @rate: rate to convert.
714 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700715__attribute_const__ int ib_rate_to_mbps(enum ib_rate rate);
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300716
Sagi Grimberg17cd3a22014-02-23 14:19:04 +0200717
718/**
Sagi Grimberg9bee1782015-07-30 10:32:35 +0300719 * enum ib_mr_type - memory region type
720 * @IB_MR_TYPE_MEM_REG: memory region that is used for
721 * normal registration
722 * @IB_MR_TYPE_SIGNATURE: memory region that is used for
723 * signature operations (data-integrity
724 * capable regions)
Sagi Grimbergf5aa9152016-02-29 19:07:32 +0200725 * @IB_MR_TYPE_SG_GAPS: memory region that is capable to
726 * register any arbitrary sg lists (without
727 * the normal mr constraints - see
728 * ib_map_mr_sg)
Sagi Grimberg17cd3a22014-02-23 14:19:04 +0200729 */
Sagi Grimberg9bee1782015-07-30 10:32:35 +0300730enum ib_mr_type {
731 IB_MR_TYPE_MEM_REG,
732 IB_MR_TYPE_SIGNATURE,
Sagi Grimbergf5aa9152016-02-29 19:07:32 +0200733 IB_MR_TYPE_SG_GAPS,
Sagi Grimberg17cd3a22014-02-23 14:19:04 +0200734};
735
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200736/**
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300737 * Signature types
738 * IB_SIG_TYPE_NONE: Unprotected.
739 * IB_SIG_TYPE_T10_DIF: Type T10-DIF
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200740 */
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300741enum ib_signature_type {
742 IB_SIG_TYPE_NONE,
743 IB_SIG_TYPE_T10_DIF,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200744};
745
746/**
747 * Signature T10-DIF block-guard types
748 * IB_T10DIF_CRC: Corresponds to T10-PI mandated CRC checksum rules.
749 * IB_T10DIF_CSUM: Corresponds to IP checksum rules.
750 */
751enum ib_t10_dif_bg_type {
752 IB_T10DIF_CRC,
753 IB_T10DIF_CSUM
754};
755
756/**
757 * struct ib_t10_dif_domain - Parameters specific for T10-DIF
758 * domain.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200759 * @bg_type: T10-DIF block guard type (CRC|CSUM)
760 * @pi_interval: protection information interval.
761 * @bg: seed of guard computation.
762 * @app_tag: application tag of guard block
763 * @ref_tag: initial guard block reference tag.
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300764 * @ref_remap: Indicate wethear the reftag increments each block
765 * @app_escape: Indicate to skip block check if apptag=0xffff
766 * @ref_escape: Indicate to skip block check if reftag=0xffffffff
767 * @apptag_check_mask: check bitmask of application tag.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200768 */
769struct ib_t10_dif_domain {
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200770 enum ib_t10_dif_bg_type bg_type;
771 u16 pi_interval;
772 u16 bg;
773 u16 app_tag;
774 u32 ref_tag;
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300775 bool ref_remap;
776 bool app_escape;
777 bool ref_escape;
778 u16 apptag_check_mask;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200779};
780
781/**
782 * struct ib_sig_domain - Parameters for signature domain
783 * @sig_type: specific signauture type
784 * @sig: union of all signature domain attributes that may
785 * be used to set domain layout.
786 */
787struct ib_sig_domain {
788 enum ib_signature_type sig_type;
789 union {
790 struct ib_t10_dif_domain dif;
791 } sig;
792};
793
794/**
795 * struct ib_sig_attrs - Parameters for signature handover operation
796 * @check_mask: bitmask for signature byte check (8 bytes)
797 * @mem: memory domain layout desciptor.
798 * @wire: wire domain layout desciptor.
799 */
800struct ib_sig_attrs {
801 u8 check_mask;
802 struct ib_sig_domain mem;
803 struct ib_sig_domain wire;
804};
805
806enum ib_sig_err_type {
807 IB_SIG_BAD_GUARD,
808 IB_SIG_BAD_REFTAG,
809 IB_SIG_BAD_APPTAG,
810};
811
812/**
813 * struct ib_sig_err - signature error descriptor
814 */
815struct ib_sig_err {
816 enum ib_sig_err_type err_type;
817 u32 expected;
818 u32 actual;
819 u64 sig_err_offset;
820 u32 key;
821};
822
823enum ib_mr_status_check {
824 IB_MR_CHECK_SIG_STATUS = 1,
825};
826
827/**
828 * struct ib_mr_status - Memory region status container
829 *
830 * @fail_status: Bitmask of MR checks status. For each
831 * failed check a corresponding status bit is set.
832 * @sig_err: Additional info for IB_MR_CEHCK_SIG_STATUS
833 * failure.
834 */
835struct ib_mr_status {
836 u32 fail_status;
837 struct ib_sig_err sig_err;
838};
839
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300840/**
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700841 * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
842 * enum.
843 * @mult: multiple to convert.
844 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700845__attribute_const__ enum ib_rate mult_to_ib_rate(int mult);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700846
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -0400847enum rdma_ah_attr_type {
848 RDMA_AH_ATTR_TYPE_IB,
849 RDMA_AH_ATTR_TYPE_ROCE,
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -0400850 RDMA_AH_ATTR_TYPE_OPA,
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -0400851};
852
853struct ib_ah_attr {
854 u16 dlid;
855 u8 src_path_bits;
856};
857
858struct roce_ah_attr {
859 u8 dmac[ETH_ALEN];
860};
861
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -0400862struct opa_ah_attr {
863 u32 dlid;
864 u8 src_path_bits;
865};
866
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -0400867struct rdma_ah_attr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct ib_global_route grh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 u8 sl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 u8 static_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 u8 port_num;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -0400872 u8 ah_flags;
873 enum rdma_ah_attr_type type;
874 union {
875 struct ib_ah_attr ib;
876 struct roce_ah_attr roce;
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -0400877 struct opa_ah_attr opa;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -0400878 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879};
880
881enum ib_wc_status {
882 IB_WC_SUCCESS,
883 IB_WC_LOC_LEN_ERR,
884 IB_WC_LOC_QP_OP_ERR,
885 IB_WC_LOC_EEC_OP_ERR,
886 IB_WC_LOC_PROT_ERR,
887 IB_WC_WR_FLUSH_ERR,
888 IB_WC_MW_BIND_ERR,
889 IB_WC_BAD_RESP_ERR,
890 IB_WC_LOC_ACCESS_ERR,
891 IB_WC_REM_INV_REQ_ERR,
892 IB_WC_REM_ACCESS_ERR,
893 IB_WC_REM_OP_ERR,
894 IB_WC_RETRY_EXC_ERR,
895 IB_WC_RNR_RETRY_EXC_ERR,
896 IB_WC_LOC_RDD_VIOL_ERR,
897 IB_WC_REM_INV_RD_REQ_ERR,
898 IB_WC_REM_ABORT_ERR,
899 IB_WC_INV_EECN_ERR,
900 IB_WC_INV_EEC_STATE_ERR,
901 IB_WC_FATAL_ERR,
902 IB_WC_RESP_TIMEOUT_ERR,
903 IB_WC_GENERAL_ERR
904};
905
Bart Van Asschedb7489e2015-08-03 10:01:52 -0700906const char *__attribute_const__ ib_wc_status_msg(enum ib_wc_status status);
Sagi Grimberg2b1b5b62015-05-18 13:40:28 +0300907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908enum ib_wc_opcode {
909 IB_WC_SEND,
910 IB_WC_RDMA_WRITE,
911 IB_WC_RDMA_READ,
912 IB_WC_COMP_SWAP,
913 IB_WC_FETCH_ADD,
Eli Cohenc93570f2008-04-16 21:09:27 -0700914 IB_WC_LSO,
Steve Wise00f7ec32008-07-14 23:48:45 -0700915 IB_WC_LOCAL_INV,
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +0300916 IB_WC_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300917 IB_WC_MASKED_COMP_SWAP,
918 IB_WC_MASKED_FETCH_ADD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919/*
920 * Set value of IB_WC_RECV so consumers can test if a completion is a
921 * receive by testing (opcode & IB_WC_RECV).
922 */
923 IB_WC_RECV = 1 << 7,
924 IB_WC_RECV_RDMA_WITH_IMM
925};
926
927enum ib_wc_flags {
928 IB_WC_GRH = 1,
Steve Wise00f7ec32008-07-14 23:48:45 -0700929 IB_WC_WITH_IMM = (1<<1),
930 IB_WC_WITH_INVALIDATE = (1<<2),
Or Gerlitzd927d502012-01-11 19:03:51 +0200931 IB_WC_IP_CSUM_OK = (1<<3),
Matan Barakdd5f03b2013-12-12 18:03:11 +0200932 IB_WC_WITH_SMAC = (1<<4),
933 IB_WC_WITH_VLAN = (1<<5),
Somnath Koturc865f242015-12-23 14:56:51 +0200934 IB_WC_WITH_NETWORK_HDR_TYPE = (1<<6),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935};
936
937struct ib_wc {
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -0800938 union {
939 u64 wr_id;
940 struct ib_cqe *wr_cqe;
941 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 enum ib_wc_status status;
943 enum ib_wc_opcode opcode;
944 u32 vendor_err;
945 u32 byte_len;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200946 struct ib_qp *qp;
Steve Wise00f7ec32008-07-14 23:48:45 -0700947 union {
948 __be32 imm_data;
949 u32 invalidate_rkey;
950 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 u32 src_qp;
952 int wc_flags;
953 u16 pkey_index;
954 u16 slid;
955 u8 sl;
956 u8 dlid_path_bits;
957 u8 port_num; /* valid only for DR SMPs on switches */
Matan Barakdd5f03b2013-12-12 18:03:11 +0200958 u8 smac[ETH_ALEN];
959 u16 vlan_id;
Somnath Koturc865f242015-12-23 14:56:51 +0200960 u8 network_hdr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961};
962
Roland Dreiered23a722007-05-06 21:02:48 -0700963enum ib_cq_notify_flags {
964 IB_CQ_SOLICITED = 1 << 0,
965 IB_CQ_NEXT_COMP = 1 << 1,
966 IB_CQ_SOLICITED_MASK = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
967 IB_CQ_REPORT_MISSED_EVENTS = 1 << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968};
969
Sean Hefty96104ed2011-05-23 16:31:36 -0700970enum ib_srq_type {
Sean Hefty418d5132011-05-23 19:42:29 -0700971 IB_SRQT_BASIC,
972 IB_SRQT_XRC
Sean Hefty96104ed2011-05-23 16:31:36 -0700973};
974
Roland Dreierd41fcc62005-08-18 12:23:08 -0700975enum ib_srq_attr_mask {
976 IB_SRQ_MAX_WR = 1 << 0,
977 IB_SRQ_LIMIT = 1 << 1,
978};
979
980struct ib_srq_attr {
981 u32 max_wr;
982 u32 max_sge;
983 u32 srq_limit;
984};
985
986struct ib_srq_init_attr {
987 void (*event_handler)(struct ib_event *, void *);
988 void *srq_context;
989 struct ib_srq_attr attr;
Sean Hefty96104ed2011-05-23 16:31:36 -0700990 enum ib_srq_type srq_type;
Sean Hefty418d5132011-05-23 19:42:29 -0700991
992 union {
993 struct {
994 struct ib_xrcd *xrcd;
995 struct ib_cq *cq;
996 } xrc;
997 } ext;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700998};
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000struct ib_qp_cap {
1001 u32 max_send_wr;
1002 u32 max_recv_wr;
1003 u32 max_send_sge;
1004 u32 max_recv_sge;
1005 u32 max_inline_data;
Christoph Hellwiga060b562016-05-03 18:01:09 +02001006
1007 /*
1008 * Maximum number of rdma_rw_ctx structures in flight at a time.
1009 * ib_create_qp() will calculate the right amount of neededed WRs
1010 * and MRs based on this.
1011 */
1012 u32 max_rdma_ctxs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013};
1014
1015enum ib_sig_type {
1016 IB_SIGNAL_ALL_WR,
1017 IB_SIGNAL_REQ_WR
1018};
1019
1020enum ib_qp_type {
1021 /*
1022 * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
1023 * here (and in that order) since the MAD layer uses them as
1024 * indices into a 2-entry table.
1025 */
1026 IB_QPT_SMI,
1027 IB_QPT_GSI,
1028
1029 IB_QPT_RC,
1030 IB_QPT_UC,
1031 IB_QPT_UD,
1032 IB_QPT_RAW_IPV6,
Sean Heftyb42b63c2011-05-23 19:59:25 -07001033 IB_QPT_RAW_ETHERTYPE,
Or Gerlitzc938a612012-03-01 12:17:51 +02001034 IB_QPT_RAW_PACKET = 8,
Sean Heftyb42b63c2011-05-23 19:59:25 -07001035 IB_QPT_XRC_INI = 9,
1036 IB_QPT_XRC_TGT,
Jack Morgenstein0134f162013-07-07 17:25:52 +03001037 IB_QPT_MAX,
1038 /* Reserve a range for qp types internal to the low level driver.
1039 * These qp types will not be visible at the IB core layer, so the
1040 * IB_QPT_MAX usages should not be affected in the core layer
1041 */
1042 IB_QPT_RESERVED1 = 0x1000,
1043 IB_QPT_RESERVED2,
1044 IB_QPT_RESERVED3,
1045 IB_QPT_RESERVED4,
1046 IB_QPT_RESERVED5,
1047 IB_QPT_RESERVED6,
1048 IB_QPT_RESERVED7,
1049 IB_QPT_RESERVED8,
1050 IB_QPT_RESERVED9,
1051 IB_QPT_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052};
1053
Eli Cohenb846f252008-04-16 21:09:27 -07001054enum ib_qp_create_flags {
Ron Livne47ee1b92008-07-14 23:48:48 -07001055 IB_QP_CREATE_IPOIB_UD_LSO = 1 << 0,
1056 IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1,
Leon Romanovsky8a06ce52015-12-20 12:16:10 +02001057 IB_QP_CREATE_CROSS_CHANNEL = 1 << 2,
1058 IB_QP_CREATE_MANAGED_SEND = 1 << 3,
1059 IB_QP_CREATE_MANAGED_RECV = 1 << 4,
Matan Barak90f1d1b2013-11-07 15:25:12 +02001060 IB_QP_CREATE_NETIF_QP = 1 << 5,
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001061 IB_QP_CREATE_SIGNATURE_EN = 1 << 6,
Or Gerlitz09b93082014-05-11 15:15:11 +03001062 IB_QP_CREATE_USE_GFP_NOIO = 1 << 7,
Majd Dibbinyb531b902016-04-17 17:19:36 +03001063 IB_QP_CREATE_SCATTER_FCS = 1 << 8,
Noa Osherovich9c2b2702017-01-18 15:39:56 +02001064 IB_QP_CREATE_CVLAN_STRIPPING = 1 << 9,
Jack Morgensteind2b57062012-08-03 08:40:37 +00001065 /* reserve bits 26-31 for low level drivers' internal use */
1066 IB_QP_CREATE_RESERVED_START = 1 << 26,
1067 IB_QP_CREATE_RESERVED_END = 1 << 31,
Eli Cohenb846f252008-04-16 21:09:27 -07001068};
1069
Yishai Hadas73c40c62013-08-01 18:49:53 +03001070/*
1071 * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
1072 * callback to destroy the passed in QP.
1073 */
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075struct ib_qp_init_attr {
1076 void (*event_handler)(struct ib_event *, void *);
1077 void *qp_context;
1078 struct ib_cq *send_cq;
1079 struct ib_cq *recv_cq;
1080 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001081 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 struct ib_qp_cap cap;
1083 enum ib_sig_type sq_sig_type;
1084 enum ib_qp_type qp_type;
Eli Cohenb846f252008-04-16 21:09:27 -07001085 enum ib_qp_create_flags create_flags;
Christoph Hellwiga060b562016-05-03 18:01:09 +02001086
1087 /*
1088 * Only needed for special QP types, or when using the RW API.
1089 */
1090 u8 port_num;
Yishai Hadasa9017e22016-05-23 15:20:54 +03001091 struct ib_rwq_ind_table *rwq_ind_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092};
1093
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07001094struct ib_qp_open_attr {
1095 void (*event_handler)(struct ib_event *, void *);
1096 void *qp_context;
1097 u32 qp_num;
1098 enum ib_qp_type qp_type;
1099};
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101enum ib_rnr_timeout {
1102 IB_RNR_TIMER_655_36 = 0,
1103 IB_RNR_TIMER_000_01 = 1,
1104 IB_RNR_TIMER_000_02 = 2,
1105 IB_RNR_TIMER_000_03 = 3,
1106 IB_RNR_TIMER_000_04 = 4,
1107 IB_RNR_TIMER_000_06 = 5,
1108 IB_RNR_TIMER_000_08 = 6,
1109 IB_RNR_TIMER_000_12 = 7,
1110 IB_RNR_TIMER_000_16 = 8,
1111 IB_RNR_TIMER_000_24 = 9,
1112 IB_RNR_TIMER_000_32 = 10,
1113 IB_RNR_TIMER_000_48 = 11,
1114 IB_RNR_TIMER_000_64 = 12,
1115 IB_RNR_TIMER_000_96 = 13,
1116 IB_RNR_TIMER_001_28 = 14,
1117 IB_RNR_TIMER_001_92 = 15,
1118 IB_RNR_TIMER_002_56 = 16,
1119 IB_RNR_TIMER_003_84 = 17,
1120 IB_RNR_TIMER_005_12 = 18,
1121 IB_RNR_TIMER_007_68 = 19,
1122 IB_RNR_TIMER_010_24 = 20,
1123 IB_RNR_TIMER_015_36 = 21,
1124 IB_RNR_TIMER_020_48 = 22,
1125 IB_RNR_TIMER_030_72 = 23,
1126 IB_RNR_TIMER_040_96 = 24,
1127 IB_RNR_TIMER_061_44 = 25,
1128 IB_RNR_TIMER_081_92 = 26,
1129 IB_RNR_TIMER_122_88 = 27,
1130 IB_RNR_TIMER_163_84 = 28,
1131 IB_RNR_TIMER_245_76 = 29,
1132 IB_RNR_TIMER_327_68 = 30,
1133 IB_RNR_TIMER_491_52 = 31
1134};
1135
1136enum ib_qp_attr_mask {
1137 IB_QP_STATE = 1,
1138 IB_QP_CUR_STATE = (1<<1),
1139 IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
1140 IB_QP_ACCESS_FLAGS = (1<<3),
1141 IB_QP_PKEY_INDEX = (1<<4),
1142 IB_QP_PORT = (1<<5),
1143 IB_QP_QKEY = (1<<6),
1144 IB_QP_AV = (1<<7),
1145 IB_QP_PATH_MTU = (1<<8),
1146 IB_QP_TIMEOUT = (1<<9),
1147 IB_QP_RETRY_CNT = (1<<10),
1148 IB_QP_RNR_RETRY = (1<<11),
1149 IB_QP_RQ_PSN = (1<<12),
1150 IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
1151 IB_QP_ALT_PATH = (1<<14),
1152 IB_QP_MIN_RNR_TIMER = (1<<15),
1153 IB_QP_SQ_PSN = (1<<16),
1154 IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
1155 IB_QP_PATH_MIG_STATE = (1<<18),
1156 IB_QP_CAP = (1<<19),
Matan Barakdd5f03b2013-12-12 18:03:11 +02001157 IB_QP_DEST_QPN = (1<<20),
Matan Barakaa744cc2015-10-15 18:38:53 +03001158 IB_QP_RESERVED1 = (1<<21),
1159 IB_QP_RESERVED2 = (1<<22),
1160 IB_QP_RESERVED3 = (1<<23),
1161 IB_QP_RESERVED4 = (1<<24),
Bodong Wang528e5a12016-12-01 13:43:14 +02001162 IB_QP_RATE_LIMIT = (1<<25),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163};
1164
1165enum ib_qp_state {
1166 IB_QPS_RESET,
1167 IB_QPS_INIT,
1168 IB_QPS_RTR,
1169 IB_QPS_RTS,
1170 IB_QPS_SQD,
1171 IB_QPS_SQE,
1172 IB_QPS_ERR
1173};
1174
1175enum ib_mig_state {
1176 IB_MIG_MIGRATED,
1177 IB_MIG_REARM,
1178 IB_MIG_ARMED
1179};
1180
Shani Michaeli7083e422013-02-06 16:19:12 +00001181enum ib_mw_type {
1182 IB_MW_TYPE_1 = 1,
1183 IB_MW_TYPE_2 = 2
1184};
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186struct ib_qp_attr {
1187 enum ib_qp_state qp_state;
1188 enum ib_qp_state cur_qp_state;
1189 enum ib_mtu path_mtu;
1190 enum ib_mig_state path_mig_state;
1191 u32 qkey;
1192 u32 rq_psn;
1193 u32 sq_psn;
1194 u32 dest_qp_num;
1195 int qp_access_flags;
1196 struct ib_qp_cap cap;
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001197 struct rdma_ah_attr ah_attr;
1198 struct rdma_ah_attr alt_ah_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 u16 pkey_index;
1200 u16 alt_pkey_index;
1201 u8 en_sqd_async_notify;
1202 u8 sq_draining;
1203 u8 max_rd_atomic;
1204 u8 max_dest_rd_atomic;
1205 u8 min_rnr_timer;
1206 u8 port_num;
1207 u8 timeout;
1208 u8 retry_cnt;
1209 u8 rnr_retry;
1210 u8 alt_port_num;
1211 u8 alt_timeout;
Bodong Wang528e5a12016-12-01 13:43:14 +02001212 u32 rate_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213};
1214
1215enum ib_wr_opcode {
1216 IB_WR_RDMA_WRITE,
1217 IB_WR_RDMA_WRITE_WITH_IMM,
1218 IB_WR_SEND,
1219 IB_WR_SEND_WITH_IMM,
1220 IB_WR_RDMA_READ,
1221 IB_WR_ATOMIC_CMP_AND_SWP,
Eli Cohenc93570f2008-04-16 21:09:27 -07001222 IB_WR_ATOMIC_FETCH_AND_ADD,
Roland Dreier0f39cf32008-04-16 21:09:32 -07001223 IB_WR_LSO,
1224 IB_WR_SEND_WITH_INV,
Steve Wise00f7ec32008-07-14 23:48:45 -07001225 IB_WR_RDMA_READ_WITH_INV,
1226 IB_WR_LOCAL_INV,
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03001227 IB_WR_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +03001228 IB_WR_MASKED_ATOMIC_CMP_AND_SWP,
1229 IB_WR_MASKED_ATOMIC_FETCH_AND_ADD,
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001230 IB_WR_REG_SIG_MR,
Jack Morgenstein0134f162013-07-07 17:25:52 +03001231 /* reserve values for low level drivers' internal use.
1232 * These values will not be used at all in the ib core layer.
1233 */
1234 IB_WR_RESERVED1 = 0xf0,
1235 IB_WR_RESERVED2,
1236 IB_WR_RESERVED3,
1237 IB_WR_RESERVED4,
1238 IB_WR_RESERVED5,
1239 IB_WR_RESERVED6,
1240 IB_WR_RESERVED7,
1241 IB_WR_RESERVED8,
1242 IB_WR_RESERVED9,
1243 IB_WR_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244};
1245
1246enum ib_send_flags {
1247 IB_SEND_FENCE = 1,
1248 IB_SEND_SIGNALED = (1<<1),
1249 IB_SEND_SOLICITED = (1<<2),
Eli Cohene0605d92008-01-30 18:30:57 +02001250 IB_SEND_INLINE = (1<<3),
Jack Morgenstein0134f162013-07-07 17:25:52 +03001251 IB_SEND_IP_CSUM = (1<<4),
1252
1253 /* reserve bits 26-31 for low level drivers' internal use */
1254 IB_SEND_RESERVED_START = (1 << 26),
1255 IB_SEND_RESERVED_END = (1 << 31),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256};
1257
1258struct ib_sge {
1259 u64 addr;
1260 u32 length;
1261 u32 lkey;
1262};
1263
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001264struct ib_cqe {
1265 void (*done)(struct ib_cq *cq, struct ib_wc *wc);
1266};
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268struct ib_send_wr {
1269 struct ib_send_wr *next;
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001270 union {
1271 u64 wr_id;
1272 struct ib_cqe *wr_cqe;
1273 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct ib_sge *sg_list;
1275 int num_sge;
1276 enum ib_wr_opcode opcode;
1277 int send_flags;
Roland Dreier0f39cf32008-04-16 21:09:32 -07001278 union {
1279 __be32 imm_data;
1280 u32 invalidate_rkey;
1281 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282};
1283
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001284struct ib_rdma_wr {
1285 struct ib_send_wr wr;
1286 u64 remote_addr;
1287 u32 rkey;
1288};
1289
1290static inline struct ib_rdma_wr *rdma_wr(struct ib_send_wr *wr)
1291{
1292 return container_of(wr, struct ib_rdma_wr, wr);
1293}
1294
1295struct ib_atomic_wr {
1296 struct ib_send_wr wr;
1297 u64 remote_addr;
1298 u64 compare_add;
1299 u64 swap;
1300 u64 compare_add_mask;
1301 u64 swap_mask;
1302 u32 rkey;
1303};
1304
1305static inline struct ib_atomic_wr *atomic_wr(struct ib_send_wr *wr)
1306{
1307 return container_of(wr, struct ib_atomic_wr, wr);
1308}
1309
1310struct ib_ud_wr {
1311 struct ib_send_wr wr;
1312 struct ib_ah *ah;
1313 void *header;
1314 int hlen;
1315 int mss;
1316 u32 remote_qpn;
1317 u32 remote_qkey;
1318 u16 pkey_index; /* valid for GSI only */
1319 u8 port_num; /* valid for DR SMPs on switch only */
1320};
1321
1322static inline struct ib_ud_wr *ud_wr(struct ib_send_wr *wr)
1323{
1324 return container_of(wr, struct ib_ud_wr, wr);
1325}
1326
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03001327struct ib_reg_wr {
1328 struct ib_send_wr wr;
1329 struct ib_mr *mr;
1330 u32 key;
1331 int access;
1332};
1333
1334static inline struct ib_reg_wr *reg_wr(struct ib_send_wr *wr)
1335{
1336 return container_of(wr, struct ib_reg_wr, wr);
1337}
1338
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001339struct ib_sig_handover_wr {
1340 struct ib_send_wr wr;
1341 struct ib_sig_attrs *sig_attrs;
1342 struct ib_mr *sig_mr;
1343 int access_flags;
1344 struct ib_sge *prot;
1345};
1346
1347static inline struct ib_sig_handover_wr *sig_handover_wr(struct ib_send_wr *wr)
1348{
1349 return container_of(wr, struct ib_sig_handover_wr, wr);
1350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352struct ib_recv_wr {
1353 struct ib_recv_wr *next;
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001354 union {
1355 u64 wr_id;
1356 struct ib_cqe *wr_cqe;
1357 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 struct ib_sge *sg_list;
1359 int num_sge;
1360};
1361
1362enum ib_access_flags {
1363 IB_ACCESS_LOCAL_WRITE = 1,
1364 IB_ACCESS_REMOTE_WRITE = (1<<1),
1365 IB_ACCESS_REMOTE_READ = (1<<2),
1366 IB_ACCESS_REMOTE_ATOMIC = (1<<3),
Shani Michaeli7083e422013-02-06 16:19:12 +00001367 IB_ACCESS_MW_BIND = (1<<4),
Sagi Grimberg860f10a2014-12-11 17:04:16 +02001368 IB_ZERO_BASED = (1<<5),
1369 IB_ACCESS_ON_DEMAND = (1<<6),
Artemy Kovalyov0008b842017-04-05 09:23:57 +03001370 IB_ACCESS_HUGETLB = (1<<7),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371};
1372
Christoph Hellwigb7d3e0a2015-12-23 19:12:47 +01001373/*
1374 * XXX: these are apparently used for ->rereg_user_mr, no idea why they
1375 * are hidden here instead of a uapi header!
1376 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377enum ib_mr_rereg_flags {
1378 IB_MR_REREG_TRANS = 1,
1379 IB_MR_REREG_PD = (1<<1),
Matan Barak7e6edb92014-07-31 11:01:28 +03001380 IB_MR_REREG_ACCESS = (1<<2),
1381 IB_MR_REREG_SUPPORTED = ((IB_MR_REREG_ACCESS << 1) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382};
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384struct ib_fmr_attr {
1385 int max_pages;
1386 int max_maps;
Or Gerlitzd36f34a2006-02-02 10:43:45 -08001387 u8 page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388};
1389
Haggai Eran882214e2014-12-11 17:04:18 +02001390struct ib_umem;
1391
Matan Barak38321252017-04-04 13:31:42 +03001392enum rdma_remove_reason {
1393 /* Userspace requested uobject deletion. Call could fail */
1394 RDMA_REMOVE_DESTROY,
1395 /* Context deletion. This call should delete the actual object itself */
1396 RDMA_REMOVE_CLOSE,
1397 /* Driver is being hot-unplugged. This call should delete the actual object itself */
1398 RDMA_REMOVE_DRIVER_REMOVE,
1399 /* Context is being cleaned-up, but commit was just completed */
1400 RDMA_REMOVE_DURING_CLEANUP,
1401};
1402
Parav Pandit43579b52017-01-10 00:02:14 +00001403struct ib_rdmacg_object {
1404#ifdef CONFIG_CGROUP_RDMA
1405 struct rdma_cgroup *cg; /* owner rdma cgroup */
1406#endif
1407};
1408
Roland Dreiere2773c02005-07-07 17:57:10 -07001409struct ib_ucontext {
1410 struct ib_device *device;
Matan Barak771addf2017-04-04 13:31:41 +03001411 struct ib_uverbs_file *ufile;
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001412 int closing;
Shachar Raindel8ada2c12014-12-11 17:04:17 +02001413
Matan Barak38321252017-04-04 13:31:42 +03001414 /* locking the uobjects_list */
1415 struct mutex uobjects_lock;
1416 struct list_head uobjects;
1417 /* protects cleanup process from other actions */
1418 struct rw_semaphore cleanup_rwsem;
1419 enum rdma_remove_reason cleanup_reason;
1420
Shachar Raindel8ada2c12014-12-11 17:04:17 +02001421 struct pid *tgid;
Haggai Eran882214e2014-12-11 17:04:18 +02001422#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1423 struct rb_root umem_tree;
1424 /*
1425 * Protects .umem_rbroot and tree, as well as odp_mrs_count and
1426 * mmu notifiers registration.
1427 */
1428 struct rw_semaphore umem_rwsem;
1429 void (*invalidate_range)(struct ib_umem *umem,
1430 unsigned long start, unsigned long end);
1431
1432 struct mmu_notifier mn;
1433 atomic_t notifier_count;
1434 /* A list of umems that don't have private mmu notifier counters yet. */
1435 struct list_head no_private_counters;
1436 int odp_mrs_count;
1437#endif
Parav Pandit43579b52017-01-10 00:02:14 +00001438
1439 struct ib_rdmacg_object cg_obj;
Roland Dreiere2773c02005-07-07 17:57:10 -07001440};
1441
1442struct ib_uobject {
1443 u64 user_handle; /* handle given to us by userspace */
1444 struct ib_ucontext *context; /* associated user context */
Roland Dreier9ead1902006-06-17 20:44:49 -07001445 void *object; /* containing object */
Roland Dreiere2773c02005-07-07 17:57:10 -07001446 struct list_head list; /* link to context's list */
Parav Pandit43579b52017-01-10 00:02:14 +00001447 struct ib_rdmacg_object cg_obj; /* rdmacg object */
Roland Dreierb3d636b2008-04-16 21:01:06 -07001448 int id; /* index into kernel idr */
Roland Dreier9ead1902006-06-17 20:44:49 -07001449 struct kref ref;
Matan Barak38321252017-04-04 13:31:42 +03001450 atomic_t usecnt; /* protects exclusive access */
Mike Marciniszynd144da82015-11-02 12:13:25 -05001451 struct rcu_head rcu; /* kfree_rcu() overhead */
Matan Barak38321252017-04-04 13:31:42 +03001452
1453 const struct uverbs_obj_type *type;
Roland Dreiere2773c02005-07-07 17:57:10 -07001454};
1455
Matan Barakcf8966b2017-04-04 13:31:46 +03001456struct ib_uobject_file {
1457 struct ib_uobject uobj;
1458 /* ufile contains the lock between context release and file close */
1459 struct ib_uverbs_file *ufile;
Roland Dreiere2773c02005-07-07 17:57:10 -07001460};
1461
Roland Dreiere2773c02005-07-07 17:57:10 -07001462struct ib_udata {
Yann Droneaud309243e2013-12-11 23:01:44 +01001463 const void __user *inbuf;
Roland Dreiere2773c02005-07-07 17:57:10 -07001464 void __user *outbuf;
1465 size_t inlen;
1466 size_t outlen;
1467};
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469struct ib_pd {
Jason Gunthorpe96249d72015-08-05 14:14:45 -06001470 u32 local_dma_lkey;
Christoph Hellwiged082d32016-09-05 12:56:17 +02001471 u32 flags;
Roland Dreiere2773c02005-07-07 17:57:10 -07001472 struct ib_device *device;
1473 struct ib_uobject *uobject;
1474 atomic_t usecnt; /* count all resources */
Christoph Hellwig50d46332016-09-05 12:56:16 +02001475
Christoph Hellwiged082d32016-09-05 12:56:17 +02001476 u32 unsafe_global_rkey;
1477
Christoph Hellwig50d46332016-09-05 12:56:16 +02001478 /*
1479 * Implementation details of the RDMA core, don't use in drivers:
1480 */
1481 struct ib_mr *__internal_mr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482};
1483
Sean Hefty59991f92011-05-23 17:52:46 -07001484struct ib_xrcd {
1485 struct ib_device *device;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001486 atomic_t usecnt; /* count all exposed resources */
Sean Hefty53d0bd12011-05-24 08:33:46 -07001487 struct inode *inode;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001488
1489 struct mutex tgt_qp_mutex;
1490 struct list_head tgt_qp_list;
Sean Hefty59991f92011-05-23 17:52:46 -07001491};
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493struct ib_ah {
1494 struct ib_device *device;
1495 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001496 struct ib_uobject *uobject;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04001497 enum rdma_ah_attr_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498};
1499
1500typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1501
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001502enum ib_poll_context {
1503 IB_POLL_DIRECT, /* caller context, no hw completions */
1504 IB_POLL_SOFTIRQ, /* poll from softirq context */
1505 IB_POLL_WORKQUEUE, /* poll from workqueue */
1506};
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508struct ib_cq {
Roland Dreiere2773c02005-07-07 17:57:10 -07001509 struct ib_device *device;
1510 struct ib_uobject *uobject;
1511 ib_comp_handler comp_handler;
1512 void (*event_handler)(struct ib_event *, void *);
Dotan Barak4deccd62008-07-14 23:48:44 -07001513 void *cq_context;
Roland Dreiere2773c02005-07-07 17:57:10 -07001514 int cqe;
1515 atomic_t usecnt; /* count number of work queues */
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001516 enum ib_poll_context poll_ctx;
1517 struct ib_wc *wc;
1518 union {
1519 struct irq_poll iop;
1520 struct work_struct work;
1521 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522};
1523
1524struct ib_srq {
Roland Dreierd41fcc62005-08-18 12:23:08 -07001525 struct ib_device *device;
1526 struct ib_pd *pd;
1527 struct ib_uobject *uobject;
1528 void (*event_handler)(struct ib_event *, void *);
1529 void *srq_context;
Sean Hefty96104ed2011-05-23 16:31:36 -07001530 enum ib_srq_type srq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 atomic_t usecnt;
Sean Hefty418d5132011-05-23 19:42:29 -07001532
1533 union {
1534 struct {
1535 struct ib_xrcd *xrcd;
1536 struct ib_cq *cq;
1537 u32 srq_num;
1538 } xrc;
1539 } ext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540};
1541
Noa Osherovichebaaee22017-01-18 15:39:54 +02001542enum ib_raw_packet_caps {
1543 /* Strip cvlan from incoming packet and report it in the matching work
1544 * completion is supported.
1545 */
1546 IB_RAW_PACKET_CAP_CVLAN_STRIPPING = (1 << 0),
1547 /* Scatter FCS field of an incoming packet to host memory is supported.
1548 */
1549 IB_RAW_PACKET_CAP_SCATTER_FCS = (1 << 1),
1550 /* Checksum offloads are supported (for both send and receive). */
1551 IB_RAW_PACKET_CAP_IP_CSUM = (1 << 2),
1552};
1553
Yishai Hadas5fd251c2016-05-23 15:20:48 +03001554enum ib_wq_type {
1555 IB_WQT_RQ
1556};
1557
1558enum ib_wq_state {
1559 IB_WQS_RESET,
1560 IB_WQS_RDY,
1561 IB_WQS_ERR
1562};
1563
1564struct ib_wq {
1565 struct ib_device *device;
1566 struct ib_uobject *uobject;
1567 void *wq_context;
1568 void (*event_handler)(struct ib_event *, void *);
1569 struct ib_pd *pd;
1570 struct ib_cq *cq;
1571 u32 wq_num;
1572 enum ib_wq_state state;
1573 enum ib_wq_type wq_type;
1574 atomic_t usecnt;
1575};
1576
Noa Osherovich10bac722017-01-18 15:39:55 +02001577enum ib_wq_flags {
1578 IB_WQ_FLAGS_CVLAN_STRIPPING = 1 << 0,
Noa Osherovich27b0df12017-01-18 15:39:57 +02001579 IB_WQ_FLAGS_SCATTER_FCS = 1 << 1,
Noa Osherovich10bac722017-01-18 15:39:55 +02001580};
1581
Yishai Hadas5fd251c2016-05-23 15:20:48 +03001582struct ib_wq_init_attr {
1583 void *wq_context;
1584 enum ib_wq_type wq_type;
1585 u32 max_wr;
1586 u32 max_sge;
1587 struct ib_cq *cq;
1588 void (*event_handler)(struct ib_event *, void *);
Noa Osherovich10bac722017-01-18 15:39:55 +02001589 u32 create_flags; /* Use enum ib_wq_flags */
Yishai Hadas5fd251c2016-05-23 15:20:48 +03001590};
1591
1592enum ib_wq_attr_mask {
Noa Osherovich10bac722017-01-18 15:39:55 +02001593 IB_WQ_STATE = 1 << 0,
1594 IB_WQ_CUR_STATE = 1 << 1,
1595 IB_WQ_FLAGS = 1 << 2,
Yishai Hadas5fd251c2016-05-23 15:20:48 +03001596};
1597
1598struct ib_wq_attr {
1599 enum ib_wq_state wq_state;
1600 enum ib_wq_state curr_wq_state;
Noa Osherovich10bac722017-01-18 15:39:55 +02001601 u32 flags; /* Use enum ib_wq_flags */
1602 u32 flags_mask; /* Use enum ib_wq_flags */
Yishai Hadas5fd251c2016-05-23 15:20:48 +03001603};
1604
Yishai Hadas6d397862016-05-23 15:20:51 +03001605struct ib_rwq_ind_table {
1606 struct ib_device *device;
1607 struct ib_uobject *uobject;
1608 atomic_t usecnt;
1609 u32 ind_tbl_num;
1610 u32 log_ind_tbl_size;
1611 struct ib_wq **ind_tbl;
1612};
1613
1614struct ib_rwq_ind_table_init_attr {
1615 u32 log_ind_tbl_size;
1616 /* Each entry is a pointer to Receive Work Queue */
1617 struct ib_wq **ind_tbl;
1618};
1619
Bart Van Assche632bc3f2016-07-21 13:03:30 -07001620/*
1621 * @max_write_sge: Maximum SGE elements per RDMA WRITE request.
1622 * @max_read_sge: Maximum SGE elements per RDMA READ request.
1623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624struct ib_qp {
1625 struct ib_device *device;
1626 struct ib_pd *pd;
1627 struct ib_cq *send_cq;
1628 struct ib_cq *recv_cq;
Christoph Hellwigfffb0382016-05-03 18:01:07 +02001629 spinlock_t mr_lock;
1630 int mrs_used;
Christoph Hellwiga060b562016-05-03 18:01:09 +02001631 struct list_head rdma_mrs;
Christoph Hellwig0e353e32016-05-03 18:01:12 +02001632 struct list_head sig_mrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001634 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Sean Heftyd3d72d92011-05-26 23:06:44 -07001635 struct list_head xrcd_list;
Christoph Hellwigfffb0382016-05-03 18:01:07 +02001636
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001637 /* count times opened, mcast attaches, flow attaches */
1638 atomic_t usecnt;
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07001639 struct list_head open_list;
1640 struct ib_qp *real_qp;
Roland Dreiere2773c02005-07-07 17:57:10 -07001641 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 void (*event_handler)(struct ib_event *, void *);
1643 void *qp_context;
1644 u32 qp_num;
Bart Van Assche632bc3f2016-07-21 13:03:30 -07001645 u32 max_write_sge;
1646 u32 max_read_sge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 enum ib_qp_type qp_type;
Yishai Hadasa9017e22016-05-23 15:20:54 +03001648 struct ib_rwq_ind_table *rwq_ind_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649};
1650
1651struct ib_mr {
Roland Dreiere2773c02005-07-07 17:57:10 -07001652 struct ib_device *device;
1653 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001654 u32 lkey;
1655 u32 rkey;
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03001656 u64 iova;
1657 u32 length;
1658 unsigned int page_size;
Steve Wised4a85c32016-05-03 18:01:08 +02001659 bool need_inval;
Christoph Hellwigfffb0382016-05-03 18:01:07 +02001660 union {
1661 struct ib_uobject *uobject; /* user */
1662 struct list_head qp_entry; /* FR */
1663 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664};
1665
1666struct ib_mw {
1667 struct ib_device *device;
1668 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001669 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 u32 rkey;
Shani Michaeli7083e422013-02-06 16:19:12 +00001671 enum ib_mw_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672};
1673
1674struct ib_fmr {
1675 struct ib_device *device;
1676 struct ib_pd *pd;
1677 struct list_head list;
1678 u32 lkey;
1679 u32 rkey;
1680};
1681
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001682/* Supported steering options */
1683enum ib_flow_attr_type {
1684 /* steering according to rule specifications */
1685 IB_FLOW_ATTR_NORMAL = 0x0,
1686 /* default unicast and multicast rule -
1687 * receive all Eth traffic which isn't steered to any QP
1688 */
1689 IB_FLOW_ATTR_ALL_DEFAULT = 0x1,
1690 /* default multicast rule -
1691 * receive all Eth multicast traffic which isn't steered to any QP
1692 */
1693 IB_FLOW_ATTR_MC_DEFAULT = 0x2,
1694 /* sniffer rule - receive all port traffic */
1695 IB_FLOW_ATTR_SNIFFER = 0x3
1696};
1697
1698/* Supported steering header types */
1699enum ib_flow_spec_type {
1700 /* L2 headers*/
Moses Reuben76bd23b2016-11-14 19:04:48 +02001701 IB_FLOW_SPEC_ETH = 0x20,
1702 IB_FLOW_SPEC_IB = 0x22,
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001703 /* L3 header*/
Moses Reuben76bd23b2016-11-14 19:04:48 +02001704 IB_FLOW_SPEC_IPV4 = 0x30,
1705 IB_FLOW_SPEC_IPV6 = 0x31,
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001706 /* L4 headers*/
Moses Reuben76bd23b2016-11-14 19:04:48 +02001707 IB_FLOW_SPEC_TCP = 0x40,
1708 IB_FLOW_SPEC_UDP = 0x41,
Moses Reuben0dbf3332016-11-14 19:04:47 +02001709 IB_FLOW_SPEC_VXLAN_TUNNEL = 0x50,
Moses Reubenfbf46862016-11-14 19:04:51 +02001710 IB_FLOW_SPEC_INNER = 0x100,
Moses Reuben460d0192017-01-18 14:59:48 +02001711 /* Actions */
1712 IB_FLOW_SPEC_ACTION_TAG = 0x1000,
Slava Shwartsman483a3962017-04-03 13:13:51 +03001713 IB_FLOW_SPEC_ACTION_DROP = 0x1001,
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001714};
Matan Barak240ae002013-11-07 15:25:13 +02001715#define IB_FLOW_SPEC_LAYER_MASK 0xF0
Moses Reubenfbf46862016-11-14 19:04:51 +02001716#define IB_FLOW_SPEC_SUPPORT_LAYERS 8
Matan Barak22878db2013-09-01 18:39:52 +03001717
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001718/* Flow steering rule priority is set according to it's domain.
1719 * Lower domain value means higher priority.
1720 */
1721enum ib_flow_domain {
1722 IB_FLOW_DOMAIN_USER,
1723 IB_FLOW_DOMAIN_ETHTOOL,
1724 IB_FLOW_DOMAIN_RFS,
1725 IB_FLOW_DOMAIN_NIC,
1726 IB_FLOW_DOMAIN_NUM /* Must be last */
1727};
1728
Marina Varshavera3100a72016-02-18 18:31:05 +02001729enum ib_flow_flags {
1730 IB_FLOW_ATTR_FLAGS_DONT_TRAP = 1UL << 1, /* Continue match, no steal */
1731 IB_FLOW_ATTR_FLAGS_RESERVED = 1UL << 2 /* Must be last */
1732};
1733
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001734struct ib_flow_eth_filter {
1735 u8 dst_mac[6];
1736 u8 src_mac[6];
1737 __be16 ether_type;
1738 __be16 vlan_tag;
Maor Gottlieb15dfbd62016-08-30 16:58:32 +03001739 /* Must be last */
1740 u8 real_sz[0];
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001741};
1742
1743struct ib_flow_spec_eth {
Moses Reubenfbf46862016-11-14 19:04:51 +02001744 u32 type;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001745 u16 size;
1746 struct ib_flow_eth_filter val;
1747 struct ib_flow_eth_filter mask;
1748};
1749
Matan Barak240ae002013-11-07 15:25:13 +02001750struct ib_flow_ib_filter {
1751 __be16 dlid;
1752 __u8 sl;
Maor Gottlieb15dfbd62016-08-30 16:58:32 +03001753 /* Must be last */
1754 u8 real_sz[0];
Matan Barak240ae002013-11-07 15:25:13 +02001755};
1756
1757struct ib_flow_spec_ib {
Moses Reubenfbf46862016-11-14 19:04:51 +02001758 u32 type;
Matan Barak240ae002013-11-07 15:25:13 +02001759 u16 size;
1760 struct ib_flow_ib_filter val;
1761 struct ib_flow_ib_filter mask;
1762};
1763
Maor Gottlieb989a3a82016-08-30 16:58:33 +03001764/* IPv4 header flags */
1765enum ib_ipv4_flags {
1766 IB_IPV4_DONT_FRAG = 0x2, /* Don't enable packet fragmentation */
1767 IB_IPV4_MORE_FRAG = 0X4 /* For All fragmented packets except the
1768 last have this flag set */
1769};
1770
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001771struct ib_flow_ipv4_filter {
1772 __be32 src_ip;
1773 __be32 dst_ip;
Maor Gottlieb989a3a82016-08-30 16:58:33 +03001774 u8 proto;
1775 u8 tos;
1776 u8 ttl;
1777 u8 flags;
Maor Gottlieb15dfbd62016-08-30 16:58:32 +03001778 /* Must be last */
1779 u8 real_sz[0];
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001780};
1781
1782struct ib_flow_spec_ipv4 {
Moses Reubenfbf46862016-11-14 19:04:51 +02001783 u32 type;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001784 u16 size;
1785 struct ib_flow_ipv4_filter val;
1786 struct ib_flow_ipv4_filter mask;
1787};
1788
Maor Gottlieb4c2aae72016-06-17 15:14:50 +03001789struct ib_flow_ipv6_filter {
1790 u8 src_ip[16];
1791 u8 dst_ip[16];
Maor Gottlieba72c6a22016-08-30 16:58:34 +03001792 __be32 flow_label;
1793 u8 next_hdr;
1794 u8 traffic_class;
1795 u8 hop_limit;
Maor Gottlieb15dfbd62016-08-30 16:58:32 +03001796 /* Must be last */
1797 u8 real_sz[0];
Maor Gottlieb4c2aae72016-06-17 15:14:50 +03001798};
1799
1800struct ib_flow_spec_ipv6 {
Moses Reubenfbf46862016-11-14 19:04:51 +02001801 u32 type;
Maor Gottlieb4c2aae72016-06-17 15:14:50 +03001802 u16 size;
1803 struct ib_flow_ipv6_filter val;
1804 struct ib_flow_ipv6_filter mask;
1805};
1806
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001807struct ib_flow_tcp_udp_filter {
1808 __be16 dst_port;
1809 __be16 src_port;
Maor Gottlieb15dfbd62016-08-30 16:58:32 +03001810 /* Must be last */
1811 u8 real_sz[0];
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001812};
1813
1814struct ib_flow_spec_tcp_udp {
Moses Reubenfbf46862016-11-14 19:04:51 +02001815 u32 type;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001816 u16 size;
1817 struct ib_flow_tcp_udp_filter val;
1818 struct ib_flow_tcp_udp_filter mask;
1819};
1820
Moses Reuben0dbf3332016-11-14 19:04:47 +02001821struct ib_flow_tunnel_filter {
1822 __be32 tunnel_id;
1823 u8 real_sz[0];
1824};
1825
1826/* ib_flow_spec_tunnel describes the Vxlan tunnel
1827 * the tunnel_id from val has the vni value
1828 */
1829struct ib_flow_spec_tunnel {
Moses Reubenfbf46862016-11-14 19:04:51 +02001830 u32 type;
Moses Reuben0dbf3332016-11-14 19:04:47 +02001831 u16 size;
1832 struct ib_flow_tunnel_filter val;
1833 struct ib_flow_tunnel_filter mask;
1834};
1835
Moses Reuben460d0192017-01-18 14:59:48 +02001836struct ib_flow_spec_action_tag {
1837 enum ib_flow_spec_type type;
1838 u16 size;
1839 u32 tag_id;
1840};
1841
Slava Shwartsman483a3962017-04-03 13:13:51 +03001842struct ib_flow_spec_action_drop {
1843 enum ib_flow_spec_type type;
1844 u16 size;
1845};
1846
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001847union ib_flow_spec {
1848 struct {
Moses Reubenfbf46862016-11-14 19:04:51 +02001849 u32 type;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001850 u16 size;
1851 };
1852 struct ib_flow_spec_eth eth;
Matan Barak240ae002013-11-07 15:25:13 +02001853 struct ib_flow_spec_ib ib;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001854 struct ib_flow_spec_ipv4 ipv4;
1855 struct ib_flow_spec_tcp_udp tcp_udp;
Maor Gottlieb4c2aae72016-06-17 15:14:50 +03001856 struct ib_flow_spec_ipv6 ipv6;
Moses Reuben0dbf3332016-11-14 19:04:47 +02001857 struct ib_flow_spec_tunnel tunnel;
Moses Reuben460d0192017-01-18 14:59:48 +02001858 struct ib_flow_spec_action_tag flow_tag;
Slava Shwartsman483a3962017-04-03 13:13:51 +03001859 struct ib_flow_spec_action_drop drop;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001860};
1861
1862struct ib_flow_attr {
1863 enum ib_flow_attr_type type;
1864 u16 size;
1865 u16 priority;
1866 u32 flags;
1867 u8 num_of_specs;
1868 u8 port;
1869 /* Following are the optional layers according to user request
1870 * struct ib_flow_spec_xxx
1871 * struct ib_flow_spec_yyy
1872 */
1873};
1874
1875struct ib_flow {
1876 struct ib_qp *qp;
1877 struct ib_uobject *uobject;
1878};
1879
Ira Weiny4cd7c942015-06-06 14:38:31 -04001880struct ib_mad_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881struct ib_grh;
1882
1883enum ib_process_mad_flags {
1884 IB_MAD_IGNORE_MKEY = 1,
1885 IB_MAD_IGNORE_BKEY = 2,
1886 IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
1887};
1888
1889enum ib_mad_result {
1890 IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
1891 IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
1892 IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
1893 IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
1894};
1895
Jack Wang21d64542017-01-17 10:11:12 +01001896struct ib_port_cache {
1897 struct ib_pkey_cache *pkey;
1898 struct ib_gid_table *gid;
1899 u8 lmc;
1900 enum ib_port_state port_state;
1901};
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903struct ib_cache {
1904 rwlock_t lock;
1905 struct ib_event_handler event_handler;
Jack Wang21d64542017-01-17 10:11:12 +01001906 struct ib_port_cache *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907};
1908
Tom Tucker07ebafb2006-08-03 16:02:42 -05001909struct iw_cm_verbs;
1910
Ira Weiny77386132015-05-13 20:02:58 -04001911struct ib_port_immutable {
1912 int pkey_tbl_len;
1913 int gid_tbl_len;
Ira Weinyf9b22e32015-05-13 20:02:59 -04001914 u32 core_cap_flags;
Ira Weiny337877a2015-06-06 14:38:29 -04001915 u32 max_mad_size;
Ira Weiny77386132015-05-13 20:02:58 -04001916};
1917
Vishwanathapura, Niranjana2fc77572017-04-12 20:29:20 -07001918/* rdma netdev type - specifies protocol type */
1919enum rdma_netdev_t {
Niranjana Vishwanathapuraf0ad83a2017-04-10 11:22:25 +03001920 RDMA_NETDEV_OPA_VNIC,
1921 RDMA_NETDEV_IPOIB,
Vishwanathapura, Niranjana2fc77572017-04-12 20:29:20 -07001922};
1923
1924/**
1925 * struct rdma_netdev - rdma netdev
1926 * For cases where netstack interfacing is required.
1927 */
1928struct rdma_netdev {
1929 void *clnt_priv;
1930 struct ib_device *hca;
1931 u8 port_num;
1932
1933 /* control functions */
1934 void (*set_id)(struct net_device *netdev, int id);
Niranjana Vishwanathapuraf0ad83a2017-04-10 11:22:25 +03001935 /* send packet */
1936 int (*send)(struct net_device *dev, struct sk_buff *skb,
1937 struct ib_ah *address, u32 dqpn);
1938 /* multicast */
1939 int (*attach_mcast)(struct net_device *dev, struct ib_device *hca,
1940 union ib_gid *gid, u16 mlid,
1941 int set_qkey, u32 qkey);
1942 int (*detach_mcast)(struct net_device *dev, struct ib_device *hca,
1943 union ib_gid *gid, u16 mlid);
Vishwanathapura, Niranjana2fc77572017-04-12 20:29:20 -07001944};
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946struct ib_device {
Bart Van Assche0957c292017-03-07 22:56:53 +00001947 /* Do not access @dma_device directly from ULP nor from HW drivers. */
1948 struct device *dma_device;
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 char name[IB_DEVICE_NAME_MAX];
1951
1952 struct list_head event_handler_list;
1953 spinlock_t event_handler_lock;
1954
Alexander Chiang17a55f72010-02-02 19:09:16 +00001955 spinlock_t client_data_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 struct list_head core_list;
Haggai Eran7c1eb452015-07-30 17:50:14 +03001957 /* Access to the client_data_list is protected by the client_data_lock
1958 * spinlock and the lists_rwsem read-write semaphore */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct list_head client_data_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 struct ib_cache cache;
Ira Weiny77386132015-05-13 20:02:58 -04001962 /**
1963 * port_immutable is indexed by port number
1964 */
1965 struct ib_port_immutable *port_immutable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001967 int num_comp_vectors;
1968
Tom Tucker07ebafb2006-08-03 16:02:42 -05001969 struct iw_cm_verbs *iwcm;
1970
Christoph Lameterb40f4752016-05-16 12:49:33 -05001971 /**
1972 * alloc_hw_stats - Allocate a struct rdma_hw_stats and fill in the
1973 * driver initialized data. The struct is kfree()'ed by the sysfs
1974 * core when the device is removed. A lifespan of -1 in the return
1975 * struct tells the core to set a default lifespan.
1976 */
1977 struct rdma_hw_stats *(*alloc_hw_stats)(struct ib_device *device,
1978 u8 port_num);
1979 /**
1980 * get_hw_stats - Fill in the counter value(s) in the stats struct.
1981 * @index - The index in the value array we wish to have updated, or
1982 * num_counters if we want all stats updated
1983 * Return codes -
1984 * < 0 - Error, no counters updated
1985 * index - Updated the single counter pointed to by index
1986 * num_counters - Updated all counters (will reset the timestamp
1987 * and prevent further calls for lifespan milliseconds)
1988 * Drivers are allowed to update all counters in leiu of just the
1989 * one given in index at their option
1990 */
1991 int (*get_hw_stats)(struct ib_device *device,
1992 struct rdma_hw_stats *stats,
1993 u8 port, int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 int (*query_device)(struct ib_device *device,
Matan Barak2528e332015-06-11 16:35:25 +03001995 struct ib_device_attr *device_attr,
1996 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 int (*query_port)(struct ib_device *device,
1998 u8 port_num,
1999 struct ib_port_attr *port_attr);
Eli Cohena3f5ada2010-09-27 17:51:10 -07002000 enum rdma_link_layer (*get_link_layer)(struct ib_device *device,
2001 u8 port_num);
Matan Barak03db3a22015-07-30 18:33:26 +03002002 /* When calling get_netdev, the HW vendor's driver should return the
2003 * net device of device @device at port @port_num or NULL if such
2004 * a net device doesn't exist. The vendor driver should call dev_hold
2005 * on this net device. The HW vendor's device driver must guarantee
2006 * that this function returns NULL before the net device reaches
2007 * NETDEV_UNREGISTER_FINAL state.
2008 */
2009 struct net_device *(*get_netdev)(struct ib_device *device,
2010 u8 port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 int (*query_gid)(struct ib_device *device,
2012 u8 port_num, int index,
2013 union ib_gid *gid);
Matan Barak03db3a22015-07-30 18:33:26 +03002014 /* When calling add_gid, the HW vendor's driver should
2015 * add the gid of device @device at gid index @index of
2016 * port @port_num to be @gid. Meta-info of that gid (for example,
2017 * the network device related to this gid is available
2018 * at @attr. @context allows the HW vendor driver to store extra
2019 * information together with a GID entry. The HW vendor may allocate
2020 * memory to contain this information and store it in @context when a
2021 * new GID entry is written to. Params are consistent until the next
2022 * call of add_gid or delete_gid. The function should return 0 on
2023 * success or error otherwise. The function could be called
2024 * concurrently for different ports. This function is only called
2025 * when roce_gid_table is used.
2026 */
2027 int (*add_gid)(struct ib_device *device,
2028 u8 port_num,
2029 unsigned int index,
2030 const union ib_gid *gid,
2031 const struct ib_gid_attr *attr,
2032 void **context);
2033 /* When calling del_gid, the HW vendor's driver should delete the
2034 * gid of device @device at gid index @index of port @port_num.
2035 * Upon the deletion of a GID entry, the HW vendor must free any
2036 * allocated memory. The caller will clear @context afterwards.
2037 * This function is only called when roce_gid_table is used.
2038 */
2039 int (*del_gid)(struct ib_device *device,
2040 u8 port_num,
2041 unsigned int index,
2042 void **context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 int (*query_pkey)(struct ib_device *device,
2044 u8 port_num, u16 index, u16 *pkey);
2045 int (*modify_device)(struct ib_device *device,
2046 int device_modify_mask,
2047 struct ib_device_modify *device_modify);
2048 int (*modify_port)(struct ib_device *device,
2049 u8 port_num, int port_modify_mask,
2050 struct ib_port_modify *port_modify);
Roland Dreiere2773c02005-07-07 17:57:10 -07002051 struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
2052 struct ib_udata *udata);
2053 int (*dealloc_ucontext)(struct ib_ucontext *context);
2054 int (*mmap)(struct ib_ucontext *context,
2055 struct vm_area_struct *vma);
2056 struct ib_pd * (*alloc_pd)(struct ib_device *device,
2057 struct ib_ucontext *context,
2058 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 int (*dealloc_pd)(struct ib_pd *pd);
2060 struct ib_ah * (*create_ah)(struct ib_pd *pd,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04002061 struct rdma_ah_attr *ah_attr,
Moni Shoua477864c2016-11-23 08:23:24 +02002062 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 int (*modify_ah)(struct ib_ah *ah,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04002064 struct rdma_ah_attr *ah_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 int (*query_ah)(struct ib_ah *ah,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04002066 struct rdma_ah_attr *ah_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 int (*destroy_ah)(struct ib_ah *ah);
Roland Dreierd41fcc62005-08-18 12:23:08 -07002068 struct ib_srq * (*create_srq)(struct ib_pd *pd,
2069 struct ib_srq_init_attr *srq_init_attr,
2070 struct ib_udata *udata);
2071 int (*modify_srq)(struct ib_srq *srq,
2072 struct ib_srq_attr *srq_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07002073 enum ib_srq_attr_mask srq_attr_mask,
2074 struct ib_udata *udata);
Roland Dreierd41fcc62005-08-18 12:23:08 -07002075 int (*query_srq)(struct ib_srq *srq,
2076 struct ib_srq_attr *srq_attr);
2077 int (*destroy_srq)(struct ib_srq *srq);
2078 int (*post_srq_recv)(struct ib_srq *srq,
2079 struct ib_recv_wr *recv_wr,
2080 struct ib_recv_wr **bad_recv_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct ib_qp * (*create_qp)(struct ib_pd *pd,
Roland Dreiere2773c02005-07-07 17:57:10 -07002082 struct ib_qp_init_attr *qp_init_attr,
2083 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 int (*modify_qp)(struct ib_qp *qp,
2085 struct ib_qp_attr *qp_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07002086 int qp_attr_mask,
2087 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 int (*query_qp)(struct ib_qp *qp,
2089 struct ib_qp_attr *qp_attr,
2090 int qp_attr_mask,
2091 struct ib_qp_init_attr *qp_init_attr);
2092 int (*destroy_qp)(struct ib_qp *qp);
2093 int (*post_send)(struct ib_qp *qp,
2094 struct ib_send_wr *send_wr,
2095 struct ib_send_wr **bad_send_wr);
2096 int (*post_recv)(struct ib_qp *qp,
2097 struct ib_recv_wr *recv_wr,
2098 struct ib_recv_wr **bad_recv_wr);
Matan Barakbcf4c1e2015-06-11 16:35:20 +03002099 struct ib_cq * (*create_cq)(struct ib_device *device,
2100 const struct ib_cq_init_attr *attr,
Roland Dreiere2773c02005-07-07 17:57:10 -07002101 struct ib_ucontext *context,
2102 struct ib_udata *udata);
Eli Cohen2dd57162008-04-16 21:09:33 -07002103 int (*modify_cq)(struct ib_cq *cq, u16 cq_count,
2104 u16 cq_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 int (*destroy_cq)(struct ib_cq *cq);
Roland Dreier33b9b3e2006-01-30 14:29:21 -08002106 int (*resize_cq)(struct ib_cq *cq, int cqe,
2107 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 int (*poll_cq)(struct ib_cq *cq, int num_entries,
2109 struct ib_wc *wc);
2110 int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
2111 int (*req_notify_cq)(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07002112 enum ib_cq_notify_flags flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 int (*req_ncomp_notif)(struct ib_cq *cq,
2114 int wc_cnt);
2115 struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
2116 int mr_access_flags);
Roland Dreiere2773c02005-07-07 17:57:10 -07002117 struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08002118 u64 start, u64 length,
2119 u64 virt_addr,
Roland Dreiere2773c02005-07-07 17:57:10 -07002120 int mr_access_flags,
2121 struct ib_udata *udata);
Matan Barak7e6edb92014-07-31 11:01:28 +03002122 int (*rereg_user_mr)(struct ib_mr *mr,
2123 int flags,
2124 u64 start, u64 length,
2125 u64 virt_addr,
2126 int mr_access_flags,
2127 struct ib_pd *pd,
2128 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 int (*dereg_mr)(struct ib_mr *mr);
Sagi Grimberg9bee1782015-07-30 10:32:35 +03002130 struct ib_mr * (*alloc_mr)(struct ib_pd *pd,
2131 enum ib_mr_type mr_type,
2132 u32 max_num_sg);
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03002133 int (*map_mr_sg)(struct ib_mr *mr,
2134 struct scatterlist *sg,
Christoph Hellwigff2ba992016-05-03 18:01:04 +02002135 int sg_nents,
Bart Van Assche9aa8b322016-05-12 10:49:15 -07002136 unsigned int *sg_offset);
Shani Michaeli7083e422013-02-06 16:19:12 +00002137 struct ib_mw * (*alloc_mw)(struct ib_pd *pd,
Matan Barakb2a239d2016-02-29 18:05:29 +02002138 enum ib_mw_type type,
2139 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 int (*dealloc_mw)(struct ib_mw *mw);
2141 struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
2142 int mr_access_flags,
2143 struct ib_fmr_attr *fmr_attr);
2144 int (*map_phys_fmr)(struct ib_fmr *fmr,
2145 u64 *page_list, int list_len,
2146 u64 iova);
2147 int (*unmap_fmr)(struct list_head *fmr_list);
2148 int (*dealloc_fmr)(struct ib_fmr *fmr);
2149 int (*attach_mcast)(struct ib_qp *qp,
2150 union ib_gid *gid,
2151 u16 lid);
2152 int (*detach_mcast)(struct ib_qp *qp,
2153 union ib_gid *gid,
2154 u16 lid);
2155 int (*process_mad)(struct ib_device *device,
2156 int process_mad_flags,
2157 u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -04002158 const struct ib_wc *in_wc,
2159 const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -04002160 const struct ib_mad_hdr *in_mad,
2161 size_t in_mad_size,
2162 struct ib_mad_hdr *out_mad,
2163 size_t *out_mad_size,
2164 u16 *out_mad_pkey_index);
Sean Hefty59991f92011-05-23 17:52:46 -07002165 struct ib_xrcd * (*alloc_xrcd)(struct ib_device *device,
2166 struct ib_ucontext *ucontext,
2167 struct ib_udata *udata);
2168 int (*dealloc_xrcd)(struct ib_xrcd *xrcd);
Hadar Hen Zion319a4412013-08-07 14:01:59 +03002169 struct ib_flow * (*create_flow)(struct ib_qp *qp,
2170 struct ib_flow_attr
2171 *flow_attr,
2172 int domain);
2173 int (*destroy_flow)(struct ib_flow *flow_id);
Sagi Grimberg1b01d332014-02-23 14:19:05 +02002174 int (*check_mr_status)(struct ib_mr *mr, u32 check_mask,
2175 struct ib_mr_status *mr_status);
Yishai Hadas036b1062015-08-13 18:32:05 +03002176 void (*disassociate_ucontext)(struct ib_ucontext *ibcontext);
Steve Wise765d6772016-02-17 08:15:41 -08002177 void (*drain_rq)(struct ib_qp *qp);
2178 void (*drain_sq)(struct ib_qp *qp);
Eli Cohen50174a72016-03-11 22:58:38 +02002179 int (*set_vf_link_state)(struct ib_device *device, int vf, u8 port,
2180 int state);
2181 int (*get_vf_config)(struct ib_device *device, int vf, u8 port,
2182 struct ifla_vf_info *ivf);
2183 int (*get_vf_stats)(struct ib_device *device, int vf, u8 port,
2184 struct ifla_vf_stats *stats);
2185 int (*set_vf_guid)(struct ib_device *device, int vf, u8 port, u64 guid,
2186 int type);
Yishai Hadas5fd251c2016-05-23 15:20:48 +03002187 struct ib_wq * (*create_wq)(struct ib_pd *pd,
2188 struct ib_wq_init_attr *init_attr,
2189 struct ib_udata *udata);
2190 int (*destroy_wq)(struct ib_wq *wq);
2191 int (*modify_wq)(struct ib_wq *wq,
2192 struct ib_wq_attr *attr,
2193 u32 wq_attr_mask,
2194 struct ib_udata *udata);
Yishai Hadas6d397862016-05-23 15:20:51 +03002195 struct ib_rwq_ind_table * (*create_rwq_ind_table)(struct ib_device *device,
2196 struct ib_rwq_ind_table_init_attr *init_attr,
2197 struct ib_udata *udata);
2198 int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *wq_ind_table);
Vishwanathapura, Niranjana2fc77572017-04-12 20:29:20 -07002199 /**
2200 * rdma netdev operations
2201 *
2202 * Driver implementing alloc_rdma_netdev must return -EOPNOTSUPP if it
2203 * doesn't support the specified rdma netdev type.
2204 */
2205 struct net_device *(*alloc_rdma_netdev)(
2206 struct ib_device *device,
2207 u8 port_num,
2208 enum rdma_netdev_t type,
2209 const char *name,
2210 unsigned char name_assign_type,
2211 void (*setup)(struct net_device *));
2212 void (*free_rdma_netdev)(struct net_device *netdev);
Ralph Campbell9b513092006-12-12 14:27:41 -08002213
Roland Dreiere2773c02005-07-07 17:57:10 -07002214 struct module *owner;
Tony Jonesf4e91eb2008-02-22 00:13:36 +01002215 struct device dev;
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -04002216 struct kobject *ports_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 struct list_head port_list;
2218
2219 enum {
2220 IB_DEV_UNINITIALIZED,
2221 IB_DEV_REGISTERED,
2222 IB_DEV_UNREGISTERED
2223 } reg_state;
2224
Roland Dreier274c0892005-09-29 14:17:48 -07002225 int uverbs_abi_ver;
Alexander Chiang17a55f72010-02-02 19:09:16 +00002226 u64 uverbs_cmd_mask;
Yann Droneaudf21519b2013-11-06 23:21:49 +01002227 u64 uverbs_ex_cmd_mask;
Roland Dreier274c0892005-09-29 14:17:48 -07002228
Yuval Shaiabd99fde2016-08-25 10:57:07 -07002229 char node_desc[IB_DEVICE_NODE_DESC_MAX];
Sean Heftycf311cd2006-01-10 07:39:34 -08002230 __be64 node_guid;
Steve Wise96f15c02008-07-14 23:48:53 -07002231 u32 local_dma_lkey;
Hal Rosenstock41390322015-06-29 09:57:00 -04002232 u16 is_switch:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 u8 node_type;
2234 u8 phys_port_cnt;
Ira Weiny3e153a92015-12-18 10:59:44 +02002235 struct ib_device_attr attrs;
Christoph Lameterb40f4752016-05-16 12:49:33 -05002236 struct attribute_group *hw_stats_ag;
2237 struct rdma_hw_stats *hw_stats;
Ira Weiny77386132015-05-13 20:02:58 -04002238
Parav Pandit43579b52017-01-10 00:02:14 +00002239#ifdef CONFIG_CGROUP_RDMA
2240 struct rdmacg_device cg_device;
2241#endif
2242
Ira Weiny77386132015-05-13 20:02:58 -04002243 /**
2244 * The following mandatory functions are used only at device
2245 * registration. Keep functions such as these at the end of this
2246 * structure to avoid cache line misses when accessing struct ib_device
2247 * in fast paths.
2248 */
2249 int (*get_port_immutable)(struct ib_device *, u8, struct ib_port_immutable *);
Ira Weiny5fa76c22016-06-15 02:21:56 -04002250 void (*get_dev_fw_str)(struct ib_device *, char *str, size_t str_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251};
2252
2253struct ib_client {
2254 char *name;
2255 void (*add) (struct ib_device *);
Haggai Eran7c1eb452015-07-30 17:50:14 +03002256 void (*remove)(struct ib_device *, void *client_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Yotam Kenneth9268f722015-07-30 17:50:15 +03002258 /* Returns the net_dev belonging to this ib_client and matching the
2259 * given parameters.
2260 * @dev: An RDMA device that the net_dev use for communication.
2261 * @port: A physical port number on the RDMA device.
2262 * @pkey: P_Key that the net_dev uses if applicable.
2263 * @gid: A GID that the net_dev uses to communicate.
2264 * @addr: An IP address the net_dev is configured with.
2265 * @client_data: The device's client data set by ib_set_client_data().
2266 *
2267 * An ib_client that implements a net_dev on top of RDMA devices
2268 * (such as IP over IB) should implement this callback, allowing the
2269 * rdma_cm module to find the right net_dev for a given request.
2270 *
2271 * The caller is responsible for calling dev_put on the returned
2272 * netdev. */
2273 struct net_device *(*get_net_dev_by_params)(
2274 struct ib_device *dev,
2275 u8 port,
2276 u16 pkey,
2277 const union ib_gid *gid,
2278 const struct sockaddr *addr,
2279 void *client_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 struct list_head list;
2281};
2282
2283struct ib_device *ib_alloc_device(size_t size);
2284void ib_dealloc_device(struct ib_device *device);
2285
Ira Weiny5fa76c22016-06-15 02:21:56 -04002286void ib_get_device_fw_str(struct ib_device *device, char *str, size_t str_len);
2287
Ralph Campbell9a6edb62010-05-06 17:03:25 -07002288int ib_register_device(struct ib_device *device,
2289 int (*port_callback)(struct ib_device *,
2290 u8, struct kobject *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291void ib_unregister_device(struct ib_device *device);
2292
2293int ib_register_client (struct ib_client *client);
2294void ib_unregister_client(struct ib_client *client);
2295
2296void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
2297void ib_set_client_data(struct ib_device *device, struct ib_client *client,
2298 void *data);
2299
Roland Dreiere2773c02005-07-07 17:57:10 -07002300static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
2301{
2302 return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
2303}
2304
2305static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
2306{
Yann Droneaud43c611652015-02-05 22:10:18 +01002307 return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
Roland Dreiere2773c02005-07-07 17:57:10 -07002308}
2309
Matan Barak301a7212015-12-15 20:30:10 +02002310static inline bool ib_is_udata_cleared(struct ib_udata *udata,
2311 size_t offset,
2312 size_t len)
2313{
2314 const void __user *p = udata->inbuf + offset;
Markus Elfring92d27ae2016-08-22 18:23:24 +02002315 bool ret;
Matan Barak301a7212015-12-15 20:30:10 +02002316 u8 *buf;
2317
2318 if (len > USHRT_MAX)
2319 return false;
2320
Markus Elfring92d27ae2016-08-22 18:23:24 +02002321 buf = memdup_user(p, len);
2322 if (IS_ERR(buf))
Matan Barak301a7212015-12-15 20:30:10 +02002323 return false;
2324
Matan Barak301a7212015-12-15 20:30:10 +02002325 ret = !memchr_inv(buf, 0, len);
Matan Barak301a7212015-12-15 20:30:10 +02002326 kfree(buf);
2327 return ret;
2328}
2329
Roland Dreier8a518662006-02-13 12:48:12 -08002330/**
2331 * ib_modify_qp_is_ok - Check that the supplied attribute mask
2332 * contains all required attributes and no attributes not allowed for
2333 * the given QP state transition.
2334 * @cur_state: Current QP state
2335 * @next_state: Next QP state
2336 * @type: QP type
2337 * @mask: Mask of supplied QP attributes
Matan Barakdd5f03b2013-12-12 18:03:11 +02002338 * @ll : link layer of port
Roland Dreier8a518662006-02-13 12:48:12 -08002339 *
2340 * This function is a helper function that a low-level driver's
2341 * modify_qp method can use to validate the consumer's input. It
2342 * checks that cur_state and next_state are valid QP states, that a
2343 * transition from cur_state to next_state is allowed by the IB spec,
2344 * and that the attribute mask supplied is allowed for the transition.
2345 */
2346int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
Matan Barakdd5f03b2013-12-12 18:03:11 +02002347 enum ib_qp_type type, enum ib_qp_attr_mask mask,
2348 enum rdma_link_layer ll);
Roland Dreier8a518662006-02-13 12:48:12 -08002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350int ib_register_event_handler (struct ib_event_handler *event_handler);
2351int ib_unregister_event_handler(struct ib_event_handler *event_handler);
2352void ib_dispatch_event(struct ib_event *event);
2353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354int ib_query_port(struct ib_device *device,
2355 u8 port_num, struct ib_port_attr *port_attr);
2356
Eli Cohena3f5ada2010-09-27 17:51:10 -07002357enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
2358 u8 port_num);
2359
Ira Weiny0cf18d72015-05-13 20:02:55 -04002360/**
Hal Rosenstock41390322015-06-29 09:57:00 -04002361 * rdma_cap_ib_switch - Check if the device is IB switch
2362 * @device: Device to check
2363 *
2364 * Device driver is responsible for setting is_switch bit on
2365 * in ib_device structure at init time.
2366 *
2367 * Return: true if the device is IB switch.
2368 */
2369static inline bool rdma_cap_ib_switch(const struct ib_device *device)
2370{
2371 return device->is_switch;
2372}
2373
2374/**
Ira Weiny0cf18d72015-05-13 20:02:55 -04002375 * rdma_start_port - Return the first valid port number for the device
2376 * specified
2377 *
2378 * @device: Device to be checked
2379 *
2380 * Return start port number
2381 */
2382static inline u8 rdma_start_port(const struct ib_device *device)
2383{
Hal Rosenstock41390322015-06-29 09:57:00 -04002384 return rdma_cap_ib_switch(device) ? 0 : 1;
Ira Weiny0cf18d72015-05-13 20:02:55 -04002385}
2386
2387/**
2388 * rdma_end_port - Return the last valid port number for the device
2389 * specified
2390 *
2391 * @device: Device to be checked
2392 *
2393 * Return last port number
2394 */
2395static inline u8 rdma_end_port(const struct ib_device *device)
2396{
Hal Rosenstock41390322015-06-29 09:57:00 -04002397 return rdma_cap_ib_switch(device) ? 0 : device->phys_port_cnt;
Ira Weiny0cf18d72015-05-13 20:02:55 -04002398}
2399
Yuval Shaia24dc8312017-01-25 18:41:37 +02002400static inline int rdma_is_port_valid(const struct ib_device *device,
2401 unsigned int port)
2402{
2403 return (port >= rdma_start_port(device) &&
2404 port <= rdma_end_port(device));
2405}
2406
Ira Weiny5ede9282015-05-31 17:15:29 -04002407static inline bool rdma_protocol_ib(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02002408{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002409 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IB;
Michael Wangde66be92015-05-05 14:50:19 +02002410}
2411
Ira Weiny5ede9282015-05-31 17:15:29 -04002412static inline bool rdma_protocol_roce(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02002413{
Matan Barak7766a992015-12-23 14:56:50 +02002414 return device->port_immutable[port_num].core_cap_flags &
2415 (RDMA_CORE_CAP_PROT_ROCE | RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP);
2416}
2417
2418static inline bool rdma_protocol_roce_udp_encap(const struct ib_device *device, u8 port_num)
2419{
2420 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP;
2421}
2422
2423static inline bool rdma_protocol_roce_eth_encap(const struct ib_device *device, u8 port_num)
2424{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002425 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_ROCE;
Michael Wangde66be92015-05-05 14:50:19 +02002426}
2427
Ira Weiny5ede9282015-05-31 17:15:29 -04002428static inline bool rdma_protocol_iwarp(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02002429{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002430 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IWARP;
Michael Wangde66be92015-05-05 14:50:19 +02002431}
2432
Ira Weiny5ede9282015-05-31 17:15:29 -04002433static inline bool rdma_ib_or_roce(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02002434{
Matan Barak7766a992015-12-23 14:56:50 +02002435 return rdma_protocol_ib(device, port_num) ||
2436 rdma_protocol_roce(device, port_num);
Michael Wangde66be92015-05-05 14:50:19 +02002437}
2438
Or Gerlitzaa773bd2017-01-24 13:02:35 +02002439static inline bool rdma_protocol_raw_packet(const struct ib_device *device, u8 port_num)
2440{
2441 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_RAW_PACKET;
2442}
2443
Or Gerlitzce1e0552017-01-24 13:02:38 +02002444static inline bool rdma_protocol_usnic(const struct ib_device *device, u8 port_num)
2445{
2446 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_USNIC;
2447}
2448
Michael Wangc757dea2015-05-05 14:50:32 +02002449/**
Michael Wang296ec002015-05-18 10:41:45 +02002450 * rdma_cap_ib_mad - Check if the port of a device supports Infiniband
Michael Wangc757dea2015-05-05 14:50:32 +02002451 * Management Datagrams.
Michael Wang296ec002015-05-18 10:41:45 +02002452 * @device: Device to check
2453 * @port_num: Port number to check
Michael Wangc757dea2015-05-05 14:50:32 +02002454 *
Michael Wang296ec002015-05-18 10:41:45 +02002455 * Management Datagrams (MAD) are a required part of the InfiniBand
2456 * specification and are supported on all InfiniBand devices. A slightly
2457 * extended version are also supported on OPA interfaces.
Michael Wangc757dea2015-05-05 14:50:32 +02002458 *
Michael Wang296ec002015-05-18 10:41:45 +02002459 * Return: true if the port supports sending/receiving of MAD packets.
Michael Wangc757dea2015-05-05 14:50:32 +02002460 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002461static inline bool rdma_cap_ib_mad(const struct ib_device *device, u8 port_num)
Michael Wangc757dea2015-05-05 14:50:32 +02002462{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002463 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_MAD;
Michael Wangc757dea2015-05-05 14:50:32 +02002464}
2465
Michael Wang29541e32015-05-05 14:50:33 +02002466/**
Ira Weiny65995fe2015-06-06 14:38:32 -04002467 * rdma_cap_opa_mad - Check if the port of device provides support for OPA
2468 * Management Datagrams.
2469 * @device: Device to check
2470 * @port_num: Port number to check
2471 *
2472 * Intel OmniPath devices extend and/or replace the InfiniBand Management
2473 * datagrams with their own versions. These OPA MADs share many but not all of
2474 * the characteristics of InfiniBand MADs.
2475 *
2476 * OPA MADs differ in the following ways:
2477 *
2478 * 1) MADs are variable size up to 2K
2479 * IBTA defined MADs remain fixed at 256 bytes
2480 * 2) OPA SMPs must carry valid PKeys
2481 * 3) OPA SMP packets are a different format
2482 *
2483 * Return: true if the port supports OPA MAD packet formats.
2484 */
2485static inline bool rdma_cap_opa_mad(struct ib_device *device, u8 port_num)
2486{
2487 return (device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_OPA_MAD)
2488 == RDMA_CORE_CAP_OPA_MAD;
2489}
2490
2491/**
Michael Wang296ec002015-05-18 10:41:45 +02002492 * rdma_cap_ib_smi - Check if the port of a device provides an Infiniband
2493 * Subnet Management Agent (SMA) on the Subnet Management Interface (SMI).
2494 * @device: Device to check
2495 * @port_num: Port number to check
Michael Wang29541e32015-05-05 14:50:33 +02002496 *
Michael Wang296ec002015-05-18 10:41:45 +02002497 * Each InfiniBand node is required to provide a Subnet Management Agent
2498 * that the subnet manager can access. Prior to the fabric being fully
2499 * configured by the subnet manager, the SMA is accessed via a well known
2500 * interface called the Subnet Management Interface (SMI). This interface
2501 * uses directed route packets to communicate with the SM to get around the
2502 * chicken and egg problem of the SM needing to know what's on the fabric
2503 * in order to configure the fabric, and needing to configure the fabric in
2504 * order to send packets to the devices on the fabric. These directed
2505 * route packets do not need the fabric fully configured in order to reach
2506 * their destination. The SMI is the only method allowed to send
2507 * directed route packets on an InfiniBand fabric.
Michael Wang29541e32015-05-05 14:50:33 +02002508 *
Michael Wang296ec002015-05-18 10:41:45 +02002509 * Return: true if the port provides an SMI.
Michael Wang29541e32015-05-05 14:50:33 +02002510 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002511static inline bool rdma_cap_ib_smi(const struct ib_device *device, u8 port_num)
Michael Wang29541e32015-05-05 14:50:33 +02002512{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002513 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SMI;
Michael Wang29541e32015-05-05 14:50:33 +02002514}
2515
Michael Wang72219cea2015-05-05 14:50:34 +02002516/**
2517 * rdma_cap_ib_cm - Check if the port of device has the capability Infiniband
2518 * Communication Manager.
Michael Wang296ec002015-05-18 10:41:45 +02002519 * @device: Device to check
2520 * @port_num: Port number to check
Michael Wang72219cea2015-05-05 14:50:34 +02002521 *
Michael Wang296ec002015-05-18 10:41:45 +02002522 * The InfiniBand Communication Manager is one of many pre-defined General
2523 * Service Agents (GSA) that are accessed via the General Service
2524 * Interface (GSI). It's role is to facilitate establishment of connections
2525 * between nodes as well as other management related tasks for established
2526 * connections.
Michael Wang72219cea2015-05-05 14:50:34 +02002527 *
Michael Wang296ec002015-05-18 10:41:45 +02002528 * Return: true if the port supports an IB CM (this does not guarantee that
2529 * a CM is actually running however).
Michael Wang72219cea2015-05-05 14:50:34 +02002530 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002531static inline bool rdma_cap_ib_cm(const struct ib_device *device, u8 port_num)
Michael Wang72219cea2015-05-05 14:50:34 +02002532{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002533 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_CM;
Michael Wang72219cea2015-05-05 14:50:34 +02002534}
2535
Michael Wang04215332015-05-05 14:50:35 +02002536/**
2537 * rdma_cap_iw_cm - Check if the port of device has the capability IWARP
2538 * Communication Manager.
Michael Wang296ec002015-05-18 10:41:45 +02002539 * @device: Device to check
2540 * @port_num: Port number to check
Michael Wang04215332015-05-05 14:50:35 +02002541 *
Michael Wang296ec002015-05-18 10:41:45 +02002542 * Similar to above, but specific to iWARP connections which have a different
2543 * managment protocol than InfiniBand.
Michael Wang04215332015-05-05 14:50:35 +02002544 *
Michael Wang296ec002015-05-18 10:41:45 +02002545 * Return: true if the port supports an iWARP CM (this does not guarantee that
2546 * a CM is actually running however).
Michael Wang04215332015-05-05 14:50:35 +02002547 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002548static inline bool rdma_cap_iw_cm(const struct ib_device *device, u8 port_num)
Michael Wang04215332015-05-05 14:50:35 +02002549{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002550 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IW_CM;
Michael Wang04215332015-05-05 14:50:35 +02002551}
2552
Michael Wangfe53ba22015-05-05 14:50:36 +02002553/**
2554 * rdma_cap_ib_sa - Check if the port of device has the capability Infiniband
2555 * Subnet Administration.
Michael Wang296ec002015-05-18 10:41:45 +02002556 * @device: Device to check
2557 * @port_num: Port number to check
Michael Wangfe53ba22015-05-05 14:50:36 +02002558 *
Michael Wang296ec002015-05-18 10:41:45 +02002559 * An InfiniBand Subnet Administration (SA) service is a pre-defined General
2560 * Service Agent (GSA) provided by the Subnet Manager (SM). On InfiniBand
2561 * fabrics, devices should resolve routes to other hosts by contacting the
2562 * SA to query the proper route.
Michael Wangfe53ba22015-05-05 14:50:36 +02002563 *
Michael Wang296ec002015-05-18 10:41:45 +02002564 * Return: true if the port should act as a client to the fabric Subnet
2565 * Administration interface. This does not imply that the SA service is
2566 * running locally.
Michael Wangfe53ba22015-05-05 14:50:36 +02002567 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002568static inline bool rdma_cap_ib_sa(const struct ib_device *device, u8 port_num)
Michael Wangfe53ba22015-05-05 14:50:36 +02002569{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002570 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SA;
Michael Wangfe53ba22015-05-05 14:50:36 +02002571}
2572
Michael Wanga31ad3b2015-05-05 14:50:37 +02002573/**
2574 * rdma_cap_ib_mcast - Check if the port of device has the capability Infiniband
2575 * Multicast.
Michael Wang296ec002015-05-18 10:41:45 +02002576 * @device: Device to check
2577 * @port_num: Port number to check
Michael Wanga31ad3b2015-05-05 14:50:37 +02002578 *
Michael Wang296ec002015-05-18 10:41:45 +02002579 * InfiniBand multicast registration is more complex than normal IPv4 or
2580 * IPv6 multicast registration. Each Host Channel Adapter must register
2581 * with the Subnet Manager when it wishes to join a multicast group. It
2582 * should do so only once regardless of how many queue pairs it subscribes
2583 * to this group. And it should leave the group only after all queue pairs
2584 * attached to the group have been detached.
Michael Wanga31ad3b2015-05-05 14:50:37 +02002585 *
Michael Wang296ec002015-05-18 10:41:45 +02002586 * Return: true if the port must undertake the additional adminstrative
2587 * overhead of registering/unregistering with the SM and tracking of the
2588 * total number of queue pairs attached to the multicast group.
Michael Wanga31ad3b2015-05-05 14:50:37 +02002589 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002590static inline bool rdma_cap_ib_mcast(const struct ib_device *device, u8 port_num)
Michael Wanga31ad3b2015-05-05 14:50:37 +02002591{
2592 return rdma_cap_ib_sa(device, port_num);
2593}
2594
Michael Wangbc0f1d72015-05-05 14:50:38 +02002595/**
Michael Wang30a74ef2015-05-05 14:50:39 +02002596 * rdma_cap_af_ib - Check if the port of device has the capability
2597 * Native Infiniband Address.
Michael Wang296ec002015-05-18 10:41:45 +02002598 * @device: Device to check
2599 * @port_num: Port number to check
Michael Wang30a74ef2015-05-05 14:50:39 +02002600 *
Michael Wang296ec002015-05-18 10:41:45 +02002601 * InfiniBand addressing uses a port's GUID + Subnet Prefix to make a default
2602 * GID. RoCE uses a different mechanism, but still generates a GID via
2603 * a prescribed mechanism and port specific data.
Michael Wang30a74ef2015-05-05 14:50:39 +02002604 *
Michael Wang296ec002015-05-18 10:41:45 +02002605 * Return: true if the port uses a GID address to identify devices on the
2606 * network.
Michael Wang30a74ef2015-05-05 14:50:39 +02002607 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002608static inline bool rdma_cap_af_ib(const struct ib_device *device, u8 port_num)
Michael Wang30a74ef2015-05-05 14:50:39 +02002609{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002610 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_AF_IB;
Michael Wang30a74ef2015-05-05 14:50:39 +02002611}
2612
2613/**
Michael Wang227128f2015-05-05 14:50:40 +02002614 * rdma_cap_eth_ah - Check if the port of device has the capability
Michael Wang296ec002015-05-18 10:41:45 +02002615 * Ethernet Address Handle.
2616 * @device: Device to check
2617 * @port_num: Port number to check
Michael Wang227128f2015-05-05 14:50:40 +02002618 *
Michael Wang296ec002015-05-18 10:41:45 +02002619 * RoCE is InfiniBand over Ethernet, and it uses a well defined technique
2620 * to fabricate GIDs over Ethernet/IP specific addresses native to the
2621 * port. Normally, packet headers are generated by the sending host
2622 * adapter, but when sending connectionless datagrams, we must manually
2623 * inject the proper headers for the fabric we are communicating over.
Michael Wang227128f2015-05-05 14:50:40 +02002624 *
Michael Wang296ec002015-05-18 10:41:45 +02002625 * Return: true if we are running as a RoCE port and must force the
2626 * addition of a Global Route Header built from our Ethernet Address
2627 * Handle into our header list for connectionless packets.
Michael Wang227128f2015-05-05 14:50:40 +02002628 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002629static inline bool rdma_cap_eth_ah(const struct ib_device *device, u8 port_num)
Michael Wang227128f2015-05-05 14:50:40 +02002630{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002631 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_ETH_AH;
Michael Wang227128f2015-05-05 14:50:40 +02002632}
2633
2634/**
Dasaratharaman Chandramouli94d595c2017-03-20 19:38:09 -04002635 * rdma_cap_opa_ah - Check if the port of device supports
2636 * OPA Address handles
2637 * @device: Device to check
2638 * @port_num: Port number to check
2639 *
2640 * Return: true if we are running on an OPA device which supports
2641 * the extended OPA addressing.
2642 */
2643static inline bool rdma_cap_opa_ah(struct ib_device *device, u8 port_num)
2644{
2645 return (device->port_immutable[port_num].core_cap_flags &
2646 RDMA_CORE_CAP_OPA_AH) == RDMA_CORE_CAP_OPA_AH;
2647}
2648
2649/**
Ira Weiny337877a2015-06-06 14:38:29 -04002650 * rdma_max_mad_size - Return the max MAD size required by this RDMA Port.
2651 *
2652 * @device: Device
2653 * @port_num: Port number
2654 *
2655 * This MAD size includes the MAD headers and MAD payload. No other headers
2656 * are included.
2657 *
2658 * Return the max MAD size required by the Port. Will return 0 if the port
2659 * does not support MADs
2660 */
2661static inline size_t rdma_max_mad_size(const struct ib_device *device, u8 port_num)
2662{
2663 return device->port_immutable[port_num].max_mad_size;
2664}
2665
Matan Barak03db3a22015-07-30 18:33:26 +03002666/**
2667 * rdma_cap_roce_gid_table - Check if the port of device uses roce_gid_table
2668 * @device: Device to check
2669 * @port_num: Port number to check
2670 *
2671 * RoCE GID table mechanism manages the various GIDs for a device.
2672 *
2673 * NOTE: if allocating the port's GID table has failed, this call will still
2674 * return true, but any RoCE GID table API will fail.
2675 *
2676 * Return: true if the port uses RoCE GID table mechanism in order to manage
2677 * its GIDs.
2678 */
2679static inline bool rdma_cap_roce_gid_table(const struct ib_device *device,
2680 u8 port_num)
2681{
2682 return rdma_protocol_roce(device, port_num) &&
2683 device->add_gid && device->del_gid;
2684}
2685
Christoph Hellwig002516e2016-05-03 18:01:05 +02002686/*
2687 * Check if the device supports READ W/ INVALIDATE.
2688 */
2689static inline bool rdma_cap_read_inv(struct ib_device *dev, u32 port_num)
2690{
2691 /*
2692 * iWarp drivers must support READ W/ INVALIDATE. No other protocol
2693 * has support for it yet.
2694 */
2695 return rdma_protocol_iwarp(dev, port_num);
2696}
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698int ib_query_gid(struct ib_device *device,
Matan Barak55ee3ab2015-10-15 18:38:45 +03002699 u8 port_num, int index, union ib_gid *gid,
2700 struct ib_gid_attr *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Eli Cohen50174a72016-03-11 22:58:38 +02002702int ib_set_vf_link_state(struct ib_device *device, int vf, u8 port,
2703 int state);
2704int ib_get_vf_config(struct ib_device *device, int vf, u8 port,
2705 struct ifla_vf_info *info);
2706int ib_get_vf_stats(struct ib_device *device, int vf, u8 port,
2707 struct ifla_vf_stats *stats);
2708int ib_set_vf_guid(struct ib_device *device, int vf, u8 port, u64 guid,
2709 int type);
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711int ib_query_pkey(struct ib_device *device,
2712 u8 port_num, u16 index, u16 *pkey);
2713
2714int ib_modify_device(struct ib_device *device,
2715 int device_modify_mask,
2716 struct ib_device_modify *device_modify);
2717
2718int ib_modify_port(struct ib_device *device,
2719 u8 port_num, int port_modify_mask,
2720 struct ib_port_modify *port_modify);
2721
Yosef Etigin5eb620c2007-05-14 07:26:51 +03002722int ib_find_gid(struct ib_device *device, union ib_gid *gid,
Matan Barakb39ffa12015-12-23 14:56:47 +02002723 enum ib_gid_type gid_type, struct net_device *ndev,
2724 u8 *port_num, u16 *index);
Yosef Etigin5eb620c2007-05-14 07:26:51 +03002725
2726int ib_find_pkey(struct ib_device *device,
2727 u8 port_num, u16 pkey, u16 *index);
2728
Christoph Hellwiged082d32016-09-05 12:56:17 +02002729enum ib_pd_flags {
2730 /*
2731 * Create a memory registration for all memory in the system and place
2732 * the rkey for it into pd->unsafe_global_rkey. This can be used by
2733 * ULPs to avoid the overhead of dynamic MRs.
2734 *
2735 * This flag is generally considered unsafe and must only be used in
2736 * extremly trusted environments. Every use of it will log a warning
2737 * in the kernel log.
2738 */
2739 IB_PD_UNSAFE_GLOBAL_RKEY = 0x01,
2740};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Christoph Hellwiged082d32016-09-05 12:56:17 +02002742struct ib_pd *__ib_alloc_pd(struct ib_device *device, unsigned int flags,
2743 const char *caller);
2744#define ib_alloc_pd(device, flags) \
2745 __ib_alloc_pd((device), (flags), __func__)
Jason Gunthorpe7dd78642015-08-05 14:34:31 -06002746void ib_dealloc_pd(struct ib_pd *pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748/**
Dasaratharaman Chandramouli0a18cfe2017-04-29 14:41:19 -04002749 * rdma_create_ah - Creates an address handle for the given address vector.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 * @pd: The protection domain associated with the address handle.
2751 * @ah_attr: The attributes of the address vector.
2752 *
2753 * The address handle is used to reference a local or global destination
2754 * in all UD QP post sends.
2755 */
Dasaratharaman Chandramouli0a18cfe2017-04-29 14:41:19 -04002756struct ib_ah *rdma_create_ah(struct ib_pd *pd, struct rdma_ah_attr *ah_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758/**
Moni Shoua850d8fd2016-11-10 11:30:56 +02002759 * ib_get_gids_from_rdma_hdr - Get sgid and dgid from GRH or IPv4 header
2760 * work completion.
2761 * @hdr: the L3 header to parse
2762 * @net_type: type of header to parse
2763 * @sgid: place to store source gid
2764 * @dgid: place to store destination gid
2765 */
2766int ib_get_gids_from_rdma_hdr(const union rdma_network_hdr *hdr,
2767 enum rdma_network_type net_type,
2768 union ib_gid *sgid, union ib_gid *dgid);
2769
2770/**
2771 * ib_get_rdma_header_version - Get the header version
2772 * @hdr: the L3 header to parse
2773 */
2774int ib_get_rdma_header_version(const union rdma_network_hdr *hdr);
2775
2776/**
Sean Hefty4e00d692006-06-17 20:37:39 -07002777 * ib_init_ah_from_wc - Initializes address handle attributes from a
2778 * work completion.
2779 * @device: Device on which the received message arrived.
2780 * @port_num: Port on which the received message arrived.
2781 * @wc: Work completion associated with the received message.
2782 * @grh: References the received global route header. This parameter is
2783 * ignored unless the work completion indicates that the GRH is valid.
2784 * @ah_attr: Returned attributes that can be used when creating an address
2785 * handle for replying to the message.
2786 */
Ira Weiny73cdaae2015-05-31 17:15:31 -04002787int ib_init_ah_from_wc(struct ib_device *device, u8 port_num,
2788 const struct ib_wc *wc, const struct ib_grh *grh,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04002789 struct rdma_ah_attr *ah_attr);
Sean Hefty4e00d692006-06-17 20:37:39 -07002790
2791/**
Hal Rosenstock513789e2005-07-27 11:45:34 -07002792 * ib_create_ah_from_wc - Creates an address handle associated with the
2793 * sender of the specified work completion.
2794 * @pd: The protection domain associated with the address handle.
2795 * @wc: Work completion information associated with a received message.
2796 * @grh: References the received global route header. This parameter is
2797 * ignored unless the work completion indicates that the GRH is valid.
2798 * @port_num: The outbound port number to associate with the address.
2799 *
2800 * The address handle is used to reference a local or global destination
2801 * in all UD QP post sends.
2802 */
Ira Weiny73cdaae2015-05-31 17:15:31 -04002803struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, const struct ib_wc *wc,
2804 const struct ib_grh *grh, u8 port_num);
Hal Rosenstock513789e2005-07-27 11:45:34 -07002805
2806/**
Dasaratharaman Chandramouli67b985b2017-04-29 14:41:20 -04002807 * rdma_modify_ah - Modifies the address vector associated with an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 * handle.
2809 * @ah: The address handle to modify.
2810 * @ah_attr: The new address vector attributes to associate with the
2811 * address handle.
2812 */
Dasaratharaman Chandramouli67b985b2017-04-29 14:41:20 -04002813int rdma_modify_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
2815/**
Dasaratharaman Chandramoulibfbfd662017-04-29 14:41:21 -04002816 * rdma_query_ah - Queries the address vector associated with an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 * handle.
2818 * @ah: The address handle to query.
2819 * @ah_attr: The address vector attributes associated with the address
2820 * handle.
2821 */
Dasaratharaman Chandramoulibfbfd662017-04-29 14:41:21 -04002822int rdma_query_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824/**
Dasaratharaman Chandramouli36523152017-04-29 14:41:22 -04002825 * rdma_destroy_ah - Destroys an address handle.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 * @ah: The address handle to destroy.
2827 */
Dasaratharaman Chandramouli36523152017-04-29 14:41:22 -04002828int rdma_destroy_ah(struct ib_ah *ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830/**
Roland Dreierd41fcc62005-08-18 12:23:08 -07002831 * ib_create_srq - Creates a SRQ associated with the specified protection
2832 * domain.
2833 * @pd: The protection domain associated with the SRQ.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08002834 * @srq_init_attr: A list of initial attributes required to create the
2835 * SRQ. If SRQ creation succeeds, then the attributes are updated to
2836 * the actual capabilities of the created SRQ.
Roland Dreierd41fcc62005-08-18 12:23:08 -07002837 *
2838 * srq_attr->max_wr and srq_attr->max_sge are read the determine the
2839 * requested size of the SRQ, and set to the actual values allocated
2840 * on return. If ib_create_srq() succeeds, then max_wr and max_sge
2841 * will always be at least as large as the requested values.
2842 */
2843struct ib_srq *ib_create_srq(struct ib_pd *pd,
2844 struct ib_srq_init_attr *srq_init_attr);
2845
2846/**
2847 * ib_modify_srq - Modifies the attributes for the specified SRQ.
2848 * @srq: The SRQ to modify.
2849 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
2850 * the current values of selected SRQ attributes are returned.
2851 * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
2852 * are being modified.
2853 *
2854 * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
2855 * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
2856 * the number of receives queued drops below the limit.
2857 */
2858int ib_modify_srq(struct ib_srq *srq,
2859 struct ib_srq_attr *srq_attr,
2860 enum ib_srq_attr_mask srq_attr_mask);
2861
2862/**
2863 * ib_query_srq - Returns the attribute list and current values for the
2864 * specified SRQ.
2865 * @srq: The SRQ to query.
2866 * @srq_attr: The attributes of the specified SRQ.
2867 */
2868int ib_query_srq(struct ib_srq *srq,
2869 struct ib_srq_attr *srq_attr);
2870
2871/**
2872 * ib_destroy_srq - Destroys the specified SRQ.
2873 * @srq: The SRQ to destroy.
2874 */
2875int ib_destroy_srq(struct ib_srq *srq);
2876
2877/**
2878 * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
2879 * @srq: The SRQ to post the work request on.
2880 * @recv_wr: A list of work requests to post on the receive queue.
2881 * @bad_recv_wr: On an immediate failure, this parameter will reference
2882 * the work request that failed to be posted on the QP.
2883 */
2884static inline int ib_post_srq_recv(struct ib_srq *srq,
2885 struct ib_recv_wr *recv_wr,
2886 struct ib_recv_wr **bad_recv_wr)
2887{
2888 return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
2889}
2890
2891/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 * ib_create_qp - Creates a QP associated with the specified protection
2893 * domain.
2894 * @pd: The protection domain associated with the QP.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08002895 * @qp_init_attr: A list of initial attributes required to create the
2896 * QP. If QP creation succeeds, then the attributes are updated to
2897 * the actual capabilities of the created QP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 */
2899struct ib_qp *ib_create_qp(struct ib_pd *pd,
2900 struct ib_qp_init_attr *qp_init_attr);
2901
2902/**
2903 * ib_modify_qp - Modifies the attributes for the specified QP and then
2904 * transitions the QP to the given state.
2905 * @qp: The QP to modify.
2906 * @qp_attr: On input, specifies the QP attributes to modify. On output,
2907 * the current values of selected QP attributes are returned.
2908 * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
2909 * are being modified.
2910 */
2911int ib_modify_qp(struct ib_qp *qp,
2912 struct ib_qp_attr *qp_attr,
2913 int qp_attr_mask);
2914
2915/**
2916 * ib_query_qp - Returns the attribute list and current values for the
2917 * specified QP.
2918 * @qp: The QP to query.
2919 * @qp_attr: The attributes of the specified QP.
2920 * @qp_attr_mask: A bit-mask used to select specific attributes to query.
2921 * @qp_init_attr: Additional attributes of the selected QP.
2922 *
2923 * The qp_attr_mask may be used to limit the query to gathering only the
2924 * selected attributes.
2925 */
2926int ib_query_qp(struct ib_qp *qp,
2927 struct ib_qp_attr *qp_attr,
2928 int qp_attr_mask,
2929 struct ib_qp_init_attr *qp_init_attr);
2930
2931/**
2932 * ib_destroy_qp - Destroys the specified QP.
2933 * @qp: The QP to destroy.
2934 */
2935int ib_destroy_qp(struct ib_qp *qp);
2936
2937/**
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002938 * ib_open_qp - Obtain a reference to an existing sharable QP.
2939 * @xrcd - XRC domain
2940 * @qp_open_attr: Attributes identifying the QP to open.
2941 *
2942 * Returns a reference to a sharable QP.
2943 */
2944struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
2945 struct ib_qp_open_attr *qp_open_attr);
2946
2947/**
2948 * ib_close_qp - Release an external reference to a QP.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002949 * @qp: The QP handle to release
2950 *
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002951 * The opened QP handle is released by the caller. The underlying
2952 * shared QP is not destroyed until all internal references are released.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002953 */
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002954int ib_close_qp(struct ib_qp *qp);
Sean Heftyd3d72d92011-05-26 23:06:44 -07002955
2956/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 * ib_post_send - Posts a list of work requests to the send queue of
2958 * the specified QP.
2959 * @qp: The QP to post the work request on.
2960 * @send_wr: A list of work requests to post on the send queue.
2961 * @bad_send_wr: On an immediate failure, this parameter will reference
2962 * the work request that failed to be posted on the QP.
Bart Van Assche55464d42009-12-09 14:20:04 -08002963 *
2964 * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
2965 * error is returned, the QP state shall not be affected,
2966 * ib_post_send() will return an immediate error after queueing any
2967 * earlier work requests in the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 */
2969static inline int ib_post_send(struct ib_qp *qp,
2970 struct ib_send_wr *send_wr,
2971 struct ib_send_wr **bad_send_wr)
2972{
2973 return qp->device->post_send(qp, send_wr, bad_send_wr);
2974}
2975
2976/**
2977 * ib_post_recv - Posts a list of work requests to the receive queue of
2978 * the specified QP.
2979 * @qp: The QP to post the work request on.
2980 * @recv_wr: A list of work requests to post on the receive queue.
2981 * @bad_recv_wr: On an immediate failure, this parameter will reference
2982 * the work request that failed to be posted on the QP.
2983 */
2984static inline int ib_post_recv(struct ib_qp *qp,
2985 struct ib_recv_wr *recv_wr,
2986 struct ib_recv_wr **bad_recv_wr)
2987{
2988 return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
2989}
2990
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08002991struct ib_cq *ib_alloc_cq(struct ib_device *dev, void *private,
2992 int nr_cqe, int comp_vector, enum ib_poll_context poll_ctx);
2993void ib_free_cq(struct ib_cq *cq);
2994int ib_process_cq_direct(struct ib_cq *cq, int budget);
2995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996/**
2997 * ib_create_cq - Creates a CQ on the specified device.
2998 * @device: The device on which to create the CQ.
2999 * @comp_handler: A user-specified callback that is invoked when a
3000 * completion event occurs on the CQ.
3001 * @event_handler: A user-specified callback that is invoked when an
3002 * asynchronous event not associated with a completion occurs on the CQ.
3003 * @cq_context: Context associated with the CQ returned to the user via
3004 * the associated completion and event handlers.
Matan Barak8e372102015-06-11 16:35:21 +03003005 * @cq_attr: The attributes the CQ should be created upon.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 *
3007 * Users can examine the cq structure to determine the actual CQ size.
3008 */
3009struct ib_cq *ib_create_cq(struct ib_device *device,
3010 ib_comp_handler comp_handler,
3011 void (*event_handler)(struct ib_event *, void *),
Matan Barak8e372102015-06-11 16:35:21 +03003012 void *cq_context,
3013 const struct ib_cq_init_attr *cq_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015/**
3016 * ib_resize_cq - Modifies the capacity of the CQ.
3017 * @cq: The CQ to resize.
3018 * @cqe: The minimum size of the CQ.
3019 *
3020 * Users can examine the cq structure to determine the actual CQ size.
3021 */
3022int ib_resize_cq(struct ib_cq *cq, int cqe);
3023
3024/**
Eli Cohen2dd57162008-04-16 21:09:33 -07003025 * ib_modify_cq - Modifies moderation params of the CQ
3026 * @cq: The CQ to modify.
3027 * @cq_count: number of CQEs that will trigger an event
3028 * @cq_period: max period of time in usec before triggering an event
3029 *
3030 */
3031int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
3032
3033/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 * ib_destroy_cq - Destroys the specified CQ.
3035 * @cq: The CQ to destroy.
3036 */
3037int ib_destroy_cq(struct ib_cq *cq);
3038
3039/**
3040 * ib_poll_cq - poll a CQ for completion(s)
3041 * @cq:the CQ being polled
3042 * @num_entries:maximum number of completions to return
3043 * @wc:array of at least @num_entries &struct ib_wc where completions
3044 * will be returned
3045 *
3046 * Poll a CQ for (possibly multiple) completions. If the return value
3047 * is < 0, an error occurred. If the return value is >= 0, it is the
3048 * number of completions returned. If the return value is
3049 * non-negative and < num_entries, then the CQ was emptied.
3050 */
3051static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
3052 struct ib_wc *wc)
3053{
3054 return cq->device->poll_cq(cq, num_entries, wc);
3055}
3056
3057/**
3058 * ib_peek_cq - Returns the number of unreaped completions currently
3059 * on the specified CQ.
3060 * @cq: The CQ to peek.
3061 * @wc_cnt: A minimum number of unreaped completions to check for.
3062 *
3063 * If the number of unreaped completions is greater than or equal to wc_cnt,
3064 * this function returns wc_cnt, otherwise, it returns the actual number of
3065 * unreaped completions.
3066 */
3067int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
3068
3069/**
3070 * ib_req_notify_cq - Request completion notification on a CQ.
3071 * @cq: The CQ to generate an event for.
Roland Dreiered23a722007-05-06 21:02:48 -07003072 * @flags:
3073 * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
3074 * to request an event on the next solicited event or next work
3075 * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
3076 * may also be |ed in to request a hint about missed events, as
3077 * described below.
3078 *
3079 * Return Value:
3080 * < 0 means an error occurred while requesting notification
3081 * == 0 means notification was requested successfully, and if
3082 * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
3083 * were missed and it is safe to wait for another event. In
3084 * this case is it guaranteed that any work completions added
3085 * to the CQ since the last CQ poll will trigger a completion
3086 * notification event.
3087 * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
3088 * in. It means that the consumer must poll the CQ again to
3089 * make sure it is empty to avoid missing an event because of a
3090 * race between requesting notification and an entry being
3091 * added to the CQ. This return value means it is possible
3092 * (but not guaranteed) that a work completion has been added
3093 * to the CQ since the last poll without triggering a
3094 * completion notification event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 */
3096static inline int ib_req_notify_cq(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07003097 enum ib_cq_notify_flags flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Roland Dreiered23a722007-05-06 21:02:48 -07003099 return cq->device->req_notify_cq(cq, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100}
3101
3102/**
3103 * ib_req_ncomp_notif - Request completion notification when there are
3104 * at least the specified number of unreaped completions on the CQ.
3105 * @cq: The CQ to generate an event for.
3106 * @wc_cnt: The number of unreaped completions that should be on the
3107 * CQ before an event is generated.
3108 */
3109static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
3110{
3111 return cq->device->req_ncomp_notif ?
3112 cq->device->req_ncomp_notif(cq, wc_cnt) :
3113 -ENOSYS;
3114}
3115
3116/**
Ralph Campbell9b513092006-12-12 14:27:41 -08003117 * ib_dma_mapping_error - check a DMA addr for error
3118 * @dev: The device for which the dma_addr was created
3119 * @dma_addr: The DMA address to check
3120 */
3121static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
3122{
Bart Van Assche0957c292017-03-07 22:56:53 +00003123 return dma_mapping_error(dev->dma_device, dma_addr);
Ralph Campbell9b513092006-12-12 14:27:41 -08003124}
3125
3126/**
3127 * ib_dma_map_single - Map a kernel virtual address to DMA address
3128 * @dev: The device for which the dma_addr is to be created
3129 * @cpu_addr: The kernel virtual address
3130 * @size: The size of the region in bytes
3131 * @direction: The direction of the DMA
3132 */
3133static inline u64 ib_dma_map_single(struct ib_device *dev,
3134 void *cpu_addr, size_t size,
3135 enum dma_data_direction direction)
3136{
Bart Van Assche0957c292017-03-07 22:56:53 +00003137 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08003138}
3139
3140/**
3141 * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
3142 * @dev: The device for which the DMA address was created
3143 * @addr: The DMA address
3144 * @size: The size of the region in bytes
3145 * @direction: The direction of the DMA
3146 */
3147static inline void ib_dma_unmap_single(struct ib_device *dev,
3148 u64 addr, size_t size,
3149 enum dma_data_direction direction)
3150{
Bart Van Assche0957c292017-03-07 22:56:53 +00003151 dma_unmap_single(dev->dma_device, addr, size, direction);
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003152}
3153
Ralph Campbell9b513092006-12-12 14:27:41 -08003154/**
3155 * ib_dma_map_page - Map a physical page to DMA address
3156 * @dev: The device for which the dma_addr is to be created
3157 * @page: The page to be mapped
3158 * @offset: The offset within the page
3159 * @size: The size of the region in bytes
3160 * @direction: The direction of the DMA
3161 */
3162static inline u64 ib_dma_map_page(struct ib_device *dev,
3163 struct page *page,
3164 unsigned long offset,
3165 size_t size,
3166 enum dma_data_direction direction)
3167{
Bart Van Assche0957c292017-03-07 22:56:53 +00003168 return dma_map_page(dev->dma_device, page, offset, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08003169}
3170
3171/**
3172 * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
3173 * @dev: The device for which the DMA address was created
3174 * @addr: The DMA address
3175 * @size: The size of the region in bytes
3176 * @direction: The direction of the DMA
3177 */
3178static inline void ib_dma_unmap_page(struct ib_device *dev,
3179 u64 addr, size_t size,
3180 enum dma_data_direction direction)
3181{
Bart Van Assche0957c292017-03-07 22:56:53 +00003182 dma_unmap_page(dev->dma_device, addr, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08003183}
3184
3185/**
3186 * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
3187 * @dev: The device for which the DMA addresses are to be created
3188 * @sg: The array of scatter/gather entries
3189 * @nents: The number of scatter/gather entries
3190 * @direction: The direction of the DMA
3191 */
3192static inline int ib_dma_map_sg(struct ib_device *dev,
3193 struct scatterlist *sg, int nents,
3194 enum dma_data_direction direction)
3195{
Bart Van Assche0957c292017-03-07 22:56:53 +00003196 return dma_map_sg(dev->dma_device, sg, nents, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08003197}
3198
3199/**
3200 * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
3201 * @dev: The device for which the DMA addresses were created
3202 * @sg: The array of scatter/gather entries
3203 * @nents: The number of scatter/gather entries
3204 * @direction: The direction of the DMA
3205 */
3206static inline void ib_dma_unmap_sg(struct ib_device *dev,
3207 struct scatterlist *sg, int nents,
3208 enum dma_data_direction direction)
3209{
Bart Van Assche0957c292017-03-07 22:56:53 +00003210 dma_unmap_sg(dev->dma_device, sg, nents, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08003211}
3212
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003213static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
3214 struct scatterlist *sg, int nents,
3215 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003216 unsigned long dma_attrs)
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003217{
Bart Van Assche0957c292017-03-07 22:56:53 +00003218 return dma_map_sg_attrs(dev->dma_device, sg, nents, direction,
3219 dma_attrs);
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003220}
3221
3222static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
3223 struct scatterlist *sg, int nents,
3224 enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003225 unsigned long dma_attrs)
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003226{
Bart Van Assche0957c292017-03-07 22:56:53 +00003227 dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, dma_attrs);
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07003228}
Ralph Campbell9b513092006-12-12 14:27:41 -08003229/**
3230 * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
3231 * @dev: The device for which the DMA addresses were created
3232 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04003233 *
3234 * Note: this function is obsolete. To do: change all occurrences of
3235 * ib_sg_dma_address() into sg_dma_address().
Ralph Campbell9b513092006-12-12 14:27:41 -08003236 */
3237static inline u64 ib_sg_dma_address(struct ib_device *dev,
3238 struct scatterlist *sg)
3239{
Ben Collinsd1998ef2006-12-13 22:10:05 -05003240 return sg_dma_address(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08003241}
3242
3243/**
3244 * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
3245 * @dev: The device for which the DMA addresses were created
3246 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04003247 *
3248 * Note: this function is obsolete. To do: change all occurrences of
3249 * ib_sg_dma_len() into sg_dma_len().
Ralph Campbell9b513092006-12-12 14:27:41 -08003250 */
3251static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
3252 struct scatterlist *sg)
3253{
Ben Collinsd1998ef2006-12-13 22:10:05 -05003254 return sg_dma_len(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08003255}
3256
3257/**
3258 * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
3259 * @dev: The device for which the DMA address was created
3260 * @addr: The DMA address
3261 * @size: The size of the region in bytes
3262 * @dir: The direction of the DMA
3263 */
3264static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
3265 u64 addr,
3266 size_t size,
3267 enum dma_data_direction dir)
3268{
Bart Van Assche0957c292017-03-07 22:56:53 +00003269 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
Ralph Campbell9b513092006-12-12 14:27:41 -08003270}
3271
3272/**
3273 * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
3274 * @dev: The device for which the DMA address was created
3275 * @addr: The DMA address
3276 * @size: The size of the region in bytes
3277 * @dir: The direction of the DMA
3278 */
3279static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
3280 u64 addr,
3281 size_t size,
3282 enum dma_data_direction dir)
3283{
Bart Van Assche0957c292017-03-07 22:56:53 +00003284 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
Ralph Campbell9b513092006-12-12 14:27:41 -08003285}
3286
3287/**
3288 * ib_dma_alloc_coherent - Allocate memory and map it for DMA
3289 * @dev: The device for which the DMA address is requested
3290 * @size: The size of the region to allocate in bytes
3291 * @dma_handle: A pointer for returning the DMA address of the region
3292 * @flag: memory allocator flags
3293 */
3294static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
3295 size_t size,
Bart Van Assched43dbac2017-01-20 13:04:10 -08003296 dma_addr_t *dma_handle,
Ralph Campbell9b513092006-12-12 14:27:41 -08003297 gfp_t flag)
3298{
Bart Van Assche0957c292017-03-07 22:56:53 +00003299 return dma_alloc_coherent(dev->dma_device, size, dma_handle, flag);
Ralph Campbell9b513092006-12-12 14:27:41 -08003300}
3301
3302/**
3303 * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
3304 * @dev: The device for which the DMA addresses were allocated
3305 * @size: The size of the region
3306 * @cpu_addr: the address returned by ib_dma_alloc_coherent()
3307 * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
3308 */
3309static inline void ib_dma_free_coherent(struct ib_device *dev,
3310 size_t size, void *cpu_addr,
Bart Van Assched43dbac2017-01-20 13:04:10 -08003311 dma_addr_t dma_handle)
Ralph Campbell9b513092006-12-12 14:27:41 -08003312{
Bart Van Assche0957c292017-03-07 22:56:53 +00003313 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
Ralph Campbell9b513092006-12-12 14:27:41 -08003314}
3315
3316/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 * ib_dereg_mr - Deregisters a memory region and removes it from the
3318 * HCA translation table.
3319 * @mr: The memory region to deregister.
Shani Michaeli7083e422013-02-06 16:19:12 +00003320 *
3321 * This function can fail, if the memory region has memory windows bound to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 */
3323int ib_dereg_mr(struct ib_mr *mr);
3324
Sagi Grimberg9bee1782015-07-30 10:32:35 +03003325struct ib_mr *ib_alloc_mr(struct ib_pd *pd,
3326 enum ib_mr_type mr_type,
3327 u32 max_num_sg);
Steve Wise00f7ec32008-07-14 23:48:45 -07003328
3329/**
Steve Wise00f7ec32008-07-14 23:48:45 -07003330 * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
3331 * R_Key and L_Key.
3332 * @mr - struct ib_mr pointer to be updated.
3333 * @newkey - new key to be used.
3334 */
3335static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
3336{
3337 mr->lkey = (mr->lkey & 0xffffff00) | newkey;
3338 mr->rkey = (mr->rkey & 0xffffff00) | newkey;
3339}
3340
3341/**
Shani Michaeli7083e422013-02-06 16:19:12 +00003342 * ib_inc_rkey - increments the key portion of the given rkey. Can be used
3343 * for calculating a new rkey for type 2 memory windows.
3344 * @rkey - the rkey to increment.
3345 */
3346static inline u32 ib_inc_rkey(u32 rkey)
3347{
3348 const u32 mask = 0x000000ff;
3349 return ((rkey + 1) & mask) | (rkey & ~mask);
3350}
3351
3352/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 * ib_alloc_fmr - Allocates a unmapped fast memory region.
3354 * @pd: The protection domain associated with the unmapped region.
3355 * @mr_access_flags: Specifies the memory access rights.
3356 * @fmr_attr: Attributes of the unmapped region.
3357 *
3358 * A fast memory region must be mapped before it can be used as part of
3359 * a work request.
3360 */
3361struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
3362 int mr_access_flags,
3363 struct ib_fmr_attr *fmr_attr);
3364
3365/**
3366 * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
3367 * @fmr: The fast memory region to associate with the pages.
3368 * @page_list: An array of physical pages to map to the fast memory region.
3369 * @list_len: The number of pages in page_list.
3370 * @iova: The I/O virtual address to use with the mapped region.
3371 */
3372static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
3373 u64 *page_list, int list_len,
3374 u64 iova)
3375{
3376 return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
3377}
3378
3379/**
3380 * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
3381 * @fmr_list: A linked list of fast memory regions to unmap.
3382 */
3383int ib_unmap_fmr(struct list_head *fmr_list);
3384
3385/**
3386 * ib_dealloc_fmr - Deallocates a fast memory region.
3387 * @fmr: The fast memory region to deallocate.
3388 */
3389int ib_dealloc_fmr(struct ib_fmr *fmr);
3390
3391/**
3392 * ib_attach_mcast - Attaches the specified QP to a multicast group.
3393 * @qp: QP to attach to the multicast group. The QP must be type
3394 * IB_QPT_UD.
3395 * @gid: Multicast group GID.
3396 * @lid: Multicast group LID in host byte order.
3397 *
3398 * In order to send and receive multicast packets, subnet
3399 * administration must have created the multicast group and configured
3400 * the fabric appropriately. The port associated with the specified
3401 * QP must also be a member of the multicast group.
3402 */
3403int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
3404
3405/**
3406 * ib_detach_mcast - Detaches the specified QP from a multicast group.
3407 * @qp: QP to detach from the multicast group.
3408 * @gid: Multicast group GID.
3409 * @lid: Multicast group LID in host byte order.
3410 */
3411int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
3412
Sean Hefty59991f92011-05-23 17:52:46 -07003413/**
3414 * ib_alloc_xrcd - Allocates an XRC domain.
3415 * @device: The device on which to allocate the XRC domain.
3416 */
3417struct ib_xrcd *ib_alloc_xrcd(struct ib_device *device);
3418
3419/**
3420 * ib_dealloc_xrcd - Deallocates an XRC domain.
3421 * @xrcd: The XRC domain to deallocate.
3422 */
3423int ib_dealloc_xrcd(struct ib_xrcd *xrcd);
3424
Hadar Hen Zion319a4412013-08-07 14:01:59 +03003425struct ib_flow *ib_create_flow(struct ib_qp *qp,
3426 struct ib_flow_attr *flow_attr, int domain);
3427int ib_destroy_flow(struct ib_flow *flow_id);
3428
Eli Cohen1c636f82013-10-31 15:26:32 +02003429static inline int ib_check_mr_access(int flags)
3430{
3431 /*
3432 * Local write permission is required if remote write or
3433 * remote atomic permission is also requested.
3434 */
3435 if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
3436 !(flags & IB_ACCESS_LOCAL_WRITE))
3437 return -EINVAL;
3438
3439 return 0;
3440}
3441
Sagi Grimberg1b01d332014-02-23 14:19:05 +02003442/**
3443 * ib_check_mr_status: lightweight check of MR status.
3444 * This routine may provide status checks on a selected
3445 * ib_mr. first use is for signature status check.
3446 *
3447 * @mr: A memory region.
3448 * @check_mask: Bitmask of which checks to perform from
3449 * ib_mr_status_check enumeration.
3450 * @mr_status: The container of relevant status checks.
3451 * failed checks will be indicated in the status bitmask
3452 * and the relevant info shall be in the error item.
3453 */
3454int ib_check_mr_status(struct ib_mr *mr, u32 check_mask,
3455 struct ib_mr_status *mr_status);
3456
Yotam Kenneth9268f722015-07-30 17:50:15 +03003457struct net_device *ib_get_net_dev_by_params(struct ib_device *dev, u8 port,
3458 u16 pkey, const union ib_gid *gid,
3459 const struct sockaddr *addr);
Yishai Hadas5fd251c2016-05-23 15:20:48 +03003460struct ib_wq *ib_create_wq(struct ib_pd *pd,
3461 struct ib_wq_init_attr *init_attr);
3462int ib_destroy_wq(struct ib_wq *wq);
3463int ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *attr,
3464 u32 wq_attr_mask);
Yishai Hadas6d397862016-05-23 15:20:51 +03003465struct ib_rwq_ind_table *ib_create_rwq_ind_table(struct ib_device *device,
3466 struct ib_rwq_ind_table_init_attr*
3467 wq_ind_table_init_attr);
3468int ib_destroy_rwq_ind_table(struct ib_rwq_ind_table *wq_ind_table);
Yotam Kenneth9268f722015-07-30 17:50:15 +03003469
Christoph Hellwigff2ba992016-05-03 18:01:04 +02003470int ib_map_mr_sg(struct ib_mr *mr, struct scatterlist *sg, int sg_nents,
Bart Van Assche9aa8b322016-05-12 10:49:15 -07003471 unsigned int *sg_offset, unsigned int page_size);
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03003472
3473static inline int
Christoph Hellwigff2ba992016-05-03 18:01:04 +02003474ib_map_mr_sg_zbva(struct ib_mr *mr, struct scatterlist *sg, int sg_nents,
Bart Van Assche9aa8b322016-05-12 10:49:15 -07003475 unsigned int *sg_offset, unsigned int page_size)
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03003476{
3477 int n;
3478
Christoph Hellwigff2ba992016-05-03 18:01:04 +02003479 n = ib_map_mr_sg(mr, sg, sg_nents, sg_offset, page_size);
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03003480 mr->iova = 0;
3481
3482 return n;
3483}
3484
Christoph Hellwigff2ba992016-05-03 18:01:04 +02003485int ib_sg_to_pages(struct ib_mr *mr, struct scatterlist *sgl, int sg_nents,
Bart Van Assche9aa8b322016-05-12 10:49:15 -07003486 unsigned int *sg_offset, int (*set_page)(struct ib_mr *, u64));
Sagi Grimberg4c67e2b2015-10-13 19:11:24 +03003487
Steve Wise765d6772016-02-17 08:15:41 -08003488void ib_drain_rq(struct ib_qp *qp);
3489void ib_drain_sq(struct ib_qp *qp);
3490void ib_drain_qp(struct ib_qp *qp);
Moni Shoua850d8fd2016-11-10 11:30:56 +02003491
Moni Shouac90ea9d2016-11-23 08:23:22 +02003492int ib_resolve_eth_dmac(struct ib_device *device,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04003493 struct rdma_ah_attr *ah_attr);
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003494
3495static inline u8 *rdma_ah_retrieve_dmac(struct rdma_ah_attr *attr)
3496{
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003497 if (attr->type == RDMA_AH_ATTR_TYPE_ROCE)
3498 return attr->roce.dmac;
3499 return NULL;
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003500}
3501
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003502static inline void rdma_ah_set_dlid(struct rdma_ah_attr *attr, u32 dlid)
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003503{
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003504 if (attr->type == RDMA_AH_ATTR_TYPE_IB)
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003505 attr->ib.dlid = (u16)dlid;
3506 else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
3507 attr->opa.dlid = dlid;
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003508}
3509
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003510static inline u32 rdma_ah_get_dlid(const struct rdma_ah_attr *attr)
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003511{
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003512 if (attr->type == RDMA_AH_ATTR_TYPE_IB)
3513 return attr->ib.dlid;
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003514 else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
3515 return attr->opa.dlid;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003516 return 0;
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003517}
3518
3519static inline void rdma_ah_set_sl(struct rdma_ah_attr *attr, u8 sl)
3520{
3521 attr->sl = sl;
3522}
3523
3524static inline u8 rdma_ah_get_sl(const struct rdma_ah_attr *attr)
3525{
3526 return attr->sl;
3527}
3528
3529static inline void rdma_ah_set_path_bits(struct rdma_ah_attr *attr,
3530 u8 src_path_bits)
3531{
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003532 if (attr->type == RDMA_AH_ATTR_TYPE_IB)
3533 attr->ib.src_path_bits = src_path_bits;
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003534 else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
3535 attr->opa.src_path_bits = src_path_bits;
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003536}
3537
3538static inline u8 rdma_ah_get_path_bits(const struct rdma_ah_attr *attr)
3539{
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003540 if (attr->type == RDMA_AH_ATTR_TYPE_IB)
3541 return attr->ib.src_path_bits;
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003542 else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
3543 return attr->opa.src_path_bits;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003544 return 0;
Dasaratharaman Chandramouli2224c472017-04-29 14:41:27 -04003545}
3546
3547static inline void rdma_ah_set_port_num(struct rdma_ah_attr *attr, u8 port_num)
3548{
3549 attr->port_num = port_num;
3550}
3551
3552static inline u8 rdma_ah_get_port_num(const struct rdma_ah_attr *attr)
3553{
3554 return attr->port_num;
3555}
3556
3557static inline void rdma_ah_set_static_rate(struct rdma_ah_attr *attr,
3558 u8 static_rate)
3559{
3560 attr->static_rate = static_rate;
3561}
3562
3563static inline u8 rdma_ah_get_static_rate(const struct rdma_ah_attr *attr)
3564{
3565 return attr->static_rate;
3566}
3567
3568static inline void rdma_ah_set_ah_flags(struct rdma_ah_attr *attr,
3569 enum ib_ah_flags flag)
3570{
3571 attr->ah_flags = flag;
3572}
3573
3574static inline enum ib_ah_flags
3575 rdma_ah_get_ah_flags(const struct rdma_ah_attr *attr)
3576{
3577 return attr->ah_flags;
3578}
3579
3580static inline const struct ib_global_route
3581 *rdma_ah_read_grh(const struct rdma_ah_attr *attr)
3582{
3583 return &attr->grh;
3584}
3585
3586/*To retrieve and modify the grh */
3587static inline struct ib_global_route
3588 *rdma_ah_retrieve_grh(struct rdma_ah_attr *attr)
3589{
3590 return &attr->grh;
3591}
3592
3593static inline void rdma_ah_set_dgid_raw(struct rdma_ah_attr *attr, void *dgid)
3594{
3595 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
3596
3597 memcpy(grh->dgid.raw, dgid, sizeof(grh->dgid));
3598}
3599
3600static inline void rdma_ah_set_subnet_prefix(struct rdma_ah_attr *attr,
3601 __be64 prefix)
3602{
3603 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
3604
3605 grh->dgid.global.subnet_prefix = prefix;
3606}
3607
3608static inline void rdma_ah_set_interface_id(struct rdma_ah_attr *attr,
3609 __be64 if_id)
3610{
3611 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
3612
3613 grh->dgid.global.interface_id = if_id;
3614}
3615
3616static inline void rdma_ah_set_grh(struct rdma_ah_attr *attr,
3617 union ib_gid *dgid, u32 flow_label,
3618 u8 sgid_index, u8 hop_limit,
3619 u8 traffic_class)
3620{
3621 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
3622
3623 attr->ah_flags = IB_AH_GRH;
3624 if (dgid)
3625 grh->dgid = *dgid;
3626 grh->flow_label = flow_label;
3627 grh->sgid_index = sgid_index;
3628 grh->hop_limit = hop_limit;
3629 grh->traffic_class = traffic_class;
3630}
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003631
3632/*Get AH type */
3633static inline enum rdma_ah_attr_type rdma_ah_find_type(struct ib_device *dev,
3634 u32 port_num)
3635{
3636 if ((rdma_protocol_roce(dev, port_num)) ||
3637 (rdma_protocol_iwarp(dev, port_num)))
3638 return RDMA_AH_ATTR_TYPE_ROCE;
Dasaratharaman Chandramouli64b46462017-04-29 14:41:30 -04003639 else if ((rdma_protocol_ib(dev, port_num)) &&
3640 (rdma_cap_opa_ah(dev, port_num)))
3641 return RDMA_AH_ATTR_TYPE_OPA;
Dasaratharaman Chandramouli44c58482017-04-29 14:41:29 -04003642 else
3643 return RDMA_AH_ATTR_TYPE_IB;
3644}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645#endif /* IB_VERBS_H */