blob: 7b87b77582bd52cc381901d90f63e9793935349f [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#include <rdma/ib_mad.h>
49#include <rdma/ib_user_verbs.h>
50#include <linux/io.h>
51#include <linux/module.h>
52#include <linux/utsname.h>
53#include <linux/rculist.h>
54#include <linux/mm.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040055#include <linux/vmalloc.h>
Don Hiatt13c19222017-08-04 13:53:51 -070056#include <rdma/opa_addr.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040057
58#include "hfi.h"
59#include "common.h"
60#include "device.h"
61#include "trace.h"
62#include "qp.h"
Mike Marciniszyn45842ab2016-02-14 12:44:34 -080063#include "verbs_txreq.h"
Don Hiatt0181ce32017-03-20 17:26:14 -070064#include "debugfs.h"
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070065#include "vnic.h"
Mitko Haralanova74d5302018-05-02 06:43:24 -070066#include "fault.h"
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -070067#include "affinity.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040068
Dennis Dalessandro895420d2016-01-19 14:42:28 -080069static unsigned int hfi1_lkey_table_size = 16;
Mike Marciniszyn77241052015-07-30 15:17:43 -040070module_param_named(lkey_table_size, hfi1_lkey_table_size, uint,
71 S_IRUGO);
72MODULE_PARM_DESC(lkey_table_size,
73 "LKEY table size in bits (2^n, 1 <= n <= 23)");
74
75static unsigned int hfi1_max_pds = 0xFFFF;
76module_param_named(max_pds, hfi1_max_pds, uint, S_IRUGO);
77MODULE_PARM_DESC(max_pds,
78 "Maximum number of protection domains to support");
79
80static unsigned int hfi1_max_ahs = 0xFFFF;
81module_param_named(max_ahs, hfi1_max_ahs, uint, S_IRUGO);
82MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
83
Jianxin Xiongf6aa78352016-09-25 07:41:18 -070084unsigned int hfi1_max_cqes = 0x2FFFFF;
Mike Marciniszyn77241052015-07-30 15:17:43 -040085module_param_named(max_cqes, hfi1_max_cqes, uint, S_IRUGO);
86MODULE_PARM_DESC(max_cqes,
87 "Maximum number of completion queue entries to support");
88
89unsigned int hfi1_max_cqs = 0x1FFFF;
90module_param_named(max_cqs, hfi1_max_cqs, uint, S_IRUGO);
91MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
92
93unsigned int hfi1_max_qp_wrs = 0x3FFF;
94module_param_named(max_qp_wrs, hfi1_max_qp_wrs, uint, S_IRUGO);
95MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
96
Jianxin Xiongf6aa78352016-09-25 07:41:18 -070097unsigned int hfi1_max_qps = 32768;
Mike Marciniszyn77241052015-07-30 15:17:43 -040098module_param_named(max_qps, hfi1_max_qps, uint, S_IRUGO);
99MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
100
101unsigned int hfi1_max_sges = 0x60;
102module_param_named(max_sges, hfi1_max_sges, uint, S_IRUGO);
103MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
104
105unsigned int hfi1_max_mcast_grps = 16384;
106module_param_named(max_mcast_grps, hfi1_max_mcast_grps, uint, S_IRUGO);
107MODULE_PARM_DESC(max_mcast_grps,
108 "Maximum number of multicast groups to support");
109
110unsigned int hfi1_max_mcast_qp_attached = 16;
111module_param_named(max_mcast_qp_attached, hfi1_max_mcast_qp_attached,
112 uint, S_IRUGO);
113MODULE_PARM_DESC(max_mcast_qp_attached,
114 "Maximum number of attached QPs to support");
115
116unsigned int hfi1_max_srqs = 1024;
117module_param_named(max_srqs, hfi1_max_srqs, uint, S_IRUGO);
118MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
119
120unsigned int hfi1_max_srq_sges = 128;
121module_param_named(max_srq_sges, hfi1_max_srq_sges, uint, S_IRUGO);
122MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
123
124unsigned int hfi1_max_srq_wrs = 0x1FFFF;
125module_param_named(max_srq_wrs, hfi1_max_srq_wrs, uint, S_IRUGO);
126MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
127
Mike Marciniszynd0e859c2016-03-07 11:35:46 -0800128unsigned short piothreshold = 256;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800129module_param(piothreshold, ushort, S_IRUGO);
130MODULE_PARM_DESC(piothreshold, "size used to determine sdma vs. pio");
131
Dean Luick528ee9f2016-03-05 08:50:43 -0800132static unsigned int sge_copy_mode;
133module_param(sge_copy_mode, uint, S_IRUGO);
134MODULE_PARM_DESC(sge_copy_mode,
135 "Verbs copy mode: 0 use memcpy, 1 use cacheless copy, 2 adapt based on WSS");
136
Mike Marciniszyn77241052015-07-30 15:17:43 -0400137static void verbs_sdma_complete(
138 struct sdma_txreq *cookie,
Mike Marciniszyna545f532016-02-14 12:45:53 -0800139 int status);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400140
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800141static int pio_wait(struct rvt_qp *qp,
142 struct send_context *sc,
143 struct hfi1_pkt_state *ps,
144 u32 flag);
145
Jubin John64ffd862015-10-26 10:28:47 -0400146/* Length of buffer to create verbs txreq cache name */
147#define TXREQ_NAME_LEN 24
148
Don Hiattf8195f32017-10-09 12:38:19 -0700149/* 16B trailing buffer */
150static const u8 trail_buf[MAX_16B_PADDING];
151
Brian Welty019f1182018-09-26 10:44:33 -0700152static uint wss_threshold = 80;
Dean Luick528ee9f2016-03-05 08:50:43 -0800153module_param(wss_threshold, uint, S_IRUGO);
154MODULE_PARM_DESC(wss_threshold, "Percentage (1-100) of LLC to use as a threshold for a cacheless copy");
155static uint wss_clean_period = 256;
156module_param(wss_clean_period, uint, S_IRUGO);
157MODULE_PARM_DESC(wss_clean_period, "Count of verbs copies before an entry in the page copy table is cleaned");
158
Mike Marciniszyn77241052015-07-30 15:17:43 -0400159/*
Mike Marciniszyn43a474a2017-03-20 17:25:04 -0700160 * Translate ib_wr_opcode into ib_wc_opcode.
161 */
162const enum ib_wc_opcode ib_hfi1_wc_opcode[] = {
163 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
164 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
165 [IB_WR_SEND] = IB_WC_SEND,
166 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
167 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
Kaike Wan24b11922019-01-23 19:32:09 -0800168 [IB_WR_TID_RDMA_READ] = IB_WC_RDMA_READ,
Mike Marciniszyn43a474a2017-03-20 17:25:04 -0700169 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
170 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD,
171 [IB_WR_SEND_WITH_INV] = IB_WC_SEND,
172 [IB_WR_LOCAL_INV] = IB_WC_LOCAL_INV,
173 [IB_WR_REG_MR] = IB_WC_REG_MR
174};
175
176/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400177 * Length of header by opcode, 0 --> not supported
178 */
179const u8 hdr_len_by_opcode[256] = {
180 /* RC */
181 [IB_OPCODE_RC_SEND_FIRST] = 12 + 8,
182 [IB_OPCODE_RC_SEND_MIDDLE] = 12 + 8,
183 [IB_OPCODE_RC_SEND_LAST] = 12 + 8,
184 [IB_OPCODE_RC_SEND_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
185 [IB_OPCODE_RC_SEND_ONLY] = 12 + 8,
186 [IB_OPCODE_RC_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 4,
187 [IB_OPCODE_RC_RDMA_WRITE_FIRST] = 12 + 8 + 16,
188 [IB_OPCODE_RC_RDMA_WRITE_MIDDLE] = 12 + 8,
189 [IB_OPCODE_RC_RDMA_WRITE_LAST] = 12 + 8,
190 [IB_OPCODE_RC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
191 [IB_OPCODE_RC_RDMA_WRITE_ONLY] = 12 + 8 + 16,
192 [IB_OPCODE_RC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = 12 + 8 + 20,
193 [IB_OPCODE_RC_RDMA_READ_REQUEST] = 12 + 8 + 16,
194 [IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST] = 12 + 8 + 4,
195 [IB_OPCODE_RC_RDMA_READ_RESPONSE_MIDDLE] = 12 + 8,
196 [IB_OPCODE_RC_RDMA_READ_RESPONSE_LAST] = 12 + 8 + 4,
197 [IB_OPCODE_RC_RDMA_READ_RESPONSE_ONLY] = 12 + 8 + 4,
198 [IB_OPCODE_RC_ACKNOWLEDGE] = 12 + 8 + 4,
Mike Marciniszyn37aab622016-09-30 20:11:15 -0700199 [IB_OPCODE_RC_ATOMIC_ACKNOWLEDGE] = 12 + 8 + 4 + 8,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400200 [IB_OPCODE_RC_COMPARE_SWAP] = 12 + 8 + 28,
201 [IB_OPCODE_RC_FETCH_ADD] = 12 + 8 + 28,
Jianxin Xiongbdd8a982016-05-24 12:50:17 -0700202 [IB_OPCODE_RC_SEND_LAST_WITH_INVALIDATE] = 12 + 8 + 4,
203 [IB_OPCODE_RC_SEND_ONLY_WITH_INVALIDATE] = 12 + 8 + 4,
Kaike Wan22d136d2019-01-24 06:36:34 -0800204 [IB_OPCODE_TID_RDMA_READ_REQ] = 12 + 8 + 36,
205 [IB_OPCODE_TID_RDMA_READ_RESP] = 12 + 8 + 36,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400206 /* UC */
207 [IB_OPCODE_UC_SEND_FIRST] = 12 + 8,
208 [IB_OPCODE_UC_SEND_MIDDLE] = 12 + 8,
209 [IB_OPCODE_UC_SEND_LAST] = 12 + 8,
210 [IB_OPCODE_UC_SEND_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
211 [IB_OPCODE_UC_SEND_ONLY] = 12 + 8,
212 [IB_OPCODE_UC_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 4,
213 [IB_OPCODE_UC_RDMA_WRITE_FIRST] = 12 + 8 + 16,
214 [IB_OPCODE_UC_RDMA_WRITE_MIDDLE] = 12 + 8,
215 [IB_OPCODE_UC_RDMA_WRITE_LAST] = 12 + 8,
216 [IB_OPCODE_UC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
217 [IB_OPCODE_UC_RDMA_WRITE_ONLY] = 12 + 8 + 16,
218 [IB_OPCODE_UC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = 12 + 8 + 20,
219 /* UD */
220 [IB_OPCODE_UD_SEND_ONLY] = 12 + 8 + 8,
221 [IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 12
222};
223
224static const opcode_handler opcode_handler_tbl[256] = {
225 /* RC */
226 [IB_OPCODE_RC_SEND_FIRST] = &hfi1_rc_rcv,
227 [IB_OPCODE_RC_SEND_MIDDLE] = &hfi1_rc_rcv,
228 [IB_OPCODE_RC_SEND_LAST] = &hfi1_rc_rcv,
229 [IB_OPCODE_RC_SEND_LAST_WITH_IMMEDIATE] = &hfi1_rc_rcv,
230 [IB_OPCODE_RC_SEND_ONLY] = &hfi1_rc_rcv,
231 [IB_OPCODE_RC_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_rc_rcv,
232 [IB_OPCODE_RC_RDMA_WRITE_FIRST] = &hfi1_rc_rcv,
233 [IB_OPCODE_RC_RDMA_WRITE_MIDDLE] = &hfi1_rc_rcv,
234 [IB_OPCODE_RC_RDMA_WRITE_LAST] = &hfi1_rc_rcv,
235 [IB_OPCODE_RC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = &hfi1_rc_rcv,
236 [IB_OPCODE_RC_RDMA_WRITE_ONLY] = &hfi1_rc_rcv,
237 [IB_OPCODE_RC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = &hfi1_rc_rcv,
238 [IB_OPCODE_RC_RDMA_READ_REQUEST] = &hfi1_rc_rcv,
239 [IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST] = &hfi1_rc_rcv,
240 [IB_OPCODE_RC_RDMA_READ_RESPONSE_MIDDLE] = &hfi1_rc_rcv,
241 [IB_OPCODE_RC_RDMA_READ_RESPONSE_LAST] = &hfi1_rc_rcv,
242 [IB_OPCODE_RC_RDMA_READ_RESPONSE_ONLY] = &hfi1_rc_rcv,
243 [IB_OPCODE_RC_ACKNOWLEDGE] = &hfi1_rc_rcv,
244 [IB_OPCODE_RC_ATOMIC_ACKNOWLEDGE] = &hfi1_rc_rcv,
245 [IB_OPCODE_RC_COMPARE_SWAP] = &hfi1_rc_rcv,
246 [IB_OPCODE_RC_FETCH_ADD] = &hfi1_rc_rcv,
Jianxin Xionga2df0c82016-07-25 13:38:31 -0700247 [IB_OPCODE_RC_SEND_LAST_WITH_INVALIDATE] = &hfi1_rc_rcv,
248 [IB_OPCODE_RC_SEND_ONLY_WITH_INVALIDATE] = &hfi1_rc_rcv,
Kaike Wan22d136d2019-01-24 06:36:34 -0800249
250 /* TID RDMA has separate handlers for different opcodes.*/
251 [IB_OPCODE_TID_RDMA_READ_REQ] = &hfi1_rc_rcv_tid_rdma_read_req,
252 [IB_OPCODE_TID_RDMA_READ_RESP] = &hfi1_rc_rcv_tid_rdma_read_resp,
253
Mike Marciniszyn77241052015-07-30 15:17:43 -0400254 /* UC */
255 [IB_OPCODE_UC_SEND_FIRST] = &hfi1_uc_rcv,
256 [IB_OPCODE_UC_SEND_MIDDLE] = &hfi1_uc_rcv,
257 [IB_OPCODE_UC_SEND_LAST] = &hfi1_uc_rcv,
258 [IB_OPCODE_UC_SEND_LAST_WITH_IMMEDIATE] = &hfi1_uc_rcv,
259 [IB_OPCODE_UC_SEND_ONLY] = &hfi1_uc_rcv,
260 [IB_OPCODE_UC_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_uc_rcv,
261 [IB_OPCODE_UC_RDMA_WRITE_FIRST] = &hfi1_uc_rcv,
262 [IB_OPCODE_UC_RDMA_WRITE_MIDDLE] = &hfi1_uc_rcv,
263 [IB_OPCODE_UC_RDMA_WRITE_LAST] = &hfi1_uc_rcv,
264 [IB_OPCODE_UC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = &hfi1_uc_rcv,
265 [IB_OPCODE_UC_RDMA_WRITE_ONLY] = &hfi1_uc_rcv,
266 [IB_OPCODE_UC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = &hfi1_uc_rcv,
267 /* UD */
268 [IB_OPCODE_UD_SEND_ONLY] = &hfi1_ud_rcv,
269 [IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_ud_rcv,
270 /* CNP */
271 [IB_OPCODE_CNP] = &hfi1_cnp_rcv
272};
273
Mike Marciniszynb374e062016-09-25 07:40:58 -0700274#define OPMASK 0x1f
275
276static const u32 pio_opmask[BIT(3)] = {
277 /* RC */
278 [IB_OPCODE_RC >> 5] =
279 BIT(RC_OP(SEND_ONLY) & OPMASK) |
280 BIT(RC_OP(SEND_ONLY_WITH_IMMEDIATE) & OPMASK) |
281 BIT(RC_OP(RDMA_WRITE_ONLY) & OPMASK) |
282 BIT(RC_OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE) & OPMASK) |
283 BIT(RC_OP(RDMA_READ_REQUEST) & OPMASK) |
284 BIT(RC_OP(ACKNOWLEDGE) & OPMASK) |
285 BIT(RC_OP(ATOMIC_ACKNOWLEDGE) & OPMASK) |
286 BIT(RC_OP(COMPARE_SWAP) & OPMASK) |
287 BIT(RC_OP(FETCH_ADD) & OPMASK),
288 /* UC */
289 [IB_OPCODE_UC >> 5] =
290 BIT(UC_OP(SEND_ONLY) & OPMASK) |
291 BIT(UC_OP(SEND_ONLY_WITH_IMMEDIATE) & OPMASK) |
292 BIT(UC_OP(RDMA_WRITE_ONLY) & OPMASK) |
293 BIT(UC_OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE) & OPMASK),
294};
295
Mike Marciniszyn77241052015-07-30 15:17:43 -0400296/*
297 * System image GUID.
298 */
299__be64 ib_hfi1_sys_image_guid;
300
Mike Marciniszyn77241052015-07-30 15:17:43 -0400301/*
302 * Make sure the QP is ready and able to accept the given opcode.
303 */
Don Hiatt90397462017-05-12 09:20:20 -0700304static inline opcode_handler qp_ok(struct hfi1_packet *packet)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400305{
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800306 if (!(ib_rvt_state_ops[packet->qp->state] & RVT_PROCESS_RECV_OK))
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700307 return NULL;
Don Hiatt90397462017-05-12 09:20:20 -0700308 if (((packet->opcode & RVT_OPCODE_QP_MASK) ==
309 packet->qp->allowed_ops) ||
310 (packet->opcode == IB_OPCODE_CNP))
311 return opcode_handler_tbl[packet->opcode];
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700312
313 return NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400314}
315
Don Hiatt243d9f42017-03-20 17:26:20 -0700316static u64 hfi1_fault_tx(struct rvt_qp *qp, u8 opcode, u64 pbc)
317{
318#ifdef CONFIG_FAULT_INJECTION
Kaike Wan6b6cf932019-01-23 19:30:51 -0800319 if ((opcode & IB_OPCODE_MSP) == IB_OPCODE_MSP) {
Don Hiatt243d9f42017-03-20 17:26:20 -0700320 /*
321 * In order to drop non-IB traffic we
322 * set PbcInsertHrc to NONE (0x2).
323 * The packet will still be delivered
324 * to the receiving node but a
325 * KHdrHCRCErr (KDETH packet with a bad
326 * HCRC) will be triggered and the
327 * packet will not be delivered to the
328 * correct context.
329 */
Kaike Wan6b6cf932019-01-23 19:30:51 -0800330 pbc &= ~PBC_INSERT_HCRC_SMASK;
Don Hiatt243d9f42017-03-20 17:26:20 -0700331 pbc |= (u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT;
Kaike Wan6b6cf932019-01-23 19:30:51 -0800332 } else {
Don Hiatt243d9f42017-03-20 17:26:20 -0700333 /*
334 * In order to drop regular verbs
335 * traffic we set the PbcTestEbp
336 * flag. The packet will still be
337 * delivered to the receiving node but
338 * a 'late ebp error' will be
339 * triggered and will be dropped.
340 */
341 pbc |= PBC_TEST_EBP;
Kaike Wan6b6cf932019-01-23 19:30:51 -0800342 }
Don Hiatt243d9f42017-03-20 17:26:20 -0700343#endif
344 return pbc;
345}
346
Kaike Wan22d136d2019-01-24 06:36:34 -0800347static opcode_handler tid_qp_ok(int opcode, struct hfi1_packet *packet)
348{
349 if (packet->qp->ibqp.qp_type != IB_QPT_RC ||
350 !(ib_rvt_state_ops[packet->qp->state] & RVT_PROCESS_RECV_OK))
351 return NULL;
352 if ((opcode & RVT_OPCODE_QP_MASK) == IB_OPCODE_TID_RDMA)
353 return opcode_handler_tbl[opcode];
354 return NULL;
355}
356
357void hfi1_kdeth_eager_rcv(struct hfi1_packet *packet)
358{
359 struct hfi1_ctxtdata *rcd = packet->rcd;
360 struct ib_header *hdr = packet->hdr;
361 u32 tlen = packet->tlen;
362 struct hfi1_pportdata *ppd = rcd->ppd;
363 struct hfi1_ibport *ibp = &ppd->ibport_data;
364 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
365 opcode_handler opcode_handler;
366 unsigned long flags;
367 u32 qp_num;
368 int lnh;
369 u8 opcode;
370
371 /* DW == LRH (2) + BTH (3) + KDETH (9) + CRC (1) */
372 if (unlikely(tlen < 15 * sizeof(u32)))
373 goto drop;
374
375 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
376 if (lnh != HFI1_LRH_BTH)
377 goto drop;
378
379 packet->ohdr = &hdr->u.oth;
380 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
381
382 opcode = (be32_to_cpu(packet->ohdr->bth[0]) >> 24);
383 inc_opstats(tlen, &rcd->opstats->stats[opcode]);
384
385 /* verbs_qp can be picked up from any tid_rdma header struct */
386 qp_num = be32_to_cpu(packet->ohdr->u.tid_rdma.r_req.verbs_qp) &
387 RVT_QPN_MASK;
388
389 rcu_read_lock();
390 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
391 if (!packet->qp)
392 goto drop_rcu;
393 spin_lock_irqsave(&packet->qp->r_lock, flags);
394 opcode_handler = tid_qp_ok(opcode, packet);
395 if (likely(opcode_handler))
396 opcode_handler(packet);
397 else
398 goto drop_unlock;
399 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
400 rcu_read_unlock();
401
402 return;
403drop_unlock:
404 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
405drop_rcu:
406 rcu_read_unlock();
407drop:
408 ibp->rvp.n_pkt_drops++;
409}
410
411void hfi1_kdeth_expected_rcv(struct hfi1_packet *packet)
412{
413 struct hfi1_ctxtdata *rcd = packet->rcd;
414 struct ib_header *hdr = packet->hdr;
415 u32 tlen = packet->tlen;
416 struct hfi1_pportdata *ppd = rcd->ppd;
417 struct hfi1_ibport *ibp = &ppd->ibport_data;
418 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
419 opcode_handler opcode_handler;
420 unsigned long flags;
421 u32 qp_num;
422 int lnh;
423 u8 opcode;
424
425 /* DW == LRH (2) + BTH (3) + KDETH (9) + CRC (1) */
426 if (unlikely(tlen < 15 * sizeof(u32)))
427 goto drop;
428
429 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
430 if (lnh != HFI1_LRH_BTH)
431 goto drop;
432
433 packet->ohdr = &hdr->u.oth;
434 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
435
436 opcode = (be32_to_cpu(packet->ohdr->bth[0]) >> 24);
437 inc_opstats(tlen, &rcd->opstats->stats[opcode]);
438
439 /* verbs_qp can be picked up from any tid_rdma header struct */
440 qp_num = be32_to_cpu(packet->ohdr->u.tid_rdma.r_rsp.verbs_qp) &
441 RVT_QPN_MASK;
442
443 rcu_read_lock();
444 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
445 if (!packet->qp)
446 goto drop_rcu;
447 spin_lock_irqsave(&packet->qp->r_lock, flags);
448 opcode_handler = tid_qp_ok(opcode, packet);
449 if (likely(opcode_handler))
450 opcode_handler(packet);
451 else
452 goto drop_unlock;
453 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
454 rcu_read_unlock();
455
456 return;
457drop_unlock:
458 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
459drop_rcu:
460 rcu_read_unlock();
461drop:
462 ibp->rvp.n_pkt_drops++;
463}
464
Don Hiatt5786adf32017-08-04 13:54:10 -0700465static int hfi1_do_pkey_check(struct hfi1_packet *packet)
466{
467 struct hfi1_ctxtdata *rcd = packet->rcd;
468 struct hfi1_pportdata *ppd = rcd->ppd;
469 struct hfi1_16b_header *hdr = packet->hdr;
470 u16 pkey;
471
472 /* Pkey check needed only for bypass packets */
473 if (packet->etype != RHF_RCV_TYPE_BYPASS)
474 return 0;
475
476 /* Perform pkey check */
477 pkey = hfi1_16B_get_pkey(hdr);
478 return ingress_pkey_check(ppd, pkey, packet->sc,
479 packet->qp->s_pkey_index,
480 packet->slid, true);
481}
482
Don Hiatt90397462017-05-12 09:20:20 -0700483static inline void hfi1_handle_packet(struct hfi1_packet *packet,
484 bool is_mcast)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400485{
Don Hiatt90397462017-05-12 09:20:20 -0700486 u32 qp_num;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400487 struct hfi1_ctxtdata *rcd = packet->rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400488 struct hfi1_pportdata *ppd = rcd->ppd;
Sebastian Sanchezf3e862c2017-02-08 05:26:25 -0800489 struct hfi1_ibport *ibp = rcd_to_iport(rcd);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800490 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700491 opcode_handler packet_handler;
Dean Luickb77d7132015-10-26 10:28:43 -0400492 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400493
Don Hiatt90397462017-05-12 09:20:20 -0700494 inc_opstats(packet->tlen, &rcd->opstats->stats[packet->opcode]);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400495
Don Hiatt90397462017-05-12 09:20:20 -0700496 if (unlikely(is_mcast)) {
Dennis Dalessandro0facc5a2016-01-19 14:43:39 -0800497 struct rvt_mcast *mcast;
498 struct rvt_mcast_qp *p;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400499
Don Hiatt90397462017-05-12 09:20:20 -0700500 if (!packet->grh)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400501 goto drop;
Don Hiatt90397462017-05-12 09:20:20 -0700502 mcast = rvt_mcast_find(&ibp->rvp,
503 &packet->grh->dgid,
Don Hiatt72c07e22017-08-04 13:53:58 -0700504 opa_get_lid(packet->dlid, 9B));
Jubin Johnd125a6c2016-02-14 20:19:49 -0800505 if (!mcast)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400506 goto drop;
507 list_for_each_entry_rcu(p, &mcast->qp_list, list) {
508 packet->qp = p->qp;
Don Hiatt5786adf32017-08-04 13:54:10 -0700509 if (hfi1_do_pkey_check(packet))
510 goto drop;
Dean Luickb77d7132015-10-26 10:28:43 -0400511 spin_lock_irqsave(&packet->qp->r_lock, flags);
Don Hiatt90397462017-05-12 09:20:20 -0700512 packet_handler = qp_ok(packet);
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700513 if (likely(packet_handler))
514 packet_handler(packet);
515 else
516 ibp->rvp.n_pkt_drops++;
Dean Luickb77d7132015-10-26 10:28:43 -0400517 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400518 }
519 /*
Dennis Dalessandro0facc5a2016-01-19 14:43:39 -0800520 * Notify rvt_multicast_detach() if it is waiting for us
Mike Marciniszyn77241052015-07-30 15:17:43 -0400521 * to finish.
522 */
523 if (atomic_dec_return(&mcast->refcount) <= 1)
524 wake_up(&mcast->wait);
525 } else {
Don Hiatt90397462017-05-12 09:20:20 -0700526 /* Get the destination QP number. */
Don Hiatt81cd3892018-05-15 18:28:15 -0700527 if (packet->etype == RHF_RCV_TYPE_BYPASS &&
528 hfi1_16B_get_l4(packet->hdr) == OPA_16B_L4_FM)
529 qp_num = hfi1_16B_get_dest_qpn(packet->mgmt);
530 else
531 qp_num = ib_bth_get_qpn(packet->ohdr);
532
Mike Marciniszyn77241052015-07-30 15:17:43 -0400533 rcu_read_lock();
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800534 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
Don Hiatt5786adf32017-08-04 13:54:10 -0700535 if (!packet->qp)
536 goto unlock_drop;
537
538 if (hfi1_do_pkey_check(packet))
539 goto unlock_drop;
540
Dean Luickb77d7132015-10-26 10:28:43 -0400541 spin_lock_irqsave(&packet->qp->r_lock, flags);
Don Hiatt90397462017-05-12 09:20:20 -0700542 packet_handler = qp_ok(packet);
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700543 if (likely(packet_handler))
544 packet_handler(packet);
545 else
546 ibp->rvp.n_pkt_drops++;
Dean Luickb77d7132015-10-26 10:28:43 -0400547 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400548 rcu_read_unlock();
549 }
550 return;
Don Hiatt5786adf32017-08-04 13:54:10 -0700551unlock_drop:
552 rcu_read_unlock();
Mike Marciniszyn77241052015-07-30 15:17:43 -0400553drop:
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800554 ibp->rvp.n_pkt_drops++;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400555}
556
Don Hiatt90397462017-05-12 09:20:20 -0700557/**
558 * hfi1_ib_rcv - process an incoming packet
559 * @packet: data packet information
560 *
561 * This is called to process an incoming packet at interrupt level.
562 */
563void hfi1_ib_rcv(struct hfi1_packet *packet)
564{
565 struct hfi1_ctxtdata *rcd = packet->rcd;
Don Hiatt90397462017-05-12 09:20:20 -0700566
Don Hiatt72c07e22017-08-04 13:53:58 -0700567 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
568 hfi1_handle_packet(packet, hfi1_check_mcast(packet->dlid));
569}
Don Hiatt90397462017-05-12 09:20:20 -0700570
Don Hiatt72c07e22017-08-04 13:53:58 -0700571void hfi1_16B_rcv(struct hfi1_packet *packet)
572{
573 struct hfi1_ctxtdata *rcd = packet->rcd;
574
575 trace_input_ibhdr(rcd->dd, packet, false);
576 hfi1_handle_packet(packet, hfi1_check_mcast(packet->dlid));
Don Hiatt90397462017-05-12 09:20:20 -0700577}
578
Mike Marciniszyn77241052015-07-30 15:17:43 -0400579/*
580 * This is called from a timer to check for QPs
581 * which need kernel memory in order to send a packet.
582 */
Kees Cook80641352017-10-16 15:51:54 -0700583static void mem_timer(struct timer_list *t)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400584{
Kees Cook80641352017-10-16 15:51:54 -0700585 struct hfi1_ibdev *dev = from_timer(dev, t, mem_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400586 struct list_head *list = &dev->memwait;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800587 struct rvt_qp *qp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400588 struct iowait *wait;
589 unsigned long flags;
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800590 struct hfi1_qp_priv *priv;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400591
592 write_seqlock_irqsave(&dev->iowait_lock, flags);
593 if (!list_empty(list)) {
594 wait = list_first_entry(list, struct iowait, list);
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800595 qp = iowait_to_qp(wait);
596 priv = qp->priv;
597 list_del_init(&priv->s_iowait.list);
Mike Marciniszyn4e045572016-10-10 06:14:28 -0700598 priv->s_iowait.lock = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400599 /* refcount held until actual wake up */
600 if (!list_empty(list))
601 mod_timer(&dev->mem_timer, jiffies + 1);
602 }
603 write_sequnlock_irqrestore(&dev->iowait_lock, flags);
604
605 if (qp)
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800606 hfi1_qp_wakeup(qp, RVT_S_WAIT_KMEM);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400607}
608
Mike Marciniszyn77241052015-07-30 15:17:43 -0400609/*
610 * This is called with progress side lock held.
611 */
612/* New API */
613static void verbs_sdma_complete(
614 struct sdma_txreq *cookie,
Mike Marciniszyna545f532016-02-14 12:45:53 -0800615 int status)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400616{
617 struct verbs_txreq *tx =
618 container_of(cookie, struct verbs_txreq, txreq);
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800619 struct rvt_qp *qp = tx->qp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400620
621 spin_lock(&qp->s_lock);
Jubin Johne4909742016-02-14 20:22:00 -0800622 if (tx->wqe) {
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -0700623 rvt_send_complete(qp, tx->wqe, IB_WC_SUCCESS);
Jubin Johne4909742016-02-14 20:22:00 -0800624 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
Don Hiatt30e07412017-08-04 13:54:04 -0700625 struct hfi1_opa_header *hdr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400626
627 hdr = &tx->phdr.hdr;
628 hfi1_rc_send_complete(qp, hdr);
629 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400630 spin_unlock(&qp->s_lock);
631
632 hfi1_put_txreq(tx);
633}
634
Kaike Wan838b6fd2019-01-23 19:30:07 -0800635void hfi1_wait_kmem(struct rvt_qp *qp)
636{
637 struct hfi1_qp_priv *priv = qp->priv;
638 struct ib_qp *ibqp = &qp->ibqp;
639 struct ib_device *ibdev = ibqp->device;
640 struct hfi1_ibdev *dev = to_idev(ibdev);
641
642 if (list_empty(&priv->s_iowait.list)) {
643 if (list_empty(&dev->memwait))
644 mod_timer(&dev->mem_timer, jiffies + 1);
645 qp->s_flags |= RVT_S_WAIT_KMEM;
646 list_add_tail(&priv->s_iowait.list, &dev->memwait);
647 priv->s_iowait.lock = &dev->iowait_lock;
648 trace_hfi1_qpsleep(qp, RVT_S_WAIT_KMEM);
649 rvt_get_qp(qp);
650 }
651}
652
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800653static int wait_kmem(struct hfi1_ibdev *dev,
654 struct rvt_qp *qp,
655 struct hfi1_pkt_state *ps)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400656{
657 unsigned long flags;
658 int ret = 0;
659
660 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800661 if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400662 write_seqlock(&dev->iowait_lock);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800663 list_add_tail(&ps->s_txreq->txreq.list,
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700664 &ps->wait->tx_head);
Kaike Wan838b6fd2019-01-23 19:30:07 -0800665 hfi1_wait_kmem(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400666 write_sequnlock(&dev->iowait_lock);
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700667 hfi1_qp_unbusy(qp, ps->wait);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400668 ret = -EBUSY;
669 }
670 spin_unlock_irqrestore(&qp->s_lock, flags);
671
672 return ret;
673}
674
675/*
676 * This routine calls txadds for each sg entry.
677 *
678 * Add failures will revert the sge cursor
679 */
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800680static noinline int build_verbs_ulp_payload(
Mike Marciniszyn77241052015-07-30 15:17:43 -0400681 struct sdma_engine *sde,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400682 u32 length,
683 struct verbs_txreq *tx)
684{
Mitko Haralanovb777f152016-12-07 19:33:27 -0800685 struct rvt_sge_state *ss = tx->ss;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800686 struct rvt_sge *sg_list = ss->sg_list;
687 struct rvt_sge sge = ss->sge;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400688 u8 num_sge = ss->num_sge;
689 u32 len;
690 int ret = 0;
691
692 while (length) {
Michael J. Ruhl87fc34b2019-01-23 19:08:19 -0800693 len = rvt_get_sge_length(&ss->sge, length);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400694 WARN_ON_ONCE(len == 0);
695 ret = sdma_txadd_kvaddr(
696 sde->dd,
697 &tx->txreq,
698 ss->sge.vaddr,
699 len);
700 if (ret)
701 goto bail_txadd;
Brian Welty1198fce2017-02-08 05:27:37 -0800702 rvt_update_sge(ss, len, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400703 length -= len;
704 }
705 return ret;
706bail_txadd:
707 /* unwind cursor */
708 ss->sge = sge;
709 ss->num_sge = num_sge;
710 ss->sg_list = sg_list;
711 return ret;
712}
713
Mike Marciniszyn1b311f82017-10-23 06:06:08 -0700714/**
715 * update_tx_opstats - record stats by opcode
716 * @qp; the qp
717 * @ps: transmit packet state
718 * @plen: the plen in dwords
719 *
720 * This is a routine to record the tx opstats after a
721 * packet has been presented to the egress mechanism.
722 */
723static void update_tx_opstats(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
724 u32 plen)
725{
726#ifdef CONFIG_DEBUG_FS
727 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
728 struct hfi1_opcode_stats_perctx *s = get_cpu_ptr(dd->tx_opstats);
729
730 inc_opstats(plen * 4, &s->stats[ps->opcode]);
731 put_cpu_ptr(s);
732#endif
733}
734
Mike Marciniszyn77241052015-07-30 15:17:43 -0400735/*
736 * Build the number of DMA descriptors needed to send length bytes of data.
737 *
738 * NOTE: DMA mapping is held in the tx until completed in the ring or
739 * the tx desc is freed without having been submitted to the ring
740 *
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800741 * This routine ensures all the helper routine calls succeed.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400742 */
743/* New API */
744static int build_verbs_tx_desc(
745 struct sdma_engine *sde,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400746 u32 length,
747 struct verbs_txreq *tx,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700748 struct hfi1_ahg_info *ahg_info,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400749 u64 pbc)
750{
751 int ret = 0;
Don Hiattd4d602e2016-07-25 13:40:22 -0700752 struct hfi1_sdma_header *phdr = &tx->phdr;
Mitko Haralanov96362582018-02-01 10:46:07 -0800753 u16 hdrbytes = (tx->hdr_dwords + sizeof(pbc) / 4) << 2;
Don Hiatt566d53a2017-08-04 13:54:47 -0700754 u8 extra_bytes = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400755
Don Hiatt566d53a2017-08-04 13:54:47 -0700756 if (tx->phdr.hdr.hdr_type) {
757 /*
758 * hdrbytes accounts for PBC. Need to subtract 8 bytes
759 * before calculating padding.
760 */
761 extra_bytes = hfi1_get_16b_padding(hdrbytes - 8, length) +
762 (SIZE_OF_CRC << 2) + SIZE_OF_LT;
Don Hiatt566d53a2017-08-04 13:54:47 -0700763 }
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700764 if (!ahg_info->ahgcount) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400765 ret = sdma_txinit_ahg(
766 &tx->txreq,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700767 ahg_info->tx_flags,
Don Hiatt566d53a2017-08-04 13:54:47 -0700768 hdrbytes + length +
769 extra_bytes,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700770 ahg_info->ahgidx,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400771 0,
772 NULL,
773 0,
774 verbs_sdma_complete);
775 if (ret)
776 goto bail_txadd;
777 phdr->pbc = cpu_to_le64(pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400778 ret = sdma_txadd_kvaddr(
779 sde->dd,
780 &tx->txreq,
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800781 phdr,
782 hdrbytes);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400783 if (ret)
784 goto bail_txadd;
785 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400786 ret = sdma_txinit_ahg(
787 &tx->txreq,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700788 ahg_info->tx_flags,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400789 length,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700790 ahg_info->ahgidx,
791 ahg_info->ahgcount,
792 ahg_info->ahgdesc,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400793 hdrbytes,
794 verbs_sdma_complete);
795 if (ret)
796 goto bail_txadd;
797 }
Mitko Haralanovb777f152016-12-07 19:33:27 -0800798 /* add the ulp payload - if any. tx->ss can be NULL for acks */
Don Hiatt566d53a2017-08-04 13:54:47 -0700799 if (tx->ss) {
Mitko Haralanovb777f152016-12-07 19:33:27 -0800800 ret = build_verbs_ulp_payload(sde, length, tx);
Don Hiatt566d53a2017-08-04 13:54:47 -0700801 if (ret)
802 goto bail_txadd;
803 }
804
805 /* add icrc, lt byte, and padding to flit */
Don Hiattf8195f32017-10-09 12:38:19 -0700806 if (extra_bytes)
Don Hiatt566d53a2017-08-04 13:54:47 -0700807 ret = sdma_txadd_kvaddr(sde->dd, &tx->txreq,
Don Hiattf8195f32017-10-09 12:38:19 -0700808 (void *)trail_buf, extra_bytes);
Don Hiatt566d53a2017-08-04 13:54:47 -0700809
Mike Marciniszyn77241052015-07-30 15:17:43 -0400810bail_txadd:
811 return ret;
812}
813
Kaike Wan6b6cf932019-01-23 19:30:51 -0800814static u64 update_hcrc(u8 opcode, u64 pbc)
815{
816 if ((opcode & IB_OPCODE_TID_RDMA) == IB_OPCODE_TID_RDMA) {
817 pbc &= ~PBC_INSERT_HCRC_SMASK;
818 pbc |= (u64)PBC_IHCRC_LKDETH << PBC_INSERT_HCRC_SHIFT;
819 }
820 return pbc;
821}
822
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800823int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500824 u64 pbc)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400825{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800826 struct hfi1_qp_priv *priv = qp->priv;
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700827 struct hfi1_ahg_info *ahg_info = priv->s_ahg;
Mitko Haralanov96362582018-02-01 10:46:07 -0800828 u32 hdrwords = ps->s_txreq->hdr_dwords;
Don Hiatte922ae02016-12-07 19:33:00 -0800829 u32 len = ps->s_txreq->s_cur_size;
Don Hiatt566d53a2017-08-04 13:54:47 -0700830 u32 plen;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500831 struct hfi1_ibdev *dev = ps->dev;
832 struct hfi1_pportdata *ppd = ps->ppd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400833 struct verbs_txreq *tx;
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800834 u8 sc5 = priv->s_sc;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400835 int ret;
Don Hiatt566d53a2017-08-04 13:54:47 -0700836 u32 dwords;
Don Hiatt566d53a2017-08-04 13:54:47 -0700837
838 if (ps->s_txreq->phdr.hdr.hdr_type) {
839 u8 extra_bytes = hfi1_get_16b_padding((hdrwords << 2), len);
840
841 dwords = (len + extra_bytes + (SIZE_OF_CRC << 2) +
842 SIZE_OF_LT) >> 2;
Don Hiatt566d53a2017-08-04 13:54:47 -0700843 } else {
844 dwords = (len + 3) >> 2;
845 }
Mitko Haralanov96362582018-02-01 10:46:07 -0800846 plen = hdrwords + dwords + sizeof(pbc) / 4;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400847
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800848 tx = ps->s_txreq;
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800849 if (!sdma_txreq_built(&tx->txreq)) {
850 if (likely(pbc == 0)) {
851 u32 vl = sc_to_vlt(dd_from_ibdev(qp->ibqp.device), sc5);
Don Hiatt243d9f42017-03-20 17:26:20 -0700852
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800853 /* No vl15 here */
Don Hiatt566d53a2017-08-04 13:54:47 -0700854 /* set PBC_DC_INFO bit (aka SC[4]) in pbc */
855 if (ps->s_txreq->phdr.hdr.hdr_type)
856 pbc |= PBC_PACKET_BYPASS |
857 PBC_INSERT_BYPASS_ICRC;
858 else
859 pbc |= (ib_is_sc5(sc5) << PBC_DC_INFO_SHIFT);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800860
Mitko Haralanova74d5302018-05-02 06:43:24 -0700861 if (unlikely(hfi1_dbg_should_fault_tx(qp, ps->opcode)))
Don Hiatt566d53a2017-08-04 13:54:47 -0700862 pbc = hfi1_fault_tx(qp, ps->opcode, pbc);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800863 pbc = create_pbc(ppd,
Don Hiatt243d9f42017-03-20 17:26:20 -0700864 pbc,
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800865 qp->srate_mbps,
866 vl,
867 plen);
Kaike Wan6b6cf932019-01-23 19:30:51 -0800868
869 /* Update HCRC based on packet opcode */
870 pbc = update_hcrc(ps->opcode, pbc);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800871 }
872 tx->wqe = qp->s_wqe;
Mitko Haralanovb777f152016-12-07 19:33:27 -0800873 ret = build_verbs_tx_desc(tx->sde, len, tx, ahg_info, pbc);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800874 if (unlikely(ret))
875 goto bail_build;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400876 }
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700877 ret = sdma_send_txreq(tx->sde, ps->wait, &tx->txreq, ps->pkts_sent);
Mike Marciniszyn5326dfb2016-03-07 11:35:24 -0800878 if (unlikely(ret < 0)) {
879 if (ret == -ECOMM)
880 goto bail_ecomm;
881 return ret;
882 }
Mike Marciniszyn1b311f82017-10-23 06:06:08 -0700883
884 update_tx_opstats(qp, ps, plen);
Mike Marciniszyn1db78ee2016-03-07 11:35:19 -0800885 trace_sdma_output_ibhdr(dd_from_ibdev(qp->ibqp.device),
Don Hiatt228d2af2017-05-12 09:20:08 -0700886 &ps->s_txreq->phdr.hdr, ib_is_sc5(sc5));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400887 return ret;
888
Mike Marciniszyn77241052015-07-30 15:17:43 -0400889bail_ecomm:
890 /* The current one got "sent" */
891 return 0;
892bail_build:
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800893 ret = wait_kmem(dev, qp, ps);
894 if (!ret) {
895 /* free txreq - bad state */
896 hfi1_put_txreq(ps->s_txreq);
897 ps->s_txreq = NULL;
898 }
899 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400900}
901
902/*
903 * If we are now in the error state, return zero to flush the
904 * send work request.
905 */
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800906static int pio_wait(struct rvt_qp *qp,
907 struct send_context *sc,
908 struct hfi1_pkt_state *ps,
909 u32 flag)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400910{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800911 struct hfi1_qp_priv *priv = qp->priv;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400912 struct hfi1_devdata *dd = sc->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400913 unsigned long flags;
914 int ret = 0;
915
916 /*
917 * Note that as soon as want_buffer() is called and
918 * possibly before it returns, sc_piobufavail()
919 * could be called. Therefore, put QP on the I/O wait list before
920 * enabling the PIO avail interrupt.
921 */
922 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800923 if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800924 write_seqlock(&sc->waitlock);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800925 list_add_tail(&ps->s_txreq->txreq.list,
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700926 &ps->wait->tx_head);
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800927 if (list_empty(&priv->s_iowait.list)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400928 struct hfi1_ibdev *dev = &dd->verbs_dev;
929 int was_empty;
930
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800931 dev->n_piowait += !!(flag & RVT_S_WAIT_PIO);
Mike Marciniszyn2e2ba092018-06-04 11:44:02 -0700932 dev->n_piodrain += !!(flag & HFI1_S_WAIT_PIO_DRAIN);
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800933 qp->s_flags |= flag;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400934 was_empty = list_empty(&sc->piowait);
Kaike Wanbcad2912017-07-24 07:45:37 -0700935 iowait_queue(ps->pkts_sent, &priv->s_iowait,
936 &sc->piowait);
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800937 priv->s_iowait.lock = &sc->waitlock;
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800938 trace_hfi1_qpsleep(qp, RVT_S_WAIT_PIO);
Mike Marciniszyn4d6f85c2016-09-06 04:34:35 -0700939 rvt_get_qp(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400940 /* counting: only call wantpiobuf_intr if first user */
941 if (was_empty)
942 hfi1_sc_wantpiobuf_intr(sc, 1);
943 }
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800944 write_sequnlock(&sc->waitlock);
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700945 hfi1_qp_unbusy(qp, ps->wait);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400946 ret = -EBUSY;
947 }
948 spin_unlock_irqrestore(&qp->s_lock, flags);
949 return ret;
950}
951
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800952static void verbs_pio_complete(void *arg, int code)
953{
954 struct rvt_qp *qp = (struct rvt_qp *)arg;
955 struct hfi1_qp_priv *priv = qp->priv;
956
957 if (iowait_pio_dec(&priv->s_iowait))
958 iowait_drain_wakeup(&priv->s_iowait);
959}
960
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800961int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500962 u64 pbc)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400963{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800964 struct hfi1_qp_priv *priv = qp->priv;
Mitko Haralanov96362582018-02-01 10:46:07 -0800965 u32 hdrwords = ps->s_txreq->hdr_dwords;
Mitko Haralanovb777f152016-12-07 19:33:27 -0800966 struct rvt_sge_state *ss = ps->s_txreq->ss;
Don Hiatte922ae02016-12-07 19:33:00 -0800967 u32 len = ps->s_txreq->s_cur_size;
Don Hiatt566d53a2017-08-04 13:54:47 -0700968 u32 dwords;
969 u32 plen;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500970 struct hfi1_pportdata *ppd = ps->ppd;
Don Hiatt566d53a2017-08-04 13:54:47 -0700971 u32 *hdr;
Mike Marciniszyn4f8cc5c2016-02-14 12:45:27 -0800972 u8 sc5;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400973 unsigned long flags = 0;
974 struct send_context *sc;
975 struct pio_buf *pbuf;
976 int wc_status = IB_WC_SUCCESS;
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800977 int ret = 0;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800978 pio_release_cb cb = NULL;
Don Hiatt566d53a2017-08-04 13:54:47 -0700979 u8 extra_bytes = 0;
980
981 if (ps->s_txreq->phdr.hdr.hdr_type) {
982 u8 pad_size = hfi1_get_16b_padding((hdrwords << 2), len);
983
984 extra_bytes = pad_size + (SIZE_OF_CRC << 2) + SIZE_OF_LT;
985 dwords = (len + extra_bytes) >> 2;
986 hdr = (u32 *)&ps->s_txreq->phdr.hdr.opah;
Don Hiatt566d53a2017-08-04 13:54:47 -0700987 } else {
988 dwords = (len + 3) >> 2;
989 hdr = (u32 *)&ps->s_txreq->phdr.hdr.ibh;
990 }
Mitko Haralanov96362582018-02-01 10:46:07 -0800991 plen = hdrwords + dwords + sizeof(pbc) / 4;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800992
993 /* only RC/UC use complete */
994 switch (qp->ibqp.qp_type) {
995 case IB_QPT_RC:
996 case IB_QPT_UC:
997 cb = verbs_pio_complete;
998 break;
999 default:
1000 break;
1001 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001002
1003 /* vl15 special case taken care of in ud.c */
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -08001004 sc5 = priv->s_sc;
Mike Marciniszyncef504c2016-03-07 11:35:35 -08001005 sc = ps->s_txreq->psc;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001006
Mike Marciniszyn77241052015-07-30 15:17:43 -04001007 if (likely(pbc == 0)) {
Mike Marciniszyn4f8cc5c2016-02-14 12:45:27 -08001008 u8 vl = sc_to_vlt(dd_from_ibdev(qp->ibqp.device), sc5);
Don Hiatt243d9f42017-03-20 17:26:20 -07001009
Don Hiatt566d53a2017-08-04 13:54:47 -07001010 /* set PBC_DC_INFO bit (aka SC[4]) in pbc */
1011 if (ps->s_txreq->phdr.hdr.hdr_type)
1012 pbc |= PBC_PACKET_BYPASS | PBC_INSERT_BYPASS_ICRC;
1013 else
1014 pbc |= (ib_is_sc5(sc5) << PBC_DC_INFO_SHIFT);
Mitko Haralanova74d5302018-05-02 06:43:24 -07001015
1016 if (unlikely(hfi1_dbg_should_fault_tx(qp, ps->opcode)))
Don Hiatt566d53a2017-08-04 13:54:47 -07001017 pbc = hfi1_fault_tx(qp, ps->opcode, pbc);
Don Hiatt243d9f42017-03-20 17:26:20 -07001018 pbc = create_pbc(ppd, pbc, qp->srate_mbps, vl, plen);
Kaike Wan6b6cf932019-01-23 19:30:51 -08001019
1020 /* Update HCRC based on packet opcode */
1021 pbc = update_hcrc(ps->opcode, pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001022 }
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001023 if (cb)
1024 iowait_pio_inc(&priv->s_iowait);
1025 pbuf = sc_buffer_alloc(sc, plen, cb, qp);
Jubin Johnd125a6c2016-02-14 20:19:49 -08001026 if (unlikely(!pbuf)) {
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001027 if (cb)
1028 verbs_pio_complete(qp, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001029 if (ppd->host_link_state != HLS_UP_ACTIVE) {
1030 /*
1031 * If we have filled the PIO buffers to capacity and are
1032 * not in an active state this request is not going to
1033 * go out to so just complete it with an error or else a
1034 * ULP or the core may be stuck waiting.
1035 */
1036 hfi1_cdbg(
1037 PIO,
1038 "alloc failed. state not active, completing");
1039 wc_status = IB_WC_GENERAL_ERR;
1040 goto pio_bail;
1041 } else {
1042 /*
1043 * This is a normal occurrence. The PIO buffs are full
1044 * up but we are still happily sending, well we could be
1045 * so lets continue to queue the request.
1046 */
1047 hfi1_cdbg(PIO, "alloc failed. state active, queuing");
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001048 ret = pio_wait(qp, sc, ps, RVT_S_WAIT_PIO);
Mike Marciniszyn711e1042016-02-14 12:45:18 -08001049 if (!ret)
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001050 /* txreq not queued - free */
Mike Marciniszyn711e1042016-02-14 12:45:18 -08001051 goto bail;
1052 /* tx consumed in wait */
1053 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001054 }
1055 }
1056
Don Hiatt566d53a2017-08-04 13:54:47 -07001057 if (dwords == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001058 pio_copy(ppd->dd, pbuf, pbc, hdr, hdrwords);
1059 } else {
Don Hiatt566d53a2017-08-04 13:54:47 -07001060 seg_pio_copy_start(pbuf, pbc,
1061 hdr, hdrwords * 4);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001062 if (ss) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001063 while (len) {
1064 void *addr = ss->sge.vaddr;
Michael J. Ruhl87fc34b2019-01-23 19:08:19 -08001065 u32 slen = rvt_get_sge_length(&ss->sge, len);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001066
Brian Welty1198fce2017-02-08 05:27:37 -08001067 rvt_update_sge(ss, slen, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001068 seg_pio_copy_mid(pbuf, addr, slen);
1069 len -= slen;
1070 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001071 }
Don Hiattf8195f32017-10-09 12:38:19 -07001072 /* add icrc, lt byte, and padding to flit */
1073 if (extra_bytes)
1074 seg_pio_copy_mid(pbuf, trail_buf, extra_bytes);
Don Hiatt566d53a2017-08-04 13:54:47 -07001075
Don Hiatt566d53a2017-08-04 13:54:47 -07001076 seg_pio_copy_end(pbuf);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001077 }
1078
Mike Marciniszyn1b311f82017-10-23 06:06:08 -07001079 update_tx_opstats(qp, ps, plen);
Mike Marciniszyn1db78ee2016-03-07 11:35:19 -08001080 trace_pio_output_ibhdr(dd_from_ibdev(qp->ibqp.device),
Don Hiatt228d2af2017-05-12 09:20:08 -07001081 &ps->s_txreq->phdr.hdr, ib_is_sc5(sc5));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001082
Mike Marciniszyn77241052015-07-30 15:17:43 -04001083pio_bail:
1084 if (qp->s_wqe) {
1085 spin_lock_irqsave(&qp->s_lock, flags);
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001086 rvt_send_complete(qp, qp->s_wqe, wc_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001087 spin_unlock_irqrestore(&qp->s_lock, flags);
1088 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
1089 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -08001090 hfi1_rc_send_complete(qp, &ps->s_txreq->phdr.hdr);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001091 spin_unlock_irqrestore(&qp->s_lock, flags);
1092 }
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -08001093
1094 ret = 0;
1095
1096bail:
1097 hfi1_put_txreq(ps->s_txreq);
1098 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001099}
Geliang Tangb91cc572015-09-21 23:39:08 +08001100
Mike Marciniszyn77241052015-07-30 15:17:43 -04001101/*
1102 * egress_pkey_matches_entry - return 1 if the pkey matches ent (ent
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001103 * being an entry from the partition key table), return 0
Mike Marciniszyn77241052015-07-30 15:17:43 -04001104 * otherwise. Use the matching criteria for egress partition keys
1105 * specified in the OPAv1 spec., section 9.1l.7.
1106 */
1107static inline int egress_pkey_matches_entry(u16 pkey, u16 ent)
1108{
1109 u16 mkey = pkey & PKEY_LOW_15_MASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001110 u16 mentry = ent & PKEY_LOW_15_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001111
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001112 if (mkey == mentry) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001113 /*
1114 * If pkey[15] is set (full partition member),
1115 * is bit 15 in the corresponding table element
1116 * clear (limited member)?
1117 */
1118 if (pkey & PKEY_MEMBER_MASK)
1119 return !!(ent & PKEY_MEMBER_MASK);
1120 return 1;
1121 }
1122 return 0;
1123}
1124
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001125/**
1126 * egress_pkey_check - check P_KEY of a packet
Don Hiatt566d53a2017-08-04 13:54:47 -07001127 * @ppd: Physical IB port data
1128 * @slid: SLID for packet
1129 * @bkey: PKEY for header
1130 * @sc5: SC for packet
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001131 * @s_pkey_index: It will be used for look up optimization for kernel contexts
1132 * only. If it is negative value, then it means user contexts is calling this
1133 * function.
1134 *
1135 * It checks if hdr's pkey is valid.
1136 *
1137 * Return: 0 on success, otherwise, 1
Mike Marciniszyn77241052015-07-30 15:17:43 -04001138 */
Don Hiatt566d53a2017-08-04 13:54:47 -07001139int egress_pkey_check(struct hfi1_pportdata *ppd, u32 slid, u16 pkey,
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001140 u8 sc5, int8_t s_pkey_index)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001141{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001142 struct hfi1_devdata *dd;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001143 int i;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001144 int is_user_ctxt_mechanism = (s_pkey_index < 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001145
1146 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_OUT))
1147 return 0;
1148
Mike Marciniszyn77241052015-07-30 15:17:43 -04001149 /* If SC15, pkey[0:14] must be 0x7fff */
1150 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1151 goto bad;
1152
Mike Marciniszyn77241052015-07-30 15:17:43 -04001153 /* Is the pkey = 0x0, or 0x8000? */
1154 if ((pkey & PKEY_LOW_15_MASK) == 0)
1155 goto bad;
1156
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001157 /*
1158 * For the kernel contexts only, if a qp is passed into the function,
1159 * the most likely matching pkey has index qp->s_pkey_index
1160 */
1161 if (!is_user_ctxt_mechanism &&
1162 egress_pkey_matches_entry(pkey, ppd->pkeys[s_pkey_index])) {
1163 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001164 }
1165
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001166 for (i = 0; i < MAX_PKEY_VALUES; i++) {
1167 if (egress_pkey_matches_entry(pkey, ppd->pkeys[i]))
1168 return 0;
1169 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001170bad:
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001171 /*
1172 * For the user-context mechanism, the P_KEY check would only happen
1173 * once per SDMA request, not once per packet. Therefore, there's no
1174 * need to increment the counter for the user-context mechanism.
1175 */
1176 if (!is_user_ctxt_mechanism) {
1177 incr_cntr64(&ppd->port_xmit_constraint_errors);
1178 dd = ppd->dd;
1179 if (!(dd->err_info_xmit_constraint.status &
1180 OPA_EI_STATUS_SMASK)) {
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001181 dd->err_info_xmit_constraint.status |=
1182 OPA_EI_STATUS_SMASK;
1183 dd->err_info_xmit_constraint.slid = slid;
1184 dd->err_info_xmit_constraint.pkey = pkey;
1185 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001186 }
1187 return 1;
1188}
1189
1190/**
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001191 * get_send_routine - choose an egress routine
1192 *
1193 * Choose an egress routine based on QP type
1194 * and size
1195 */
1196static inline send_routine get_send_routine(struct rvt_qp *qp,
Don Hiatt566d53a2017-08-04 13:54:47 -07001197 struct hfi1_pkt_state *ps)
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001198{
1199 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1200 struct hfi1_qp_priv *priv = qp->priv;
Don Hiatt566d53a2017-08-04 13:54:47 -07001201 struct verbs_txreq *tx = ps->s_txreq;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001202
1203 if (unlikely(!(dd->flags & HFI1_HAS_SEND_DMA)))
1204 return dd->process_pio_send;
1205 switch (qp->ibqp.qp_type) {
1206 case IB_QPT_SMI:
1207 return dd->process_pio_send;
1208 case IB_QPT_GSI:
1209 case IB_QPT_UD:
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001210 break;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001211 case IB_QPT_UC:
Mike Marciniszynb374e062016-09-25 07:40:58 -07001212 case IB_QPT_RC: {
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001213 if (piothreshold &&
Don Hiatte922ae02016-12-07 19:33:00 -08001214 tx->s_cur_size <= min(piothreshold, qp->pmtu) &&
Don Hiatt566d53a2017-08-04 13:54:47 -07001215 (BIT(ps->opcode & OPMASK) & pio_opmask[ps->opcode >> 5]) &&
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001216 iowait_sdma_pending(&priv->s_iowait) == 0 &&
1217 !sdma_txreq_built(&tx->txreq))
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001218 return dd->process_pio_send;
1219 break;
Mike Marciniszynb374e062016-09-25 07:40:58 -07001220 }
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001221 default:
1222 break;
1223 }
1224 return dd->process_dma_send;
1225}
1226
1227/**
Mike Marciniszyn77241052015-07-30 15:17:43 -04001228 * hfi1_verbs_send - send a packet
1229 * @qp: the QP to send on
Dennis Dalessandrod46e5142015-11-11 00:34:37 -05001230 * @ps: the state of the packet to send
Mike Marciniszyn77241052015-07-30 15:17:43 -04001231 *
1232 * Return zero if packet is sent or queued OK.
Dennis Dalessandro54d10c12016-01-19 14:43:01 -08001233 * Return non-zero and clear qp->s_flags RVT_S_BUSY otherwise.
Mike Marciniszyn77241052015-07-30 15:17:43 -04001234 */
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001235int hfi1_verbs_send(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001236{
1237 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001238 struct hfi1_qp_priv *priv = qp->priv;
Don Hiatt81cd3892018-05-15 18:28:15 -07001239 struct ib_other_headers *ohdr = NULL;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001240 send_routine sr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001241 int ret;
Don Hiatt566d53a2017-08-04 13:54:47 -07001242 u16 pkey;
1243 u32 slid;
Don Hiatt81cd3892018-05-15 18:28:15 -07001244 u8 l4 = 0;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001245
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001246 /* locate the pkey within the headers */
Don Hiatt566d53a2017-08-04 13:54:47 -07001247 if (ps->s_txreq->phdr.hdr.hdr_type) {
1248 struct hfi1_16b_header *hdr = &ps->s_txreq->phdr.hdr.opah;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001249
Don Hiatt81cd3892018-05-15 18:28:15 -07001250 l4 = hfi1_16B_get_l4(hdr);
1251 if (l4 == OPA_16B_L4_IB_LOCAL)
Don Hiatt566d53a2017-08-04 13:54:47 -07001252 ohdr = &hdr->u.oth;
Don Hiatt81cd3892018-05-15 18:28:15 -07001253 else if (l4 == OPA_16B_L4_IB_GLOBAL)
1254 ohdr = &hdr->u.l.oth;
1255
Don Hiatt566d53a2017-08-04 13:54:47 -07001256 slid = hfi1_16B_get_slid(hdr);
1257 pkey = hfi1_16B_get_pkey(hdr);
1258 } else {
1259 struct ib_header *hdr = &ps->s_txreq->phdr.hdr.ibh;
1260 u8 lnh = ib_get_lnh(hdr);
1261
1262 if (lnh == HFI1_LRH_GRH)
1263 ohdr = &hdr->u.l.oth;
1264 else
1265 ohdr = &hdr->u.oth;
1266 slid = ib_get_slid(hdr);
1267 pkey = ib_bth_get_pkey(ohdr);
1268 }
1269
Don Hiatt81cd3892018-05-15 18:28:15 -07001270 if (likely(l4 != OPA_16B_L4_FM))
1271 ps->opcode = ib_bth_get_opcode(ohdr);
1272 else
1273 ps->opcode = IB_OPCODE_UD_SEND_ONLY;
1274
Don Hiatt566d53a2017-08-04 13:54:47 -07001275 sr = get_send_routine(qp, ps);
1276 ret = egress_pkey_check(dd->pport, slid, pkey,
1277 priv->s_sc, qp->s_pkey_index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001278 if (unlikely(ret)) {
1279 /*
1280 * The value we are returning here does not get propagated to
1281 * the verbs caller. Thus we need to complete the request with
1282 * error otherwise the caller could be sitting waiting on the
1283 * completion event. Only do this for PIO. SDMA has its own
1284 * mechanism for handling the errors. So for SDMA we can just
1285 * return.
1286 */
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001287 if (sr == dd->process_pio_send) {
1288 unsigned long flags;
1289
Mike Marciniszyn77241052015-07-30 15:17:43 -04001290 hfi1_cdbg(PIO, "%s() Failed. Completing with err",
1291 __func__);
1292 spin_lock_irqsave(&qp->s_lock, flags);
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001293 rvt_send_complete(qp, qp->s_wqe, IB_WC_GENERAL_ERR);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001294 spin_unlock_irqrestore(&qp->s_lock, flags);
1295 }
1296 return -EINVAL;
1297 }
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001298 if (sr == dd->process_dma_send && iowait_pio_pending(&priv->s_iowait))
1299 return pio_wait(qp,
1300 ps->s_txreq->psc,
1301 ps,
Mike Marciniszyn2e2ba092018-06-04 11:44:02 -07001302 HFI1_S_WAIT_PIO_DRAIN);
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001303 return sr(qp, ps, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001304}
1305
Harish Chegondi94d51712016-01-19 14:43:17 -08001306/**
1307 * hfi1_fill_device_attr - Fill in rvt dev info device attributes.
1308 * @dd: the device data structure
1309 */
1310static void hfi1_fill_device_attr(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001311{
Harish Chegondi94d51712016-01-19 14:43:17 -08001312 struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001313 u32 ver = dd->dc8051_ver;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001314
Harish Chegondi94d51712016-01-19 14:43:17 -08001315 memset(&rdi->dparms.props, 0, sizeof(rdi->dparms.props));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001316
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001317 rdi->dparms.props.fw_ver = ((u64)(dc8051_ver_maj(ver)) << 32) |
1318 ((u64)(dc8051_ver_min(ver)) << 16) |
1319 (u64)dc8051_ver_patch(ver);
1320
Harish Chegondi94d51712016-01-19 14:43:17 -08001321 rdi->dparms.props.device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
1322 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
1323 IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
Jianxin Xiongc72cfe32016-07-25 13:38:43 -07001324 IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE |
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07001325 IB_DEVICE_MEM_MGT_EXTENSIONS |
1326 IB_DEVICE_RDMA_NETDEV_OPA_VNIC;
Harish Chegondi94d51712016-01-19 14:43:17 -08001327 rdi->dparms.props.page_size_cap = PAGE_SIZE;
1328 rdi->dparms.props.vendor_id = dd->oui1 << 16 | dd->oui2 << 8 | dd->oui3;
1329 rdi->dparms.props.vendor_part_id = dd->pcidev->device;
1330 rdi->dparms.props.hw_ver = dd->minrev;
1331 rdi->dparms.props.sys_image_guid = ib_hfi1_sys_image_guid;
Jianxin Xiongc72cfe32016-07-25 13:38:43 -07001332 rdi->dparms.props.max_mr_size = U64_MAX;
1333 rdi->dparms.props.max_fast_reg_page_list_len = UINT_MAX;
Harish Chegondi94d51712016-01-19 14:43:17 -08001334 rdi->dparms.props.max_qp = hfi1_max_qps;
1335 rdi->dparms.props.max_qp_wr = hfi1_max_qp_wrs;
Steve Wise33023fb2018-06-18 08:05:26 -07001336 rdi->dparms.props.max_send_sge = hfi1_max_sges;
1337 rdi->dparms.props.max_recv_sge = hfi1_max_sges;
Harish Chegondi94d51712016-01-19 14:43:17 -08001338 rdi->dparms.props.max_sge_rd = hfi1_max_sges;
1339 rdi->dparms.props.max_cq = hfi1_max_cqs;
1340 rdi->dparms.props.max_ah = hfi1_max_ahs;
1341 rdi->dparms.props.max_cqe = hfi1_max_cqes;
1342 rdi->dparms.props.max_mr = rdi->lkey_table.max;
1343 rdi->dparms.props.max_fmr = rdi->lkey_table.max;
1344 rdi->dparms.props.max_map_per_fmr = 32767;
1345 rdi->dparms.props.max_pd = hfi1_max_pds;
1346 rdi->dparms.props.max_qp_rd_atom = HFI1_MAX_RDMA_ATOMIC;
1347 rdi->dparms.props.max_qp_init_rd_atom = 255;
1348 rdi->dparms.props.max_srq = hfi1_max_srqs;
1349 rdi->dparms.props.max_srq_wr = hfi1_max_srq_wrs;
1350 rdi->dparms.props.max_srq_sge = hfi1_max_srq_sges;
1351 rdi->dparms.props.atomic_cap = IB_ATOMIC_GLOB;
1352 rdi->dparms.props.max_pkeys = hfi1_get_npkeys(dd);
1353 rdi->dparms.props.max_mcast_grp = hfi1_max_mcast_grps;
1354 rdi->dparms.props.max_mcast_qp_attach = hfi1_max_mcast_qp_attached;
1355 rdi->dparms.props.max_total_mcast_qp_attach =
1356 rdi->dparms.props.max_mcast_qp_attach *
1357 rdi->dparms.props.max_mcast_grp;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001358}
1359
1360static inline u16 opa_speed_to_ib(u16 in)
1361{
1362 u16 out = 0;
1363
1364 if (in & OPA_LINK_SPEED_25G)
1365 out |= IB_SPEED_EDR;
1366 if (in & OPA_LINK_SPEED_12_5G)
1367 out |= IB_SPEED_FDR;
1368
1369 return out;
1370}
1371
1372/*
1373 * Convert a single OPA link width (no multiple flags) to an IB value.
1374 * A zero OPA link width means link down, which means the IB width value
1375 * is a don't care.
1376 */
1377static inline u16 opa_width_to_ib(u16 in)
1378{
1379 switch (in) {
1380 case OPA_LINK_WIDTH_1X:
1381 /* map 2x and 3x to 1x as they don't exist in IB */
1382 case OPA_LINK_WIDTH_2X:
1383 case OPA_LINK_WIDTH_3X:
1384 return IB_WIDTH_1X;
1385 default: /* link down or unknown, return our largest width */
1386 case OPA_LINK_WIDTH_4X:
1387 return IB_WIDTH_4X;
1388 }
1389}
1390
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001391static int query_port(struct rvt_dev_info *rdi, u8 port_num,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001392 struct ib_port_attr *props)
1393{
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001394 struct hfi1_ibdev *verbs_dev = dev_from_rdi(rdi);
1395 struct hfi1_devdata *dd = dd_from_dev(verbs_dev);
1396 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -07001397 u32 lid = ppd->lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001398
Or Gerlitzc4550c62017-01-24 13:02:39 +02001399 /* props being zeroed by the caller, avoid zeroing it here */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001400 props->lid = lid ? lid : 0;
1401 props->lmc = ppd->lmc;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001402 /* OPA logical states match IB logical states */
1403 props->state = driver_lstate(ppd);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -07001404 props->phys_state = driver_pstate(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001405 props->gid_tbl_len = HFI1_GUIDS_PER_PORT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001406 props->active_width = (u8)opa_width_to_ib(ppd->link_width_active);
1407 /* see rate_show() in ib core/sysfs.c */
1408 props->active_speed = (u8)opa_speed_to_ib(ppd->link_speed_active);
1409 props->max_vl_num = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001410
1411 /* Once we are a "first class" citizen and have added the OPA MTUs to
1412 * the core we can advertise the larger MTU enum to the ULPs, for now
1413 * advertise only 4K.
1414 *
1415 * Those applications which are either OPA aware or pass the MTU enum
1416 * from the Path Records to us will get the new 8k MTU. Those that
1417 * attempt to process the MTU enum may fail in various ways.
1418 */
1419 props->max_mtu = mtu_to_enum((!valid_ib_mtu(hfi1_max_mtu) ?
1420 4096 : hfi1_max_mtu), IB_MTU_4096);
1421 props->active_mtu = !valid_ib_mtu(ppd->ibmtu) ? props->max_mtu :
Jan Sokolowski69a3ffa2017-11-14 04:34:45 -08001422 mtu_to_enum(ppd->ibmtu, IB_MTU_4096);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001423
1424 return 0;
1425}
1426
1427static int modify_device(struct ib_device *device,
1428 int device_modify_mask,
1429 struct ib_device_modify *device_modify)
1430{
1431 struct hfi1_devdata *dd = dd_from_ibdev(device);
1432 unsigned i;
1433 int ret;
1434
1435 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1436 IB_DEVICE_MODIFY_NODE_DESC)) {
1437 ret = -EOPNOTSUPP;
1438 goto bail;
1439 }
1440
1441 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC) {
Yuval Shaiabd99fde2016-08-25 10:57:07 -07001442 memcpy(device->node_desc, device_modify->node_desc,
1443 IB_DEVICE_NODE_DESC_MAX);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001444 for (i = 0; i < dd->num_pports; i++) {
1445 struct hfi1_ibport *ibp = &dd->pport[i].ibport_data;
1446
1447 hfi1_node_desc_chg(ibp);
1448 }
1449 }
1450
1451 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID) {
1452 ib_hfi1_sys_image_guid =
1453 cpu_to_be64(device_modify->sys_image_guid);
1454 for (i = 0; i < dd->num_pports; i++) {
1455 struct hfi1_ibport *ibp = &dd->pport[i].ibport_data;
1456
1457 hfi1_sys_guid_chg(ibp);
1458 }
1459 }
1460
1461 ret = 0;
1462
1463bail:
1464 return ret;
1465}
1466
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001467static int shut_down_port(struct rvt_dev_info *rdi, u8 port_num)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001468{
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001469 struct hfi1_ibdev *verbs_dev = dev_from_rdi(rdi);
1470 struct hfi1_devdata *dd = dd_from_dev(verbs_dev);
1471 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
1472 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001473
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001474 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_UNKNOWN, 0,
1475 OPA_LINKDOWN_REASON_UNKNOWN);
1476 ret = set_link_state(ppd, HLS_DN_DOWNDEF);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001477 return ret;
1478}
1479
Dennis Dalessandro25131462016-02-03 14:36:40 -08001480static int hfi1_get_guid_be(struct rvt_dev_info *rdi, struct rvt_ibport *rvp,
1481 int guid_index, __be64 *guid)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001482{
Dennis Dalessandro25131462016-02-03 14:36:40 -08001483 struct hfi1_ibport *ibp = container_of(rvp, struct hfi1_ibport, rvp);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001484
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001485 if (guid_index >= HFI1_GUIDS_PER_PORT)
Dennis Dalessandro25131462016-02-03 14:36:40 -08001486 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001487
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001488 *guid = get_sguid(ibp, guid_index);
Dennis Dalessandro25131462016-02-03 14:36:40 -08001489 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001490}
1491
Mike Marciniszyn77241052015-07-30 15:17:43 -04001492/*
1493 * convert ah port,sl to sc
1494 */
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001495u8 ah_to_sc(struct ib_device *ibdev, struct rdma_ah_attr *ah)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001496{
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001497 struct hfi1_ibport *ibp = to_iport(ibdev, rdma_ah_get_port_num(ah));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001498
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001499 return ibp->sl_to_sc[rdma_ah_get_sl(ah)];
Mike Marciniszyn77241052015-07-30 15:17:43 -04001500}
1501
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001502static int hfi1_check_ah(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001503{
1504 struct hfi1_ibport *ibp;
1505 struct hfi1_pportdata *ppd;
1506 struct hfi1_devdata *dd;
1507 u8 sc5;
Ira Weiny0dbfaa92018-09-20 12:58:46 -07001508 u8 sl;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001509
Don Hiatt13c19222017-08-04 13:53:51 -07001510 if (hfi1_check_mcast(rdma_ah_get_dlid(ah_attr)) &&
1511 !(rdma_ah_get_ah_flags(ah_attr) & IB_AH_GRH))
1512 return -EINVAL;
1513
Mike Marciniszyn77241052015-07-30 15:17:43 -04001514 /* test the mapping for validity */
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001515 ibp = to_iport(ibdev, rdma_ah_get_port_num(ah_attr));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001516 ppd = ppd_from_ibp(ibp);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001517 dd = dd_from_ppd(ppd);
Ira Weiny0dbfaa92018-09-20 12:58:46 -07001518
1519 sl = rdma_ah_get_sl(ah_attr);
1520 if (sl >= ARRAY_SIZE(ibp->sl_to_sc))
1521 return -EINVAL;
1522
1523 sc5 = ibp->sl_to_sc[sl];
Mike Marciniszyn77241052015-07-30 15:17:43 -04001524 if (sc_to_vlt(dd, sc5) > num_vls && sc_to_vlt(dd, sc5) != 0xf)
Dennis Dalessandro15723f02016-01-19 14:42:17 -08001525 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001526 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001527}
1528
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001529static void hfi1_notify_new_ah(struct ib_device *ibdev,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001530 struct rdma_ah_attr *ah_attr,
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001531 struct rvt_ah *ah)
1532{
1533 struct hfi1_ibport *ibp;
1534 struct hfi1_pportdata *ppd;
1535 struct hfi1_devdata *dd;
1536 u8 sc5;
Don Hiattd98bb7f2017-08-04 13:54:16 -07001537 struct rdma_ah_attr *attr = &ah->attr;
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001538
1539 /*
1540 * Do not trust reading anything from rvt_ah at this point as it is not
1541 * done being setup. We can however modify things which we need to set.
1542 */
1543
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001544 ibp = to_iport(ibdev, rdma_ah_get_port_num(ah_attr));
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001545 ppd = ppd_from_ibp(ibp);
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001546 sc5 = ibp->sl_to_sc[rdma_ah_get_sl(&ah->attr)];
Don Hiattd98bb7f2017-08-04 13:54:16 -07001547 hfi1_update_ah_attr(ibdev, attr);
1548 hfi1_make_opa_lid(attr);
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001549 dd = dd_from_ppd(ppd);
1550 ah->vl = sc_to_vlt(dd, sc5);
1551 if (ah->vl < num_vls || ah->vl == 15)
1552 ah->log_pmtu = ilog2(dd->vld[ah->vl].mtu);
1553}
1554
Mike Marciniszyn77241052015-07-30 15:17:43 -04001555/**
Mike Marciniszyn77241052015-07-30 15:17:43 -04001556 * hfi1_get_npkeys - return the size of the PKEY table for context 0
1557 * @dd: the hfi1_ib device
1558 */
1559unsigned hfi1_get_npkeys(struct hfi1_devdata *dd)
1560{
1561 return ARRAY_SIZE(dd->pport[0].pkeys);
1562}
1563
Mike Marciniszyn77241052015-07-30 15:17:43 -04001564static void init_ibport(struct hfi1_pportdata *ppd)
1565{
1566 struct hfi1_ibport *ibp = &ppd->ibport_data;
1567 size_t sz = ARRAY_SIZE(ibp->sl_to_sc);
1568 int i;
1569
1570 for (i = 0; i < sz; i++) {
1571 ibp->sl_to_sc[i] = i;
1572 ibp->sc_to_sl[i] = i;
1573 }
1574
Michael J. Ruhlbf90aad2017-07-24 07:46:12 -07001575 for (i = 0; i < RVT_MAX_TRAP_LISTS ; i++)
1576 INIT_LIST_HEAD(&ibp->rvp.trap_lists[i].list);
Kees Cook80641352017-10-16 15:51:54 -07001577 timer_setup(&ibp->rvp.trap_timer, hfi1_handle_trap_timer, 0);
Michael J. Ruhlbf90aad2017-07-24 07:46:12 -07001578
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001579 spin_lock_init(&ibp->rvp.lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001580 /* Set the prefix to the default value (see ch. 4.1.1) */
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001581 ibp->rvp.gid_prefix = IB_DEFAULT_GID_PREFIX;
1582 ibp->rvp.sm_lid = 0;
Vishwanathapura, Niranjanacb493662017-06-01 17:04:02 -07001583 /*
1584 * Below should only set bits defined in OPA PortInfo.CapabilityMask
1585 * and PortInfo.CapabilityMask3
1586 */
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001587 ibp->rvp.port_cap_flags = IB_PORT_AUTO_MIGR_SUP |
Mike Marciniszyn77241052015-07-30 15:17:43 -04001588 IB_PORT_CAP_MASK_NOTICE_SUP;
Vishwanathapura, Niranjanacb493662017-06-01 17:04:02 -07001589 ibp->rvp.port_cap3_flags = OPA_CAP_MASK3_IsSharedSpaceSupported;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001590 ibp->rvp.pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
1591 ibp->rvp.pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
1592 ibp->rvp.pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
1593 ibp->rvp.pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
1594 ibp->rvp.pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001595
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001596 RCU_INIT_POINTER(ibp->rvp.qp[0], NULL);
1597 RCU_INIT_POINTER(ibp->rvp.qp[1], NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001598}
1599
Leon Romanovsky9abb0d12017-06-27 16:49:53 +03001600static void hfi1_get_dev_fw_str(struct ib_device *ibdev, char *str)
Ira Weiny939b6ca2016-06-15 02:22:08 -04001601{
1602 struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
1603 struct hfi1_ibdev *dev = dev_from_rdi(rdi);
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001604 u32 ver = dd_from_dev(dev)->dc8051_ver;
Ira Weiny939b6ca2016-06-15 02:22:08 -04001605
Leon Romanovsky9abb0d12017-06-27 16:49:53 +03001606 snprintf(str, IB_FW_VERSION_NAME_MAX, "%u.%u.%u", dc8051_ver_maj(ver),
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001607 dc8051_ver_min(ver), dc8051_ver_patch(ver));
Ira Weiny939b6ca2016-06-15 02:22:08 -04001608}
1609
Jianxin Xiongb7481942016-12-07 19:32:53 -08001610static const char * const driver_cntr_names[] = {
1611 /* must be element 0*/
1612 "DRIVER_KernIntr",
1613 "DRIVER_ErrorIntr",
1614 "DRIVER_Tx_Errs",
1615 "DRIVER_Rcv_Errs",
1616 "DRIVER_HW_Errs",
1617 "DRIVER_NoPIOBufs",
1618 "DRIVER_CtxtsOpen",
1619 "DRIVER_RcvLen_Errs",
1620 "DRIVER_EgrBufFull",
1621 "DRIVER_EgrHdrFull"
1622};
1623
Tadeusz Struk62eed662017-03-20 17:25:35 -07001624static DEFINE_MUTEX(cntr_names_lock); /* protects the *_cntr_names bufers */
Jianxin Xiongb7481942016-12-07 19:32:53 -08001625static const char **dev_cntr_names;
1626static const char **port_cntr_names;
Piotr Stankiewicz36d84212018-11-28 06:44:46 -08001627int num_driver_cntrs = ARRAY_SIZE(driver_cntr_names);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001628static int num_dev_cntrs;
1629static int num_port_cntrs;
1630static int cntr_names_initialized;
1631
1632/*
1633 * Convert a list of names separated by '\n' into an array of NULL terminated
1634 * strings. Optionally some entries can be reserved in the array to hold extra
1635 * external strings.
1636 */
1637static int init_cntr_names(const char *names_in,
Arnd Bergmann64b2ae72017-02-14 22:23:07 +01001638 const size_t names_len,
Jianxin Xiongb7481942016-12-07 19:32:53 -08001639 int num_extra_names,
1640 int *num_cntrs,
1641 const char ***cntr_names)
1642{
1643 char *names_out, *p, **q;
1644 int i, n;
1645
1646 n = 0;
1647 for (i = 0; i < names_len; i++)
1648 if (names_in[i] == '\n')
1649 n++;
1650
1651 names_out = kmalloc((n + num_extra_names) * sizeof(char *) + names_len,
1652 GFP_KERNEL);
1653 if (!names_out) {
1654 *num_cntrs = 0;
1655 *cntr_names = NULL;
1656 return -ENOMEM;
1657 }
1658
1659 p = names_out + (n + num_extra_names) * sizeof(char *);
1660 memcpy(p, names_in, names_len);
1661
1662 q = (char **)names_out;
1663 for (i = 0; i < n; i++) {
1664 q[i] = p;
1665 p = strchr(p, '\n');
1666 *p++ = '\0';
1667 }
1668
1669 *num_cntrs = n;
1670 *cntr_names = (const char **)names_out;
1671 return 0;
1672}
1673
1674static struct rdma_hw_stats *alloc_hw_stats(struct ib_device *ibdev,
1675 u8 port_num)
1676{
1677 int i, err;
1678
Tadeusz Struk62eed662017-03-20 17:25:35 -07001679 mutex_lock(&cntr_names_lock);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001680 if (!cntr_names_initialized) {
1681 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
1682
1683 err = init_cntr_names(dd->cntrnames,
1684 dd->cntrnameslen,
1685 num_driver_cntrs,
1686 &num_dev_cntrs,
1687 &dev_cntr_names);
Tadeusz Struk62eed662017-03-20 17:25:35 -07001688 if (err) {
1689 mutex_unlock(&cntr_names_lock);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001690 return NULL;
Tadeusz Struk62eed662017-03-20 17:25:35 -07001691 }
Jianxin Xiongb7481942016-12-07 19:32:53 -08001692
1693 for (i = 0; i < num_driver_cntrs; i++)
1694 dev_cntr_names[num_dev_cntrs + i] =
1695 driver_cntr_names[i];
1696
1697 err = init_cntr_names(dd->portcntrnames,
1698 dd->portcntrnameslen,
1699 0,
1700 &num_port_cntrs,
1701 &port_cntr_names);
1702 if (err) {
1703 kfree(dev_cntr_names);
1704 dev_cntr_names = NULL;
Tadeusz Struk62eed662017-03-20 17:25:35 -07001705 mutex_unlock(&cntr_names_lock);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001706 return NULL;
1707 }
1708 cntr_names_initialized = 1;
1709 }
Tadeusz Struk62eed662017-03-20 17:25:35 -07001710 mutex_unlock(&cntr_names_lock);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001711
1712 if (!port_num)
1713 return rdma_alloc_hw_stats_struct(
1714 dev_cntr_names,
1715 num_dev_cntrs + num_driver_cntrs,
1716 RDMA_HW_STATS_DEFAULT_LIFESPAN);
1717 else
1718 return rdma_alloc_hw_stats_struct(
1719 port_cntr_names,
1720 num_port_cntrs,
1721 RDMA_HW_STATS_DEFAULT_LIFESPAN);
1722}
1723
1724static u64 hfi1_sps_ints(void)
1725{
1726 unsigned long flags;
1727 struct hfi1_devdata *dd;
1728 u64 sps_ints = 0;
1729
1730 spin_lock_irqsave(&hfi1_devs_lock, flags);
1731 list_for_each_entry(dd, &hfi1_dev_list, list) {
1732 sps_ints += get_all_cpu_total(dd->int_counter);
1733 }
1734 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
1735 return sps_ints;
1736}
1737
1738static int get_hw_stats(struct ib_device *ibdev, struct rdma_hw_stats *stats,
1739 u8 port, int index)
1740{
1741 u64 *values;
1742 int count;
1743
1744 if (!port) {
1745 u64 *stats = (u64 *)&hfi1_stats;
1746 int i;
1747
1748 hfi1_read_cntrs(dd_from_ibdev(ibdev), NULL, &values);
1749 values[num_dev_cntrs] = hfi1_sps_ints();
1750 for (i = 1; i < num_driver_cntrs; i++)
1751 values[num_dev_cntrs + i] = stats[i];
1752 count = num_dev_cntrs + num_driver_cntrs;
1753 } else {
1754 struct hfi1_ibport *ibp = to_iport(ibdev, port);
1755
1756 hfi1_read_portcntrs(ppd_from_ibp(ibp), NULL, &values);
1757 count = num_port_cntrs;
1758 }
1759
1760 memcpy(stats->value, values, count * sizeof(u64));
1761 return count;
1762}
1763
Kamal Heibe3c320c2018-12-10 21:09:34 +02001764static const struct ib_device_ops hfi1_dev_ops = {
1765 .alloc_hw_stats = alloc_hw_stats,
1766 .alloc_rdma_netdev = hfi1_vnic_alloc_rn,
1767 .get_dev_fw_str = hfi1_get_dev_fw_str,
1768 .get_hw_stats = get_hw_stats,
Parav Panditea4baf72018-12-18 14:28:30 +02001769 .init_port = hfi1_create_port_files,
Kamal Heibe3c320c2018-12-10 21:09:34 +02001770 .modify_device = modify_device,
1771 /* keep process mad in the driver */
1772 .process_mad = hfi1_process_mad,
1773};
1774
Mike Marciniszyn77241052015-07-30 15:17:43 -04001775/**
1776 * hfi1_register_ib_device - register our device with the infiniband core
1777 * @dd: the device data structure
1778 * Return 0 if successful, errno if unsuccessful.
1779 */
1780int hfi1_register_ib_device(struct hfi1_devdata *dd)
1781{
1782 struct hfi1_ibdev *dev = &dd->verbs_dev;
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001783 struct ib_device *ibdev = &dev->rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001784 struct hfi1_pportdata *ppd = dd->pport;
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001785 struct hfi1_ibport *ibp = &ppd->ibport_data;
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001786 unsigned i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001787 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001788
Mike Marciniszyn77241052015-07-30 15:17:43 -04001789 for (i = 0; i < dd->num_pports; i++)
1790 init_ibport(ppd + i);
1791
1792 /* Only need to initialize non-zero fields. */
Dennis Dalessandro4f87ccf2016-01-19 14:41:50 -08001793
Kees Cook80641352017-10-16 15:51:54 -07001794 timer_setup(&dev->mem_timer, mem_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001795
Mike Marciniszyn77241052015-07-30 15:17:43 -04001796 seqlock_init(&dev->iowait_lock);
Mike Marciniszyn4e045572016-10-10 06:14:28 -07001797 seqlock_init(&dev->txwait_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001798 INIT_LIST_HEAD(&dev->txwait);
1799 INIT_LIST_HEAD(&dev->memwait);
1800
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001801 ret = verbs_txreq_init(dev);
1802 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001803 goto err_verbs_txreq;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001804
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001805 /* Use first-port GUID as node guid */
1806 ibdev->node_guid = get_sguid(ibp, HFI1_PORT_GUID_INDEX);
1807
Mike Marciniszyn77241052015-07-30 15:17:43 -04001808 /*
1809 * The system image GUID is supposed to be the same for all
1810 * HFIs in a single system but since there can be other
1811 * device types in the system, we can't be sure this is unique.
1812 */
1813 if (!ib_hfi1_sys_image_guid)
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001814 ib_hfi1_sys_image_guid = ibdev->node_guid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001815 ibdev->owner = THIS_MODULE;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001816 ibdev->phys_port_cnt = dd->num_pports;
Bart Van Assche30677712017-01-20 13:04:17 -08001817 ibdev->dev.parent = &dd->pcidev->dev;
Dennis Dalessandro43316292016-01-19 14:44:01 -08001818
Kamal Heibe3c320c2018-12-10 21:09:34 +02001819 ib_set_device_ops(ibdev, &hfi1_dev_ops);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001820
Bart Van Assche522628e2018-07-10 11:32:16 -07001821 strlcpy(ibdev->node_desc, init_utsname()->nodename,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001822 sizeof(ibdev->node_desc));
1823
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001824 /*
1825 * Fill in rvt info object.
1826 */
Dennis Dalessandro49dbb6c2016-01-19 14:42:06 -08001827 dd->verbs_dev.rdi.driver_f.get_pci_dev = get_pci_dev;
Dennis Dalessandro15723f02016-01-19 14:42:17 -08001828 dd->verbs_dev.rdi.driver_f.check_ah = hfi1_check_ah;
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001829 dd->verbs_dev.rdi.driver_f.notify_new_ah = hfi1_notify_new_ah;
Dennis Dalessandro25131462016-02-03 14:36:40 -08001830 dd->verbs_dev.rdi.driver_f.get_guid_be = hfi1_get_guid_be;
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001831 dd->verbs_dev.rdi.driver_f.query_port_state = query_port;
1832 dd->verbs_dev.rdi.driver_f.shut_down_port = shut_down_port;
1833 dd->verbs_dev.rdi.driver_f.cap_mask_chg = hfi1_cap_mask_chg;
Harish Chegondi94d51712016-01-19 14:43:17 -08001834 /*
1835 * Fill in rvt info device attributes.
1836 */
1837 hfi1_fill_device_attr(dd);
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001838
1839 /* queue pair */
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001840 dd->verbs_dev.rdi.dparms.qp_table_size = hfi1_qp_table_size;
1841 dd->verbs_dev.rdi.dparms.qpn_start = 0;
1842 dd->verbs_dev.rdi.dparms.qpn_inc = 1;
1843 dd->verbs_dev.rdi.dparms.qos_shift = dd->qos_shift;
1844 dd->verbs_dev.rdi.dparms.qpn_res_start = kdeth_qp << 16;
1845 dd->verbs_dev.rdi.dparms.qpn_res_end =
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001846 dd->verbs_dev.rdi.dparms.qpn_res_start + 65535;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -08001847 dd->verbs_dev.rdi.dparms.max_rdma_atomic = HFI1_MAX_RDMA_ATOMIC;
1848 dd->verbs_dev.rdi.dparms.psn_mask = PSN_MASK;
1849 dd->verbs_dev.rdi.dparms.psn_shift = PSN_SHIFT;
1850 dd->verbs_dev.rdi.dparms.psn_modify_mask = PSN_MODIFY_MASK;
Dasaratharaman Chandramouli72214032017-08-04 13:54:53 -07001851 dd->verbs_dev.rdi.dparms.core_cap_flags = RDMA_CORE_PORT_INTEL_OPA |
1852 RDMA_CORE_CAP_OPA_AH;
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001853 dd->verbs_dev.rdi.dparms.max_mad_size = OPA_MGMT_MAD_SIZE;
1854
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001855 dd->verbs_dev.rdi.driver_f.qp_priv_alloc = qp_priv_alloc;
Mike Marciniszyn5190f052018-11-28 10:22:31 -08001856 dd->verbs_dev.rdi.driver_f.qp_priv_init = hfi1_qp_priv_init;
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001857 dd->verbs_dev.rdi.driver_f.qp_priv_free = qp_priv_free;
1858 dd->verbs_dev.rdi.driver_f.free_all_qps = free_all_qps;
1859 dd->verbs_dev.rdi.driver_f.notify_qp_reset = notify_qp_reset;
Mike Marciniszynb6eac932017-04-09 10:16:35 -07001860 dd->verbs_dev.rdi.driver_f.do_send = hfi1_do_send_from_rvt;
Dennis Dalessandro83693bd2016-01-19 14:43:33 -08001861 dd->verbs_dev.rdi.driver_f.schedule_send = hfi1_schedule_send;
Mike Marciniszyn46a80d62016-02-14 12:10:04 -08001862 dd->verbs_dev.rdi.driver_f.schedule_send_no_lock = _hfi1_schedule_send;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -08001863 dd->verbs_dev.rdi.driver_f.get_pmtu_from_attr = get_pmtu_from_attr;
1864 dd->verbs_dev.rdi.driver_f.notify_error_qp = notify_error_qp;
1865 dd->verbs_dev.rdi.driver_f.flush_qp_waiters = flush_qp_waiters;
1866 dd->verbs_dev.rdi.driver_f.stop_send_queue = stop_send_queue;
1867 dd->verbs_dev.rdi.driver_f.quiesce_qp = quiesce_qp;
1868 dd->verbs_dev.rdi.driver_f.notify_error_qp = notify_error_qp;
1869 dd->verbs_dev.rdi.driver_f.mtu_from_qp = mtu_from_qp;
1870 dd->verbs_dev.rdi.driver_f.mtu_to_path_mtu = mtu_to_path_mtu;
1871 dd->verbs_dev.rdi.driver_f.check_modify_qp = hfi1_check_modify_qp;
1872 dd->verbs_dev.rdi.driver_f.modify_qp = hfi1_modify_qp;
Venkata Sandeep Dhanalakota56acbbf2017-02-08 05:27:19 -08001873 dd->verbs_dev.rdi.driver_f.notify_restart_rc = hfi1_restart_rc;
Kaike Wand205a06a2018-09-26 10:26:44 -07001874 dd->verbs_dev.rdi.driver_f.setup_wqe = hfi1_setup_wqe;
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -07001875 dd->verbs_dev.rdi.driver_f.comp_vect_cpu_lookup =
1876 hfi1_comp_vect_mappings_lookup;
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001877
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001878 /* completeion queue */
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -07001879 dd->verbs_dev.rdi.ibdev.num_comp_vectors = dd->comp_vect_possible_cpus;
Mitko Haralanov27807392016-02-03 14:33:31 -08001880 dd->verbs_dev.rdi.dparms.node = dd->node;
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001881
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001882 /* misc settings */
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001883 dd->verbs_dev.rdi.flags = 0; /* Let rdmavt handle it all */
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001884 dd->verbs_dev.rdi.dparms.lkey_table_size = hfi1_lkey_table_size;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001885 dd->verbs_dev.rdi.dparms.nports = dd->num_pports;
1886 dd->verbs_dev.rdi.dparms.npkeys = hfi1_get_npkeys(dd);
Brian Welty019f1182018-09-26 10:44:33 -07001887 dd->verbs_dev.rdi.dparms.sge_copy_mode = sge_copy_mode;
1888 dd->verbs_dev.rdi.dparms.wss_threshold = wss_threshold;
1889 dd->verbs_dev.rdi.dparms.wss_clean_period = wss_clean_period;
Kaike Wan48a615d2019-01-23 19:21:11 -08001890 dd->verbs_dev.rdi.dparms.reserved_operations = 1;
Kaike Wanf5a4a952019-01-23 21:48:38 -08001891 dd->verbs_dev.rdi.dparms.extra_rdma_atomic = HFI1_TID_RDMA_WRITE_CNT;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001892
Mike Marciniszyn1ac57c52016-07-01 16:02:13 -07001893 /* post send table */
1894 dd->verbs_dev.rdi.post_parms = hfi1_post_parms;
1895
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001896 /* opcode translation table */
1897 dd->verbs_dev.rdi.wc_opcode = ib_hfi1_wc_opcode;
1898
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001899 ppd = dd->pport;
1900 for (i = 0; i < dd->num_pports; i++, ppd++)
1901 rvt_init_port(&dd->verbs_dev.rdi,
1902 &ppd->ibport_data.rvp,
1903 i,
1904 ppd->pkeys);
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001905
Parav Pandit508a5232018-10-11 22:31:54 +03001906 rdma_set_device_sysfs_group(&dd->verbs_dev.rdi.ibdev,
1907 &ib_hfi1_attr_group);
1908
Matan Barak0ede73b2018-03-19 15:02:34 +02001909 ret = rvt_register_device(&dd->verbs_dev.rdi, RDMA_DRIVER_HFI1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001910 if (ret)
Dennis Dalessandro9c4a3112016-01-19 14:44:11 -08001911 goto err_verbs_txreq;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001912
1913 ret = hfi1_verbs_register_sysfs(dd);
1914 if (ret)
1915 goto err_class;
1916
Dennis Dalessandro9c4a3112016-01-19 14:44:11 -08001917 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001918
1919err_class:
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001920 rvt_unregister_device(&dd->verbs_dev.rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001921err_verbs_txreq:
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001922 verbs_txreq_exit(dev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001923 dd_dev_err(dd, "cannot register verbs: %d!\n", -ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001924 return ret;
1925}
1926
1927void hfi1_unregister_ib_device(struct hfi1_devdata *dd)
1928{
1929 struct hfi1_ibdev *dev = &dd->verbs_dev;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001930
1931 hfi1_verbs_unregister_sysfs(dd);
1932
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001933 rvt_unregister_device(&dd->verbs_dev.rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001934
1935 if (!list_empty(&dev->txwait))
1936 dd_dev_err(dd, "txwait list not empty!\n");
1937 if (!list_empty(&dev->memwait))
1938 dd_dev_err(dd, "memwait list not empty!\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04001939
Mike Marciniszyn77241052015-07-30 15:17:43 -04001940 del_timer_sync(&dev->mem_timer);
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001941 verbs_txreq_exit(dev);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001942
Tadeusz Struk62eed662017-03-20 17:25:35 -07001943 mutex_lock(&cntr_names_lock);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001944 kfree(dev_cntr_names);
1945 kfree(port_cntr_names);
Tadeusz Struk62eed662017-03-20 17:25:35 -07001946 dev_cntr_names = NULL;
1947 port_cntr_names = NULL;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001948 cntr_names_initialized = 0;
Tadeusz Struk62eed662017-03-20 17:25:35 -07001949 mutex_unlock(&cntr_names_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001950}
1951
Mike Marciniszyn77241052015-07-30 15:17:43 -04001952void hfi1_cnp_rcv(struct hfi1_packet *packet)
1953{
Sebastian Sanchezf3e862c2017-02-08 05:26:25 -08001954 struct hfi1_ibport *ibp = rcd_to_iport(packet->rcd);
Arthur Kepner977940b2015-11-04 21:10:10 -05001955 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
Mike Marciniszyn261a4352016-09-06 04:35:05 -07001956 struct ib_header *hdr = packet->hdr;
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001957 struct rvt_qp *qp = packet->qp;
Arthur Kepner977940b2015-11-04 21:10:10 -05001958 u32 lqpn, rqpn = 0;
1959 u16 rlid = 0;
Dasaratharaman Chandramoulib736a462016-07-25 13:40:34 -07001960 u8 sl, sc5, svc_type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001961
Arthur Kepner977940b2015-11-04 21:10:10 -05001962 switch (packet->qp->ibqp.qp_type) {
1963 case IB_QPT_UC:
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001964 rlid = rdma_ah_get_dlid(&qp->remote_ah_attr);
Arthur Kepner977940b2015-11-04 21:10:10 -05001965 rqpn = qp->remote_qpn;
1966 svc_type = IB_CC_SVCTYPE_UC;
1967 break;
1968 case IB_QPT_RC:
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001969 rlid = rdma_ah_get_dlid(&qp->remote_ah_attr);
Arthur Kepner977940b2015-11-04 21:10:10 -05001970 rqpn = qp->remote_qpn;
1971 svc_type = IB_CC_SVCTYPE_RC;
1972 break;
1973 case IB_QPT_SMI:
1974 case IB_QPT_GSI:
1975 case IB_QPT_UD:
1976 svc_type = IB_CC_SVCTYPE_UD;
1977 break;
1978 default:
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001979 ibp->rvp.n_pkt_drops++;
Arthur Kepner977940b2015-11-04 21:10:10 -05001980 return;
1981 }
1982
Dasaratharaman Chandramouliaad559c2017-04-09 10:16:15 -07001983 sc5 = hfi1_9B_get_sc5(hdr, packet->rhf);
Arthur Kepner977940b2015-11-04 21:10:10 -05001984 sl = ibp->sc_to_sl[sc5];
1985 lqpn = qp->ibqp.qp_num;
1986
1987 process_becn(ppd, sl, rlid, lqpn, rqpn, svc_type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001988}