blob: d4164114396e05c15e0631b470108bbd324dda95 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Mitko Haralanova74d5302018-05-02 06:43:24 -07002 * Copyright(c) 2015 - 2018 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48#ifndef HFI1_VERBS_H
49#define HFI1_VERBS_H
50
51#include <linux/types.h>
52#include <linux/seqlock.h>
53#include <linux/kernel.h>
54#include <linux/interrupt.h>
55#include <linux/kref.h>
56#include <linux/workqueue.h>
57#include <linux/kthread.h>
58#include <linux/completion.h>
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -080059#include <linux/slab.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040060#include <rdma/ib_pack.h>
61#include <rdma/ib_user_verbs.h>
62#include <rdma/ib_mad.h>
Mike Marciniszyn261a4352016-09-06 04:35:05 -070063#include <rdma/ib_hdrs.h>
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080064#include <rdma/rdma_vt.h>
Dennis Dalessandro54d10c12016-01-19 14:43:01 -080065#include <rdma/rdmavt_qp.h>
Dennis Dalessandroabd712d2016-01-19 14:43:22 -080066#include <rdma/rdmavt_cq.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040067
68struct hfi1_ctxtdata;
69struct hfi1_pportdata;
70struct hfi1_devdata;
71struct hfi1_packet;
72
73#include "iowait.h"
74
75#define HFI1_MAX_RDMA_ATOMIC 16
Mike Marciniszyn77241052015-07-30 15:17:43 -040076
77/*
78 * Increment this value if any changes that break userspace ABI
79 * compatibility are made.
80 */
81#define HFI1_UVERBS_ABI_VERSION 2
82
Mike Marciniszyn77241052015-07-30 15:17:43 -040083/* IB Performance Manager status values */
84#define IB_PMA_SAMPLE_STATUS_DONE 0x00
85#define IB_PMA_SAMPLE_STATUS_STARTED 0x01
86#define IB_PMA_SAMPLE_STATUS_RUNNING 0x02
87
88/* Mandatory IB performance counter select values. */
89#define IB_PMA_PORT_XMIT_DATA cpu_to_be16(0x0001)
90#define IB_PMA_PORT_RCV_DATA cpu_to_be16(0x0002)
91#define IB_PMA_PORT_XMIT_PKTS cpu_to_be16(0x0003)
92#define IB_PMA_PORT_RCV_PKTS cpu_to_be16(0x0004)
93#define IB_PMA_PORT_XMIT_WAIT cpu_to_be16(0x0005)
94
95#define HFI1_VENDOR_IPG cpu_to_be16(0xFFA0)
96
Mike Marciniszyn77241052015-07-30 15:17:43 -040097#define IB_DEFAULT_GID_PREFIX cpu_to_be64(0xfe80000000000000ULL)
Don Hiatt5786adf32017-08-04 13:54:10 -070098#define OPA_BTH_MIG_REQ BIT(31)
Mike Marciniszyn77241052015-07-30 15:17:43 -040099
Mike Marciniszynb374e062016-09-25 07:40:58 -0700100#define RC_OP(x) IB_OPCODE_RC_##x
101#define UC_OP(x) IB_OPCODE_UC_##x
102
Mike Marciniszyn77241052015-07-30 15:17:43 -0400103/* flags passed by hfi1_ib_rcv() */
104enum {
105 HFI1_HAS_GRH = (1 << 0),
106};
107
Mike Marciniszyn78d36332018-02-01 10:52:35 -0800108#define LRH_16B_BYTES (FIELD_SIZEOF(struct hfi1_16b_header, lrh))
109#define LRH_16B_DWORDS (LRH_16B_BYTES / sizeof(u32))
110#define LRH_9B_BYTES (FIELD_SIZEOF(struct ib_header, lrh))
111#define LRH_9B_DWORDS (LRH_9B_BYTES / sizeof(u32))
112
Don Hiatt4171a692018-05-15 18:28:07 -0700113/* 24Bits for qpn, upper 8Bits reserved */
114struct opa_16b_mgmt {
115 __be32 dest_qpn;
116 __be32 src_qpn;
117};
118
Don Hiatt72c07e22017-08-04 13:53:58 -0700119struct hfi1_16b_header {
120 u32 lrh[4];
121 union {
122 struct {
123 struct ib_grh grh;
124 struct ib_other_headers oth;
125 } l;
126 struct ib_other_headers oth;
Don Hiatt4171a692018-05-15 18:28:07 -0700127 struct opa_16b_mgmt mgmt;
Don Hiatt72c07e22017-08-04 13:53:58 -0700128 } u;
129} __packed;
130
Don Hiatt30e07412017-08-04 13:54:04 -0700131struct hfi1_opa_header {
132 union {
133 struct ib_header ibh; /* 9B header */
134 struct hfi1_16b_header opah; /* 16B header */
135 };
136 u8 hdr_type; /* 9B or 16B */
137} __packed;
138
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700139struct hfi1_ahg_info {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400140 u32 ahgdesc[2];
141 u16 tx_flags;
142 u8 ahgcount;
143 u8 ahgidx;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400144};
145
Don Hiattd4d602e2016-07-25 13:40:22 -0700146struct hfi1_sdma_header {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400147 __le64 pbc;
Don Hiatt30e07412017-08-04 13:54:04 -0700148 struct hfi1_opa_header hdr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400149} __packed;
150
151/*
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800152 * hfi1 specific data structures that will be hidden from rvt after the queue
153 * pair is made common
154 */
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800155struct hfi1_qp_priv {
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700156 struct hfi1_ahg_info *s_ahg; /* ahg info for next header */
Jubin John721d0422016-02-14 12:45:00 -0800157 struct sdma_engine *s_sde; /* current sde */
158 struct send_context *s_sendcontext; /* current sendcontext */
159 u8 s_sc; /* SC[0..4] for next packet */
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800160 struct iowait s_iowait;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800161 struct rvt_qp *owner;
Don Hiattd98bb7f2017-08-04 13:54:16 -0700162 u8 hdr_type; /* 9B or 16B */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400163};
164
165/*
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500166 * This structure is used to hold commonly lookedup and computed values during
167 * the send engine progress.
168 */
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700169struct iowait_work;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500170struct hfi1_pkt_state {
171 struct hfi1_ibdev *dev;
172 struct hfi1_ibport *ibp;
173 struct hfi1_pportdata *ppd;
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800174 struct verbs_txreq *s_txreq;
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700175 struct iowait_work *wait;
Mike Marciniszyn747f4d72016-04-12 10:46:10 -0700176 unsigned long flags;
Mike Marciniszyndd1ed102017-05-04 05:14:10 -0700177 unsigned long timeout;
178 unsigned long timeout_int;
179 int cpu;
Don Hiatt566d53a2017-08-04 13:54:47 -0700180 u8 opcode;
Mike Marciniszyndd1ed102017-05-04 05:14:10 -0700181 bool in_thread;
Kaike Wanbcad2912017-07-24 07:45:37 -0700182 bool pkts_sent;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500183};
184
Mike Marciniszyn77241052015-07-30 15:17:43 -0400185#define HFI1_PSN_CREDIT 16
186
Mike Marciniszyn77241052015-07-30 15:17:43 -0400187struct hfi1_opcode_stats {
188 u64 n_packets; /* number of packets */
189 u64 n_bytes; /* total number of bytes */
190};
191
192struct hfi1_opcode_stats_perctx {
193 struct hfi1_opcode_stats stats[256];
194};
195
196static inline void inc_opstats(
197 u32 tlen,
198 struct hfi1_opcode_stats *stats)
199{
200#ifdef CONFIG_DEBUG_FS
201 stats->n_bytes += tlen;
202 stats->n_packets++;
203#endif
204}
205
206struct hfi1_ibport {
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800207 struct rvt_qp __rcu *qp[2];
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800208 struct rvt_ibport rvp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400209
Mike Marciniszyn77241052015-07-30 15:17:43 -0400210 /* the first 16 entries are sl_to_vl for !OPA */
211 u8 sl_to_sc[32];
212 u8 sc_to_sl[32];
213};
214
Mike Marciniszyn77241052015-07-30 15:17:43 -0400215struct hfi1_ibdev {
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -0800216 struct rvt_dev_info rdi; /* Must be first */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400217
Mike Marciniszyn77241052015-07-30 15:17:43 -0400218 /* QP numbers are shared by all IB ports */
Mike Marciniszyn4e045572016-10-10 06:14:28 -0700219 /* protect txwait list */
220 seqlock_t txwait_lock ____cacheline_aligned_in_smp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400221 struct list_head txwait; /* list for wait verbs_txreq */
222 struct list_head memwait; /* list for wait kernel memory */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400223 struct kmem_cache *verbs_txreq_cache;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400224 u64 n_txwait;
225 u64 n_kmem_wait;
226
Mike Marciniszyn4e045572016-10-10 06:14:28 -0700227 /* protect iowait lists */
228 seqlock_t iowait_lock ____cacheline_aligned_in_smp;
229 u64 n_piowait;
230 u64 n_piodrain;
231 struct timer_list mem_timer;
232
Mike Marciniszyn77241052015-07-30 15:17:43 -0400233#ifdef CONFIG_DEBUG_FS
234 /* per HFI debugfs */
235 struct dentry *hfi1_ibdev_dbg;
236 /* per HFI symlinks to above */
237 struct dentry *hfi1_ibdev_link;
Don Hiatt0181ce32017-03-20 17:26:14 -0700238#ifdef CONFIG_FAULT_INJECTION
Mitko Haralanova74d5302018-05-02 06:43:24 -0700239 struct fault *fault;
Don Hiatt0181ce32017-03-20 17:26:14 -0700240#endif
Mike Marciniszyn77241052015-07-30 15:17:43 -0400241#endif
242};
243
Mike Marciniszyn77241052015-07-30 15:17:43 -0400244static inline struct hfi1_ibdev *to_idev(struct ib_device *ibdev)
245{
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -0800246 struct rvt_dev_info *rdi;
247
248 rdi = container_of(ibdev, struct rvt_dev_info, ibdev);
249 return container_of(rdi, struct hfi1_ibdev, rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400250}
251
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700252static inline struct rvt_qp *iowait_to_qp(struct iowait *s_iowait)
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800253{
254 struct hfi1_qp_priv *priv;
255
256 priv = container_of(s_iowait, struct hfi1_qp_priv, s_iowait);
257 return priv->owner;
258}
259
Mike Marciniszyn77241052015-07-30 15:17:43 -0400260/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400261 * This must be called with s_lock held.
262 */
Dennis Dalessandro13d84912017-05-29 17:22:01 -0700263void hfi1_bad_pkey(struct hfi1_ibport *ibp, u32 key, u32 sl,
Don Hiatt88733e32017-08-04 13:54:23 -0700264 u32 qp1, u32 qp2, u32 lid1, u32 lid2);
Harish Chegondi45b59ee2016-02-03 14:36:49 -0800265void hfi1_cap_mask_chg(struct rvt_dev_info *rdi, u8 port_num);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400266void hfi1_sys_guid_chg(struct hfi1_ibport *ibp);
267void hfi1_node_desc_chg(struct hfi1_ibport *ibp);
268int hfi1_process_mad(struct ib_device *ibdev, int mad_flags, u8 port,
269 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
270 const struct ib_mad_hdr *in_mad, size_t in_mad_size,
271 struct ib_mad_hdr *out_mad, size_t *out_mad_size,
272 u16 *out_mad_pkey_index);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400273
274/*
275 * The PSN_MASK and PSN_SHIFT allow for
276 * 1) comparing two PSNs
277 * 2) returning the PSN with any upper bits masked
278 * 3) returning the difference between to PSNs
279 *
280 * The number of significant bits in the PSN must
281 * necessarily be at least one bit less than
282 * the container holding the PSN.
283 */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400284#define PSN_MASK 0x7FFFFFFF
285#define PSN_SHIFT 1
Mike Marciniszyn77241052015-07-30 15:17:43 -0400286#define PSN_MODIFY_MASK 0xFFFFFF
287
Mike Marciniszyn77241052015-07-30 15:17:43 -0400288/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400289 * Compare two PSNs
290 * Returns an integer <, ==, or > than zero.
291 */
292static inline int cmp_psn(u32 a, u32 b)
293{
Jubin John50e5dcb2016-02-14 20:19:41 -0800294 return (((int)a) - ((int)b)) << PSN_SHIFT;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400295}
296
297/*
298 * Return masked PSN
299 */
300static inline u32 mask_psn(u32 a)
301{
302 return a & PSN_MASK;
303}
304
305/*
306 * Return delta between two PSNs
307 */
308static inline u32 delta_psn(u32 a, u32 b)
309{
310 return (((int)a - (int)b) << PSN_SHIFT) >> PSN_SHIFT;
311}
312
Mike Marciniszyn77241052015-07-30 15:17:43 -0400313struct verbs_txreq;
314void hfi1_put_txreq(struct verbs_txreq *tx);
315
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800316int hfi1_verbs_send(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400317
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800318void hfi1_copy_sge(struct rvt_sge_state *ss, void *data, u32 length,
Brian Welty0128fce2017-02-08 05:27:31 -0800319 bool release, bool copy_last);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400320
Mike Marciniszyn77241052015-07-30 15:17:43 -0400321void hfi1_cnp_rcv(struct hfi1_packet *packet);
322
323void hfi1_uc_rcv(struct hfi1_packet *packet);
324
325void hfi1_rc_rcv(struct hfi1_packet *packet);
326
327void hfi1_rc_hdrerr(
328 struct hfi1_ctxtdata *rcd,
Don Hiatt90397462017-05-12 09:20:20 -0700329 struct hfi1_packet *packet,
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800330 struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400331
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -0400332u8 ah_to_sc(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400333
Don Hiatt30e07412017-08-04 13:54:04 -0700334void hfi1_rc_send_complete(struct rvt_qp *qp, struct hfi1_opa_header *opah);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400335
Mike Marciniszyn77241052015-07-30 15:17:43 -0400336void hfi1_ud_rcv(struct hfi1_packet *packet);
337
338int hfi1_lookup_pkey_idx(struct hfi1_ibport *ibp, u16 pkey);
339
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800340void hfi1_migrate_qp(struct rvt_qp *qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400341
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800342int hfi1_check_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr,
343 int attr_mask, struct ib_udata *udata);
344
345void hfi1_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr,
346 int attr_mask, struct ib_udata *udata);
Venkata Sandeep Dhanalakota56acbbf2017-02-08 05:27:19 -0800347void hfi1_restart_rc(struct rvt_qp *qp, u32 psn, int wait);
Kaike Wand205a06a2018-09-26 10:26:44 -0700348int hfi1_setup_wqe(struct rvt_qp *qp, struct rvt_swqe *wqe,
349 bool *call_send);
Ira Weiny31e7af12016-02-03 14:33:14 -0800350
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800351extern const u32 rc_only_opcode;
352extern const u32 uc_only_opcode;
353
Don Hiatt90397462017-05-12 09:20:20 -0700354int hfi1_ruc_check_hdr(struct hfi1_ibport *ibp, struct hfi1_packet *packet);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400355
356u32 hfi1_make_grh(struct hfi1_ibport *ibp, struct ib_grh *hdr,
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -0400357 const struct ib_global_route *grh, u32 hwords, u32 nwords);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400358
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700359void hfi1_make_ruc_header(struct rvt_qp *qp, struct ib_other_headers *ohdr,
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800360 u32 bth0, u32 bth2, int middle,
361 struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400362
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800363void _hfi1_do_send(struct work_struct *work);
364
Mike Marciniszynb6eac932017-04-09 10:16:35 -0700365void hfi1_do_send_from_rvt(struct rvt_qp *qp);
366
367void hfi1_do_send(struct rvt_qp *qp, bool in_thread);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400368
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800369void hfi1_send_complete(struct rvt_qp *qp, struct rvt_swqe *wqe,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400370 enum ib_wc_status status);
371
Sebastian Sanchezbdaf96f2018-02-01 10:46:31 -0800372void hfi1_send_rc_ack(struct hfi1_packet *packet, bool is_fecn);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400373
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800374int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400375
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800376int hfi1_make_uc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400377
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800378int hfi1_make_ud_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400379
380int hfi1_register_ib_device(struct hfi1_devdata *);
381
382void hfi1_unregister_ib_device(struct hfi1_devdata *);
383
384void hfi1_ib_rcv(struct hfi1_packet *packet);
385
Don Hiatt72c07e22017-08-04 13:53:58 -0700386void hfi1_16B_rcv(struct hfi1_packet *packet);
387
Mike Marciniszyn77241052015-07-30 15:17:43 -0400388unsigned hfi1_get_npkeys(struct hfi1_devdata *);
389
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800390int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500391 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400392
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800393int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500394 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400395
Dean Luick528ee9f2016-03-05 08:50:43 -0800396int hfi1_wss_init(void);
397void hfi1_wss_exit(void);
398
399/* platform specific: return the lowest level cache (llc) size, in KiB */
400static inline int wss_llc_size(void)
401{
402 /* assume that the boot CPU value is universal for all CPUs */
403 return boot_cpu_data.x86_cache_size;
404}
405
406/* platform specific: cacheless copy */
407static inline void cacheless_memcpy(void *dst, void *src, size_t n)
408{
409 /*
410 * Use the only available X64 cacheless copy. Add a __user cast
411 * to quiet sparse. The src agument is already in the kernel so
412 * there are no security issues. The extra fault recovery machinery
413 * is not invoked.
414 */
415 __copy_user_nocache(dst, (void __user *)src, n, 0);
416}
417
Sebastian Sanchez6d6b8842018-02-01 10:46:23 -0800418static inline bool opa_bth_is_migration(struct ib_other_headers *ohdr)
419{
420 return ohdr->bth[1] & cpu_to_be32(OPA_BTH_MIG_REQ);
421}
422
Mike Marciniszyn77241052015-07-30 15:17:43 -0400423extern const enum ib_wc_opcode ib_hfi1_wc_opcode[];
424
425extern const u8 hdr_len_by_opcode[];
426
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800427extern const int ib_rvt_state_ops[];
Mike Marciniszyn77241052015-07-30 15:17:43 -0400428
429extern __be64 ib_hfi1_sys_image_guid; /* in network order */
430
Mike Marciniszyn77241052015-07-30 15:17:43 -0400431extern unsigned int hfi1_max_cqes;
432
433extern unsigned int hfi1_max_cqs;
434
435extern unsigned int hfi1_max_qp_wrs;
436
437extern unsigned int hfi1_max_qps;
438
439extern unsigned int hfi1_max_sges;
440
441extern unsigned int hfi1_max_mcast_grps;
442
443extern unsigned int hfi1_max_mcast_qp_attached;
444
445extern unsigned int hfi1_max_srqs;
446
447extern unsigned int hfi1_max_srq_sges;
448
449extern unsigned int hfi1_max_srq_wrs;
450
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800451extern unsigned short piothreshold;
452
Mike Marciniszyn77241052015-07-30 15:17:43 -0400453extern const u32 ib_hfi1_rnr_table[];
454
Mike Marciniszyn77241052015-07-30 15:17:43 -0400455#endif /* HFI1_VERBS_H */