blob: 79bcab61d2baba7d75ebb5f0e4ba2f83a703472c [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2015 Intel Corporation.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * BSD LICENSE
20 *
21 * Copyright(c) 2015 Intel Corporation.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 *
27 * - Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * - Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in
31 * the documentation and/or other materials provided with the
32 * distribution.
33 * - Neither the name of Intel Corporation nor the names of its
34 * contributors may be used to endorse or promote products derived
35 * from this software without specific prior written permission.
36 *
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 *
49 */
50
51#ifndef HFI1_VERBS_H
52#define HFI1_VERBS_H
53
54#include <linux/types.h>
55#include <linux/seqlock.h>
56#include <linux/kernel.h>
57#include <linux/interrupt.h>
58#include <linux/kref.h>
59#include <linux/workqueue.h>
60#include <linux/kthread.h>
61#include <linux/completion.h>
62#include <rdma/ib_pack.h>
63#include <rdma/ib_user_verbs.h>
64#include <rdma/ib_mad.h>
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080065#include <rdma/rdma_vt.h>
Dennis Dalessandro54d10c12016-01-19 14:43:01 -080066#include <rdma/rdmavt_qp.h>
Dennis Dalessandroabd712d2016-01-19 14:43:22 -080067#include <rdma/rdmavt_cq.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040068
69struct hfi1_ctxtdata;
70struct hfi1_pportdata;
71struct hfi1_devdata;
72struct hfi1_packet;
73
74#include "iowait.h"
75
76#define HFI1_MAX_RDMA_ATOMIC 16
77#define HFI1_GUIDS_PER_PORT 5
78
79/*
80 * Increment this value if any changes that break userspace ABI
81 * compatibility are made.
82 */
83#define HFI1_UVERBS_ABI_VERSION 2
84
Mike Marciniszyn77241052015-07-30 15:17:43 -040085#define IB_SEQ_NAK (3 << 29)
86
87/* AETH NAK opcode values */
88#define IB_RNR_NAK 0x20
89#define IB_NAK_PSN_ERROR 0x60
90#define IB_NAK_INVALID_REQUEST 0x61
91#define IB_NAK_REMOTE_ACCESS_ERROR 0x62
92#define IB_NAK_REMOTE_OPERATIONAL_ERROR 0x63
93#define IB_NAK_INVALID_RD_REQUEST 0x64
94
Mike Marciniszyn77241052015-07-30 15:17:43 -040095/* IB Performance Manager status values */
96#define IB_PMA_SAMPLE_STATUS_DONE 0x00
97#define IB_PMA_SAMPLE_STATUS_STARTED 0x01
98#define IB_PMA_SAMPLE_STATUS_RUNNING 0x02
99
100/* Mandatory IB performance counter select values. */
101#define IB_PMA_PORT_XMIT_DATA cpu_to_be16(0x0001)
102#define IB_PMA_PORT_RCV_DATA cpu_to_be16(0x0002)
103#define IB_PMA_PORT_XMIT_PKTS cpu_to_be16(0x0003)
104#define IB_PMA_PORT_RCV_PKTS cpu_to_be16(0x0004)
105#define IB_PMA_PORT_XMIT_WAIT cpu_to_be16(0x0005)
106
107#define HFI1_VENDOR_IPG cpu_to_be16(0xFFA0)
108
Mike Marciniszyn7c091e52015-11-10 09:14:01 -0500109#define IB_BTH_REQ_ACK BIT(31)
110#define IB_BTH_SOLICITED BIT(23)
111#define IB_BTH_MIG_REQ BIT(22)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400112
113#define IB_GRH_VERSION 6
114#define IB_GRH_VERSION_MASK 0xF
115#define IB_GRH_VERSION_SHIFT 28
116#define IB_GRH_TCLASS_MASK 0xFF
117#define IB_GRH_TCLASS_SHIFT 20
118#define IB_GRH_FLOW_MASK 0xFFFFF
119#define IB_GRH_FLOW_SHIFT 0
120#define IB_GRH_NEXT_HDR 0x1B
121
122#define IB_DEFAULT_GID_PREFIX cpu_to_be64(0xfe80000000000000ULL)
123
124/* flags passed by hfi1_ib_rcv() */
125enum {
126 HFI1_HAS_GRH = (1 << 0),
127};
128
129struct ib_reth {
130 __be64 vaddr;
131 __be32 rkey;
132 __be32 length;
133} __packed;
134
135struct ib_atomic_eth {
136 __be32 vaddr[2]; /* unaligned so access as 2 32-bit words */
137 __be32 rkey;
138 __be64 swap_data;
139 __be64 compare_data;
140} __packed;
141
142union ib_ehdrs {
143 struct {
144 __be32 deth[2];
145 __be32 imm_data;
146 } ud;
147 struct {
148 struct ib_reth reth;
149 __be32 imm_data;
150 } rc;
151 struct {
152 __be32 aeth;
153 __be32 atomic_ack_eth[2];
154 } at;
155 __be32 imm_data;
156 __be32 aeth;
157 struct ib_atomic_eth atomic_eth;
158} __packed;
159
160struct hfi1_other_headers {
161 __be32 bth[3];
162 union ib_ehdrs u;
163} __packed;
164
165/*
166 * Note that UD packets with a GRH header are 8+40+12+8 = 68 bytes
167 * long (72 w/ imm_data). Only the first 56 bytes of the IB header
168 * will be in the eager header buffer. The remaining 12 or 16 bytes
169 * are in the data buffer.
170 */
171struct hfi1_ib_header {
172 __be16 lrh[4];
173 union {
174 struct {
175 struct ib_grh grh;
176 struct hfi1_other_headers oth;
177 } l;
178 struct hfi1_other_headers oth;
179 } u;
180} __packed;
181
182struct ahg_ib_header {
183 struct sdma_engine *sde;
184 u32 ahgdesc[2];
185 u16 tx_flags;
186 u8 ahgcount;
187 u8 ahgidx;
188 struct hfi1_ib_header ibh;
189};
190
191struct hfi1_pio_header {
192 __le64 pbc;
193 struct hfi1_ib_header hdr;
194} __packed;
195
196/*
197 * used for force cacheline alignment for AHG
198 */
199struct tx_pio_header {
200 struct hfi1_pio_header phdr;
201} ____cacheline_aligned;
202
203/*
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800204 * hfi1 specific data structures that will be hidden from rvt after the queue
205 * pair is made common
206 */
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800207struct hfi1_qp_priv {
208 struct ahg_ib_header *s_hdr; /* next packet header to send */
209 struct sdma_engine *s_sde; /* current sde */
210 u8 s_sc; /* SC[0..4] for next packet */
211 u8 r_adefered; /* number of acks defered */
212 struct iowait s_iowait;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800213 struct rvt_qp *owner;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400214};
215
216/*
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500217 * This structure is used to hold commonly lookedup and computed values during
218 * the send engine progress.
219 */
220struct hfi1_pkt_state {
221 struct hfi1_ibdev *dev;
222 struct hfi1_ibport *ibp;
223 struct hfi1_pportdata *ppd;
224};
225
Mike Marciniszyn77241052015-07-30 15:17:43 -0400226#define HFI1_PSN_CREDIT 16
227
Mike Marciniszyn77241052015-07-30 15:17:43 -0400228struct hfi1_opcode_stats {
229 u64 n_packets; /* number of packets */
230 u64 n_bytes; /* total number of bytes */
231};
232
233struct hfi1_opcode_stats_perctx {
234 struct hfi1_opcode_stats stats[256];
235};
236
237static inline void inc_opstats(
238 u32 tlen,
239 struct hfi1_opcode_stats *stats)
240{
241#ifdef CONFIG_DEBUG_FS
242 stats->n_bytes += tlen;
243 stats->n_packets++;
244#endif
245}
246
247struct hfi1_ibport {
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800248 struct rvt_qp __rcu *qp[2];
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800249 struct rvt_ibport rvp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400250
Mike Marciniszyn77241052015-07-30 15:17:43 -0400251 __be64 guids[HFI1_GUIDS_PER_PORT - 1]; /* writable GUIDs */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400252
Mike Marciniszyn77241052015-07-30 15:17:43 -0400253 /* the first 16 entries are sl_to_vl for !OPA */
254 u8 sl_to_sc[32];
255 u8 sc_to_sl[32];
256};
257
Mike Marciniszyn77241052015-07-30 15:17:43 -0400258struct hfi1_ibdev {
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -0800259 struct rvt_dev_info rdi; /* Must be first */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400260
Mike Marciniszyn77241052015-07-30 15:17:43 -0400261 /* QP numbers are shared by all IB ports */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400262 /* protect wait lists */
263 seqlock_t iowait_lock;
264 struct list_head txwait; /* list for wait verbs_txreq */
265 struct list_head memwait; /* list for wait kernel memory */
266 struct list_head txreq_free;
267 struct kmem_cache *verbs_txreq_cache;
268 struct timer_list mem_timer;
269
Mike Marciniszyn77241052015-07-30 15:17:43 -0400270 u64 n_piowait;
271 u64 n_txwait;
272 u64 n_kmem_wait;
Dean Luickb4219222015-10-26 10:28:35 -0400273 u64 n_send_schedule;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400274
Mike Marciniszyn77241052015-07-30 15:17:43 -0400275#ifdef CONFIG_DEBUG_FS
276 /* per HFI debugfs */
277 struct dentry *hfi1_ibdev_dbg;
278 /* per HFI symlinks to above */
279 struct dentry *hfi1_ibdev_link;
280#endif
281};
282
283struct hfi1_verbs_counters {
284 u64 symbol_error_counter;
285 u64 link_error_recovery_counter;
286 u64 link_downed_counter;
287 u64 port_rcv_errors;
288 u64 port_rcv_remphys_errors;
289 u64 port_xmit_discards;
290 u64 port_xmit_data;
291 u64 port_rcv_data;
292 u64 port_xmit_packets;
293 u64 port_rcv_packets;
294 u32 local_link_integrity_errors;
295 u32 excessive_buffer_overrun_errors;
296 u32 vl15_dropped;
297};
298
Mike Marciniszyn77241052015-07-30 15:17:43 -0400299static inline struct hfi1_ibdev *to_idev(struct ib_device *ibdev)
300{
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -0800301 struct rvt_dev_info *rdi;
302
303 rdi = container_of(ibdev, struct rvt_dev_info, ibdev);
304 return container_of(rdi, struct hfi1_ibdev, rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400305}
306
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800307static inline struct rvt_qp *iowait_to_qp(struct iowait *s_iowait)
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800308{
309 struct hfi1_qp_priv *priv;
310
311 priv = container_of(s_iowait, struct hfi1_qp_priv, s_iowait);
312 return priv->owner;
313}
314
Mike Marciniszyn77241052015-07-30 15:17:43 -0400315/*
316 * Send if not busy or waiting for I/O and either
317 * a RC response is pending or we can process send work requests.
318 */
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800319static inline int hfi1_send_ok(struct rvt_qp *qp)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400320{
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800321 return !(qp->s_flags & (RVT_S_BUSY | RVT_S_ANY_WAIT_IO)) &&
322 (qp->s_hdrwords || (qp->s_flags & RVT_S_RESP_PENDING) ||
323 !(qp->s_flags & RVT_S_ANY_WAIT_SEND));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400324}
325
326/*
327 * This must be called with s_lock held.
328 */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400329void hfi1_bad_pqkey(struct hfi1_ibport *ibp, __be16 trap_num, u32 key, u32 sl,
Erik E. Kahn5cd24112015-12-10 09:59:40 -0500330 u32 qp1, u32 qp2, u16 lid1, u16 lid2);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400331void hfi1_cap_mask_chg(struct hfi1_ibport *ibp);
332void hfi1_sys_guid_chg(struct hfi1_ibport *ibp);
333void hfi1_node_desc_chg(struct hfi1_ibport *ibp);
334int hfi1_process_mad(struct ib_device *ibdev, int mad_flags, u8 port,
335 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
336 const struct ib_mad_hdr *in_mad, size_t in_mad_size,
337 struct ib_mad_hdr *out_mad, size_t *out_mad_size,
338 u16 *out_mad_pkey_index);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400339
340/*
341 * The PSN_MASK and PSN_SHIFT allow for
342 * 1) comparing two PSNs
343 * 2) returning the PSN with any upper bits masked
344 * 3) returning the difference between to PSNs
345 *
346 * The number of significant bits in the PSN must
347 * necessarily be at least one bit less than
348 * the container holding the PSN.
349 */
350#ifndef CONFIG_HFI1_VERBS_31BIT_PSN
351#define PSN_MASK 0xFFFFFF
352#define PSN_SHIFT 8
353#else
354#define PSN_MASK 0x7FFFFFFF
355#define PSN_SHIFT 1
356#endif
357#define PSN_MODIFY_MASK 0xFFFFFF
358
359/* Number of bits to pay attention to in the opcode for checking qp type */
360#define OPCODE_QP_MASK 0xE0
361
362/*
363 * Compare the lower 24 bits of the msn values.
364 * Returns an integer <, ==, or > than zero.
365 */
366static inline int cmp_msn(u32 a, u32 b)
367{
368 return (((int) a) - ((int) b)) << 8;
369}
370
371/*
372 * Compare two PSNs
373 * Returns an integer <, ==, or > than zero.
374 */
375static inline int cmp_psn(u32 a, u32 b)
376{
377 return (((int) a) - ((int) b)) << PSN_SHIFT;
378}
379
380/*
381 * Return masked PSN
382 */
383static inline u32 mask_psn(u32 a)
384{
385 return a & PSN_MASK;
386}
387
388/*
389 * Return delta between two PSNs
390 */
391static inline u32 delta_psn(u32 a, u32 b)
392{
393 return (((int)a - (int)b) << PSN_SHIFT) >> PSN_SHIFT;
394}
395
Mike Marciniszyn77241052015-07-30 15:17:43 -0400396struct verbs_txreq;
397void hfi1_put_txreq(struct verbs_txreq *tx);
398
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800399int hfi1_verbs_send(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400400
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800401void hfi1_copy_sge(struct rvt_sge_state *ss, void *data, u32 length,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400402 int release);
403
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800404void hfi1_skip_sge(struct rvt_sge_state *ss, u32 length, int release);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400405
406void hfi1_cnp_rcv(struct hfi1_packet *packet);
407
408void hfi1_uc_rcv(struct hfi1_packet *packet);
409
410void hfi1_rc_rcv(struct hfi1_packet *packet);
411
412void hfi1_rc_hdrerr(
413 struct hfi1_ctxtdata *rcd,
414 struct hfi1_ib_header *hdr,
415 u32 rcv_flags,
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800416 struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400417
418u8 ah_to_sc(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
419
Mike Marciniszyn77241052015-07-30 15:17:43 -0400420struct ib_ah *hfi1_create_qp0_ah(struct hfi1_ibport *ibp, u16 dlid);
421
422void hfi1_rc_rnr_retry(unsigned long arg);
423
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800424void hfi1_rc_send_complete(struct rvt_qp *qp, struct hfi1_ib_header *hdr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400425
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800426void hfi1_rc_error(struct rvt_qp *qp, enum ib_wc_status err);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400427
428void hfi1_ud_rcv(struct hfi1_packet *packet);
429
430int hfi1_lookup_pkey_idx(struct hfi1_ibport *ibp, u16 pkey);
431
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800432int hfi1_rvt_get_rwqe(struct rvt_qp *qp, int wr_id_only);
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800433
434void hfi1_migrate_qp(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400435
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800436int hfi1_check_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr,
437 int attr_mask, struct ib_udata *udata);
438
439void hfi1_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr,
440 int attr_mask, struct ib_udata *udata);
441
Mike Marciniszyn77241052015-07-30 15:17:43 -0400442int hfi1_ruc_check_hdr(struct hfi1_ibport *ibp, struct hfi1_ib_header *hdr,
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800443 int has_grh, struct rvt_qp *qp, u32 bth0);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400444
445u32 hfi1_make_grh(struct hfi1_ibport *ibp, struct ib_grh *hdr,
446 struct ib_global_route *grh, u32 hwords, u32 nwords);
447
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800448void hfi1_make_ruc_header(struct rvt_qp *qp, struct hfi1_other_headers *ohdr,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400449 u32 bth0, u32 bth2, int middle);
450
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800451void _hfi1_do_send(struct work_struct *work);
452
453void hfi1_do_send(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400454
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800455void hfi1_send_complete(struct rvt_qp *qp, struct rvt_swqe *wqe,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400456 enum ib_wc_status status);
457
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800458void hfi1_send_rc_ack(struct hfi1_ctxtdata *, struct rvt_qp *qp, int is_fecn);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400459
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800460int hfi1_make_rc_req(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400461
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800462int hfi1_make_uc_req(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400463
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800464int hfi1_make_ud_req(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400465
466int hfi1_register_ib_device(struct hfi1_devdata *);
467
468void hfi1_unregister_ib_device(struct hfi1_devdata *);
469
470void hfi1_ib_rcv(struct hfi1_packet *packet);
471
472unsigned hfi1_get_npkeys(struct hfi1_devdata *);
473
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800474int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500475 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400476
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800477int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500478 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400479
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800480struct send_context *qp_to_send_context(struct rvt_qp *qp, u8 sc5);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400481
482extern const enum ib_wc_opcode ib_hfi1_wc_opcode[];
483
484extern const u8 hdr_len_by_opcode[];
485
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800486extern const int ib_rvt_state_ops[];
Mike Marciniszyn77241052015-07-30 15:17:43 -0400487
488extern __be64 ib_hfi1_sys_image_guid; /* in network order */
489
Mike Marciniszyn77241052015-07-30 15:17:43 -0400490extern unsigned int hfi1_max_cqes;
491
492extern unsigned int hfi1_max_cqs;
493
494extern unsigned int hfi1_max_qp_wrs;
495
496extern unsigned int hfi1_max_qps;
497
498extern unsigned int hfi1_max_sges;
499
500extern unsigned int hfi1_max_mcast_grps;
501
502extern unsigned int hfi1_max_mcast_qp_attached;
503
504extern unsigned int hfi1_max_srqs;
505
506extern unsigned int hfi1_max_srq_sges;
507
508extern unsigned int hfi1_max_srq_wrs;
509
510extern const u32 ib_hfi1_rnr_table[];
511
Mike Marciniszyn77241052015-07-30 15:17:43 -0400512#endif /* HFI1_VERBS_H */