blob: dc9211f3a0098fa54c1fbe934c7e7f561342a4ab [file] [log] [blame]
Cai Huoqing145eba12021-08-23 12:26:22 +08001// SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
Mike Marciniszyn77241052015-07-30 15:17:43 -04002/*
Gary Leshner84e3b192020-05-11 12:06:00 -04003 * Copyright(c) 2015 - 2020 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04004 */
5
6#include <rdma/ib_mad.h>
7#include <rdma/ib_user_verbs.h>
8#include <linux/io.h>
9#include <linux/module.h>
10#include <linux/utsname.h>
11#include <linux/rculist.h>
12#include <linux/mm.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040013#include <linux/vmalloc.h>
Don Hiatt13c19222017-08-04 13:53:51 -070014#include <rdma/opa_addr.h>
Gustavo A. R. Silva6497d0a2019-07-31 12:54:28 -050015#include <linux/nospec.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040016
17#include "hfi.h"
18#include "common.h"
19#include "device.h"
20#include "trace.h"
21#include "qp.h"
Mike Marciniszyn45842ab2016-02-14 12:44:34 -080022#include "verbs_txreq.h"
Don Hiatt0181ce32017-03-20 17:26:14 -070023#include "debugfs.h"
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070024#include "vnic.h"
Mitko Haralanova74d5302018-05-02 06:43:24 -070025#include "fault.h"
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -070026#include "affinity.h"
Piotr Stankiewicz0ad45e52020-05-11 12:07:13 -040027#include "ipoib.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040028
Dennis Dalessandro895420d2016-01-19 14:42:28 -080029static unsigned int hfi1_lkey_table_size = 16;
Mike Marciniszyn77241052015-07-30 15:17:43 -040030module_param_named(lkey_table_size, hfi1_lkey_table_size, uint,
31 S_IRUGO);
32MODULE_PARM_DESC(lkey_table_size,
33 "LKEY table size in bits (2^n, 1 <= n <= 23)");
34
35static unsigned int hfi1_max_pds = 0xFFFF;
36module_param_named(max_pds, hfi1_max_pds, uint, S_IRUGO);
37MODULE_PARM_DESC(max_pds,
38 "Maximum number of protection domains to support");
39
40static unsigned int hfi1_max_ahs = 0xFFFF;
41module_param_named(max_ahs, hfi1_max_ahs, uint, S_IRUGO);
42MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
43
Jianxin Xiongf6aa78352016-09-25 07:41:18 -070044unsigned int hfi1_max_cqes = 0x2FFFFF;
Mike Marciniszyn77241052015-07-30 15:17:43 -040045module_param_named(max_cqes, hfi1_max_cqes, uint, S_IRUGO);
46MODULE_PARM_DESC(max_cqes,
47 "Maximum number of completion queue entries to support");
48
49unsigned int hfi1_max_cqs = 0x1FFFF;
50module_param_named(max_cqs, hfi1_max_cqs, uint, S_IRUGO);
51MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
52
53unsigned int hfi1_max_qp_wrs = 0x3FFF;
54module_param_named(max_qp_wrs, hfi1_max_qp_wrs, uint, S_IRUGO);
55MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
56
Jianxin Xiongf6aa78352016-09-25 07:41:18 -070057unsigned int hfi1_max_qps = 32768;
Mike Marciniszyn77241052015-07-30 15:17:43 -040058module_param_named(max_qps, hfi1_max_qps, uint, S_IRUGO);
59MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
60
61unsigned int hfi1_max_sges = 0x60;
62module_param_named(max_sges, hfi1_max_sges, uint, S_IRUGO);
63MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
64
65unsigned int hfi1_max_mcast_grps = 16384;
66module_param_named(max_mcast_grps, hfi1_max_mcast_grps, uint, S_IRUGO);
67MODULE_PARM_DESC(max_mcast_grps,
68 "Maximum number of multicast groups to support");
69
70unsigned int hfi1_max_mcast_qp_attached = 16;
71module_param_named(max_mcast_qp_attached, hfi1_max_mcast_qp_attached,
72 uint, S_IRUGO);
73MODULE_PARM_DESC(max_mcast_qp_attached,
74 "Maximum number of attached QPs to support");
75
76unsigned int hfi1_max_srqs = 1024;
77module_param_named(max_srqs, hfi1_max_srqs, uint, S_IRUGO);
78MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
79
80unsigned int hfi1_max_srq_sges = 128;
81module_param_named(max_srq_sges, hfi1_max_srq_sges, uint, S_IRUGO);
82MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
83
84unsigned int hfi1_max_srq_wrs = 0x1FFFF;
85module_param_named(max_srq_wrs, hfi1_max_srq_wrs, uint, S_IRUGO);
86MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
87
Mike Marciniszynd0e859c2016-03-07 11:35:46 -080088unsigned short piothreshold = 256;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -080089module_param(piothreshold, ushort, S_IRUGO);
90MODULE_PARM_DESC(piothreshold, "size used to determine sdma vs. pio");
91
Dean Luick528ee9f2016-03-05 08:50:43 -080092static unsigned int sge_copy_mode;
93module_param(sge_copy_mode, uint, S_IRUGO);
94MODULE_PARM_DESC(sge_copy_mode,
95 "Verbs copy mode: 0 use memcpy, 1 use cacheless copy, 2 adapt based on WSS");
96
Mike Marciniszyn77241052015-07-30 15:17:43 -040097static void verbs_sdma_complete(
98 struct sdma_txreq *cookie,
Mike Marciniszyna545f532016-02-14 12:45:53 -080099 int status);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400100
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800101static int pio_wait(struct rvt_qp *qp,
102 struct send_context *sc,
103 struct hfi1_pkt_state *ps,
104 u32 flag);
105
Jubin John64ffd862015-10-26 10:28:47 -0400106/* Length of buffer to create verbs txreq cache name */
107#define TXREQ_NAME_LEN 24
108
Brian Welty019f1182018-09-26 10:44:33 -0700109static uint wss_threshold = 80;
Dean Luick528ee9f2016-03-05 08:50:43 -0800110module_param(wss_threshold, uint, S_IRUGO);
111MODULE_PARM_DESC(wss_threshold, "Percentage (1-100) of LLC to use as a threshold for a cacheless copy");
112static uint wss_clean_period = 256;
113module_param(wss_clean_period, uint, S_IRUGO);
114MODULE_PARM_DESC(wss_clean_period, "Count of verbs copies before an entry in the page copy table is cleaned");
115
Mike Marciniszyn77241052015-07-30 15:17:43 -0400116/*
Mike Marciniszyn43a474a2017-03-20 17:25:04 -0700117 * Translate ib_wr_opcode into ib_wc_opcode.
118 */
119const enum ib_wc_opcode ib_hfi1_wc_opcode[] = {
120 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
Kaike Wan3c6cb202019-01-23 21:51:39 -0800121 [IB_WR_TID_RDMA_WRITE] = IB_WC_RDMA_WRITE,
Mike Marciniszyn43a474a2017-03-20 17:25:04 -0700122 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
123 [IB_WR_SEND] = IB_WC_SEND,
124 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
125 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
Kaike Wan24b11922019-01-23 19:32:09 -0800126 [IB_WR_TID_RDMA_READ] = IB_WC_RDMA_READ,
Mike Marciniszyn43a474a2017-03-20 17:25:04 -0700127 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
128 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD,
129 [IB_WR_SEND_WITH_INV] = IB_WC_SEND,
130 [IB_WR_LOCAL_INV] = IB_WC_LOCAL_INV,
131 [IB_WR_REG_MR] = IB_WC_REG_MR
132};
133
134/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400135 * Length of header by opcode, 0 --> not supported
136 */
137const u8 hdr_len_by_opcode[256] = {
138 /* RC */
139 [IB_OPCODE_RC_SEND_FIRST] = 12 + 8,
140 [IB_OPCODE_RC_SEND_MIDDLE] = 12 + 8,
141 [IB_OPCODE_RC_SEND_LAST] = 12 + 8,
142 [IB_OPCODE_RC_SEND_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
143 [IB_OPCODE_RC_SEND_ONLY] = 12 + 8,
144 [IB_OPCODE_RC_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 4,
145 [IB_OPCODE_RC_RDMA_WRITE_FIRST] = 12 + 8 + 16,
146 [IB_OPCODE_RC_RDMA_WRITE_MIDDLE] = 12 + 8,
147 [IB_OPCODE_RC_RDMA_WRITE_LAST] = 12 + 8,
148 [IB_OPCODE_RC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
149 [IB_OPCODE_RC_RDMA_WRITE_ONLY] = 12 + 8 + 16,
150 [IB_OPCODE_RC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = 12 + 8 + 20,
151 [IB_OPCODE_RC_RDMA_READ_REQUEST] = 12 + 8 + 16,
152 [IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST] = 12 + 8 + 4,
153 [IB_OPCODE_RC_RDMA_READ_RESPONSE_MIDDLE] = 12 + 8,
154 [IB_OPCODE_RC_RDMA_READ_RESPONSE_LAST] = 12 + 8 + 4,
155 [IB_OPCODE_RC_RDMA_READ_RESPONSE_ONLY] = 12 + 8 + 4,
156 [IB_OPCODE_RC_ACKNOWLEDGE] = 12 + 8 + 4,
Mike Marciniszyn37aab622016-09-30 20:11:15 -0700157 [IB_OPCODE_RC_ATOMIC_ACKNOWLEDGE] = 12 + 8 + 4 + 8,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400158 [IB_OPCODE_RC_COMPARE_SWAP] = 12 + 8 + 28,
159 [IB_OPCODE_RC_FETCH_ADD] = 12 + 8 + 28,
Jianxin Xiongbdd8a982016-05-24 12:50:17 -0700160 [IB_OPCODE_RC_SEND_LAST_WITH_INVALIDATE] = 12 + 8 + 4,
161 [IB_OPCODE_RC_SEND_ONLY_WITH_INVALIDATE] = 12 + 8 + 4,
Kaike Wan22d136d2019-01-24 06:36:34 -0800162 [IB_OPCODE_TID_RDMA_READ_REQ] = 12 + 8 + 36,
163 [IB_OPCODE_TID_RDMA_READ_RESP] = 12 + 8 + 36,
Kaike Wan3c6cb202019-01-23 21:51:39 -0800164 [IB_OPCODE_TID_RDMA_WRITE_REQ] = 12 + 8 + 36,
165 [IB_OPCODE_TID_RDMA_WRITE_RESP] = 12 + 8 + 36,
166 [IB_OPCODE_TID_RDMA_WRITE_DATA] = 12 + 8 + 36,
167 [IB_OPCODE_TID_RDMA_WRITE_DATA_LAST] = 12 + 8 + 36,
168 [IB_OPCODE_TID_RDMA_ACK] = 12 + 8 + 36,
169 [IB_OPCODE_TID_RDMA_RESYNC] = 12 + 8 + 36,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400170 /* UC */
171 [IB_OPCODE_UC_SEND_FIRST] = 12 + 8,
172 [IB_OPCODE_UC_SEND_MIDDLE] = 12 + 8,
173 [IB_OPCODE_UC_SEND_LAST] = 12 + 8,
174 [IB_OPCODE_UC_SEND_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
175 [IB_OPCODE_UC_SEND_ONLY] = 12 + 8,
176 [IB_OPCODE_UC_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 4,
177 [IB_OPCODE_UC_RDMA_WRITE_FIRST] = 12 + 8 + 16,
178 [IB_OPCODE_UC_RDMA_WRITE_MIDDLE] = 12 + 8,
179 [IB_OPCODE_UC_RDMA_WRITE_LAST] = 12 + 8,
180 [IB_OPCODE_UC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = 12 + 8 + 4,
181 [IB_OPCODE_UC_RDMA_WRITE_ONLY] = 12 + 8 + 16,
182 [IB_OPCODE_UC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = 12 + 8 + 20,
183 /* UD */
184 [IB_OPCODE_UD_SEND_ONLY] = 12 + 8 + 8,
185 [IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE] = 12 + 8 + 12
186};
187
188static const opcode_handler opcode_handler_tbl[256] = {
189 /* RC */
190 [IB_OPCODE_RC_SEND_FIRST] = &hfi1_rc_rcv,
191 [IB_OPCODE_RC_SEND_MIDDLE] = &hfi1_rc_rcv,
192 [IB_OPCODE_RC_SEND_LAST] = &hfi1_rc_rcv,
193 [IB_OPCODE_RC_SEND_LAST_WITH_IMMEDIATE] = &hfi1_rc_rcv,
194 [IB_OPCODE_RC_SEND_ONLY] = &hfi1_rc_rcv,
195 [IB_OPCODE_RC_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_rc_rcv,
196 [IB_OPCODE_RC_RDMA_WRITE_FIRST] = &hfi1_rc_rcv,
197 [IB_OPCODE_RC_RDMA_WRITE_MIDDLE] = &hfi1_rc_rcv,
198 [IB_OPCODE_RC_RDMA_WRITE_LAST] = &hfi1_rc_rcv,
199 [IB_OPCODE_RC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = &hfi1_rc_rcv,
200 [IB_OPCODE_RC_RDMA_WRITE_ONLY] = &hfi1_rc_rcv,
201 [IB_OPCODE_RC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = &hfi1_rc_rcv,
202 [IB_OPCODE_RC_RDMA_READ_REQUEST] = &hfi1_rc_rcv,
203 [IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST] = &hfi1_rc_rcv,
204 [IB_OPCODE_RC_RDMA_READ_RESPONSE_MIDDLE] = &hfi1_rc_rcv,
205 [IB_OPCODE_RC_RDMA_READ_RESPONSE_LAST] = &hfi1_rc_rcv,
206 [IB_OPCODE_RC_RDMA_READ_RESPONSE_ONLY] = &hfi1_rc_rcv,
207 [IB_OPCODE_RC_ACKNOWLEDGE] = &hfi1_rc_rcv,
208 [IB_OPCODE_RC_ATOMIC_ACKNOWLEDGE] = &hfi1_rc_rcv,
209 [IB_OPCODE_RC_COMPARE_SWAP] = &hfi1_rc_rcv,
210 [IB_OPCODE_RC_FETCH_ADD] = &hfi1_rc_rcv,
Jianxin Xionga2df0c82016-07-25 13:38:31 -0700211 [IB_OPCODE_RC_SEND_LAST_WITH_INVALIDATE] = &hfi1_rc_rcv,
212 [IB_OPCODE_RC_SEND_ONLY_WITH_INVALIDATE] = &hfi1_rc_rcv,
Kaike Wan22d136d2019-01-24 06:36:34 -0800213
214 /* TID RDMA has separate handlers for different opcodes.*/
Kaike Wan3c6cb202019-01-23 21:51:39 -0800215 [IB_OPCODE_TID_RDMA_WRITE_REQ] = &hfi1_rc_rcv_tid_rdma_write_req,
216 [IB_OPCODE_TID_RDMA_WRITE_RESP] = &hfi1_rc_rcv_tid_rdma_write_resp,
217 [IB_OPCODE_TID_RDMA_WRITE_DATA] = &hfi1_rc_rcv_tid_rdma_write_data,
218 [IB_OPCODE_TID_RDMA_WRITE_DATA_LAST] = &hfi1_rc_rcv_tid_rdma_write_data,
Kaike Wan22d136d2019-01-24 06:36:34 -0800219 [IB_OPCODE_TID_RDMA_READ_REQ] = &hfi1_rc_rcv_tid_rdma_read_req,
220 [IB_OPCODE_TID_RDMA_READ_RESP] = &hfi1_rc_rcv_tid_rdma_read_resp,
Kaike Wan3c6cb202019-01-23 21:51:39 -0800221 [IB_OPCODE_TID_RDMA_RESYNC] = &hfi1_rc_rcv_tid_rdma_resync,
222 [IB_OPCODE_TID_RDMA_ACK] = &hfi1_rc_rcv_tid_rdma_ack,
Kaike Wan22d136d2019-01-24 06:36:34 -0800223
Mike Marciniszyn77241052015-07-30 15:17:43 -0400224 /* UC */
225 [IB_OPCODE_UC_SEND_FIRST] = &hfi1_uc_rcv,
226 [IB_OPCODE_UC_SEND_MIDDLE] = &hfi1_uc_rcv,
227 [IB_OPCODE_UC_SEND_LAST] = &hfi1_uc_rcv,
228 [IB_OPCODE_UC_SEND_LAST_WITH_IMMEDIATE] = &hfi1_uc_rcv,
229 [IB_OPCODE_UC_SEND_ONLY] = &hfi1_uc_rcv,
230 [IB_OPCODE_UC_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_uc_rcv,
231 [IB_OPCODE_UC_RDMA_WRITE_FIRST] = &hfi1_uc_rcv,
232 [IB_OPCODE_UC_RDMA_WRITE_MIDDLE] = &hfi1_uc_rcv,
233 [IB_OPCODE_UC_RDMA_WRITE_LAST] = &hfi1_uc_rcv,
234 [IB_OPCODE_UC_RDMA_WRITE_LAST_WITH_IMMEDIATE] = &hfi1_uc_rcv,
235 [IB_OPCODE_UC_RDMA_WRITE_ONLY] = &hfi1_uc_rcv,
236 [IB_OPCODE_UC_RDMA_WRITE_ONLY_WITH_IMMEDIATE] = &hfi1_uc_rcv,
237 /* UD */
238 [IB_OPCODE_UD_SEND_ONLY] = &hfi1_ud_rcv,
239 [IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE] = &hfi1_ud_rcv,
240 /* CNP */
241 [IB_OPCODE_CNP] = &hfi1_cnp_rcv
242};
243
Mike Marciniszynb374e062016-09-25 07:40:58 -0700244#define OPMASK 0x1f
245
246static const u32 pio_opmask[BIT(3)] = {
247 /* RC */
248 [IB_OPCODE_RC >> 5] =
249 BIT(RC_OP(SEND_ONLY) & OPMASK) |
250 BIT(RC_OP(SEND_ONLY_WITH_IMMEDIATE) & OPMASK) |
251 BIT(RC_OP(RDMA_WRITE_ONLY) & OPMASK) |
252 BIT(RC_OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE) & OPMASK) |
253 BIT(RC_OP(RDMA_READ_REQUEST) & OPMASK) |
254 BIT(RC_OP(ACKNOWLEDGE) & OPMASK) |
255 BIT(RC_OP(ATOMIC_ACKNOWLEDGE) & OPMASK) |
256 BIT(RC_OP(COMPARE_SWAP) & OPMASK) |
257 BIT(RC_OP(FETCH_ADD) & OPMASK),
258 /* UC */
259 [IB_OPCODE_UC >> 5] =
260 BIT(UC_OP(SEND_ONLY) & OPMASK) |
261 BIT(UC_OP(SEND_ONLY_WITH_IMMEDIATE) & OPMASK) |
262 BIT(UC_OP(RDMA_WRITE_ONLY) & OPMASK) |
263 BIT(UC_OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE) & OPMASK),
264};
265
Mike Marciniszyn77241052015-07-30 15:17:43 -0400266/*
267 * System image GUID.
268 */
269__be64 ib_hfi1_sys_image_guid;
270
Mike Marciniszyn77241052015-07-30 15:17:43 -0400271/*
272 * Make sure the QP is ready and able to accept the given opcode.
273 */
Don Hiatt90397462017-05-12 09:20:20 -0700274static inline opcode_handler qp_ok(struct hfi1_packet *packet)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400275{
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800276 if (!(ib_rvt_state_ops[packet->qp->state] & RVT_PROCESS_RECV_OK))
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700277 return NULL;
Don Hiatt90397462017-05-12 09:20:20 -0700278 if (((packet->opcode & RVT_OPCODE_QP_MASK) ==
279 packet->qp->allowed_ops) ||
280 (packet->opcode == IB_OPCODE_CNP))
281 return opcode_handler_tbl[packet->opcode];
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700282
283 return NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400284}
285
Don Hiatt243d9f42017-03-20 17:26:20 -0700286static u64 hfi1_fault_tx(struct rvt_qp *qp, u8 opcode, u64 pbc)
287{
288#ifdef CONFIG_FAULT_INJECTION
Kaike Wan6b6cf932019-01-23 19:30:51 -0800289 if ((opcode & IB_OPCODE_MSP) == IB_OPCODE_MSP) {
Don Hiatt243d9f42017-03-20 17:26:20 -0700290 /*
291 * In order to drop non-IB traffic we
292 * set PbcInsertHrc to NONE (0x2).
293 * The packet will still be delivered
294 * to the receiving node but a
295 * KHdrHCRCErr (KDETH packet with a bad
296 * HCRC) will be triggered and the
297 * packet will not be delivered to the
298 * correct context.
299 */
Kaike Wan6b6cf932019-01-23 19:30:51 -0800300 pbc &= ~PBC_INSERT_HCRC_SMASK;
Don Hiatt243d9f42017-03-20 17:26:20 -0700301 pbc |= (u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT;
Kaike Wan6b6cf932019-01-23 19:30:51 -0800302 } else {
Don Hiatt243d9f42017-03-20 17:26:20 -0700303 /*
304 * In order to drop regular verbs
305 * traffic we set the PbcTestEbp
306 * flag. The packet will still be
307 * delivered to the receiving node but
308 * a 'late ebp error' will be
309 * triggered and will be dropped.
310 */
311 pbc |= PBC_TEST_EBP;
Kaike Wan6b6cf932019-01-23 19:30:51 -0800312 }
Don Hiatt243d9f42017-03-20 17:26:20 -0700313#endif
314 return pbc;
315}
316
Kaike Wan22d136d2019-01-24 06:36:34 -0800317static opcode_handler tid_qp_ok(int opcode, struct hfi1_packet *packet)
318{
319 if (packet->qp->ibqp.qp_type != IB_QPT_RC ||
320 !(ib_rvt_state_ops[packet->qp->state] & RVT_PROCESS_RECV_OK))
321 return NULL;
322 if ((opcode & RVT_OPCODE_QP_MASK) == IB_OPCODE_TID_RDMA)
323 return opcode_handler_tbl[opcode];
324 return NULL;
325}
326
327void hfi1_kdeth_eager_rcv(struct hfi1_packet *packet)
328{
329 struct hfi1_ctxtdata *rcd = packet->rcd;
330 struct ib_header *hdr = packet->hdr;
331 u32 tlen = packet->tlen;
332 struct hfi1_pportdata *ppd = rcd->ppd;
333 struct hfi1_ibport *ibp = &ppd->ibport_data;
334 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
335 opcode_handler opcode_handler;
336 unsigned long flags;
337 u32 qp_num;
338 int lnh;
339 u8 opcode;
340
341 /* DW == LRH (2) + BTH (3) + KDETH (9) + CRC (1) */
342 if (unlikely(tlen < 15 * sizeof(u32)))
343 goto drop;
344
345 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
346 if (lnh != HFI1_LRH_BTH)
347 goto drop;
348
349 packet->ohdr = &hdr->u.oth;
350 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
351
352 opcode = (be32_to_cpu(packet->ohdr->bth[0]) >> 24);
353 inc_opstats(tlen, &rcd->opstats->stats[opcode]);
354
355 /* verbs_qp can be picked up from any tid_rdma header struct */
356 qp_num = be32_to_cpu(packet->ohdr->u.tid_rdma.r_req.verbs_qp) &
357 RVT_QPN_MASK;
358
359 rcu_read_lock();
360 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
361 if (!packet->qp)
362 goto drop_rcu;
363 spin_lock_irqsave(&packet->qp->r_lock, flags);
364 opcode_handler = tid_qp_ok(opcode, packet);
365 if (likely(opcode_handler))
366 opcode_handler(packet);
367 else
368 goto drop_unlock;
369 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
370 rcu_read_unlock();
371
372 return;
373drop_unlock:
374 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
375drop_rcu:
376 rcu_read_unlock();
377drop:
378 ibp->rvp.n_pkt_drops++;
379}
380
381void hfi1_kdeth_expected_rcv(struct hfi1_packet *packet)
382{
383 struct hfi1_ctxtdata *rcd = packet->rcd;
384 struct ib_header *hdr = packet->hdr;
385 u32 tlen = packet->tlen;
386 struct hfi1_pportdata *ppd = rcd->ppd;
387 struct hfi1_ibport *ibp = &ppd->ibport_data;
388 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
389 opcode_handler opcode_handler;
390 unsigned long flags;
391 u32 qp_num;
392 int lnh;
393 u8 opcode;
394
395 /* DW == LRH (2) + BTH (3) + KDETH (9) + CRC (1) */
396 if (unlikely(tlen < 15 * sizeof(u32)))
397 goto drop;
398
399 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
400 if (lnh != HFI1_LRH_BTH)
401 goto drop;
402
403 packet->ohdr = &hdr->u.oth;
404 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
405
406 opcode = (be32_to_cpu(packet->ohdr->bth[0]) >> 24);
407 inc_opstats(tlen, &rcd->opstats->stats[opcode]);
408
409 /* verbs_qp can be picked up from any tid_rdma header struct */
410 qp_num = be32_to_cpu(packet->ohdr->u.tid_rdma.r_rsp.verbs_qp) &
411 RVT_QPN_MASK;
412
413 rcu_read_lock();
414 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
415 if (!packet->qp)
416 goto drop_rcu;
417 spin_lock_irqsave(&packet->qp->r_lock, flags);
418 opcode_handler = tid_qp_ok(opcode, packet);
419 if (likely(opcode_handler))
420 opcode_handler(packet);
421 else
422 goto drop_unlock;
423 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
424 rcu_read_unlock();
425
426 return;
427drop_unlock:
428 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
429drop_rcu:
430 rcu_read_unlock();
431drop:
432 ibp->rvp.n_pkt_drops++;
433}
434
Don Hiatt5786adf32017-08-04 13:54:10 -0700435static int hfi1_do_pkey_check(struct hfi1_packet *packet)
436{
437 struct hfi1_ctxtdata *rcd = packet->rcd;
438 struct hfi1_pportdata *ppd = rcd->ppd;
439 struct hfi1_16b_header *hdr = packet->hdr;
440 u16 pkey;
441
442 /* Pkey check needed only for bypass packets */
443 if (packet->etype != RHF_RCV_TYPE_BYPASS)
444 return 0;
445
446 /* Perform pkey check */
447 pkey = hfi1_16B_get_pkey(hdr);
448 return ingress_pkey_check(ppd, pkey, packet->sc,
449 packet->qp->s_pkey_index,
450 packet->slid, true);
451}
452
Don Hiatt90397462017-05-12 09:20:20 -0700453static inline void hfi1_handle_packet(struct hfi1_packet *packet,
454 bool is_mcast)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400455{
Don Hiatt90397462017-05-12 09:20:20 -0700456 u32 qp_num;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400457 struct hfi1_ctxtdata *rcd = packet->rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400458 struct hfi1_pportdata *ppd = rcd->ppd;
Sebastian Sanchezf3e862c2017-02-08 05:26:25 -0800459 struct hfi1_ibport *ibp = rcd_to_iport(rcd);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800460 struct rvt_dev_info *rdi = &ppd->dd->verbs_dev.rdi;
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700461 opcode_handler packet_handler;
Dean Luickb77d7132015-10-26 10:28:43 -0400462 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400463
Don Hiatt90397462017-05-12 09:20:20 -0700464 inc_opstats(packet->tlen, &rcd->opstats->stats[packet->opcode]);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400465
Don Hiatt90397462017-05-12 09:20:20 -0700466 if (unlikely(is_mcast)) {
Dennis Dalessandro0facc5a2016-01-19 14:43:39 -0800467 struct rvt_mcast *mcast;
468 struct rvt_mcast_qp *p;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400469
Don Hiatt90397462017-05-12 09:20:20 -0700470 if (!packet->grh)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400471 goto drop;
Don Hiatt90397462017-05-12 09:20:20 -0700472 mcast = rvt_mcast_find(&ibp->rvp,
473 &packet->grh->dgid,
Don Hiatt72c07e22017-08-04 13:53:58 -0700474 opa_get_lid(packet->dlid, 9B));
Jubin Johnd125a6c2016-02-14 20:19:49 -0800475 if (!mcast)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400476 goto drop;
Dennis Dalessandro817a68a2020-02-25 14:54:45 -0500477 rcu_read_lock();
Mike Marciniszyn77241052015-07-30 15:17:43 -0400478 list_for_each_entry_rcu(p, &mcast->qp_list, list) {
479 packet->qp = p->qp;
Don Hiatt5786adf32017-08-04 13:54:10 -0700480 if (hfi1_do_pkey_check(packet))
Dennis Dalessandro817a68a2020-02-25 14:54:45 -0500481 goto unlock_drop;
Dean Luickb77d7132015-10-26 10:28:43 -0400482 spin_lock_irqsave(&packet->qp->r_lock, flags);
Don Hiatt90397462017-05-12 09:20:20 -0700483 packet_handler = qp_ok(packet);
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700484 if (likely(packet_handler))
485 packet_handler(packet);
486 else
487 ibp->rvp.n_pkt_drops++;
Dean Luickb77d7132015-10-26 10:28:43 -0400488 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400489 }
Dennis Dalessandro817a68a2020-02-25 14:54:45 -0500490 rcu_read_unlock();
Mike Marciniszyn77241052015-07-30 15:17:43 -0400491 /*
Dennis Dalessandro0facc5a2016-01-19 14:43:39 -0800492 * Notify rvt_multicast_detach() if it is waiting for us
Mike Marciniszyn77241052015-07-30 15:17:43 -0400493 * to finish.
494 */
495 if (atomic_dec_return(&mcast->refcount) <= 1)
496 wake_up(&mcast->wait);
497 } else {
Don Hiatt90397462017-05-12 09:20:20 -0700498 /* Get the destination QP number. */
Don Hiatt81cd3892018-05-15 18:28:15 -0700499 if (packet->etype == RHF_RCV_TYPE_BYPASS &&
500 hfi1_16B_get_l4(packet->hdr) == OPA_16B_L4_FM)
501 qp_num = hfi1_16B_get_dest_qpn(packet->mgmt);
502 else
503 qp_num = ib_bth_get_qpn(packet->ohdr);
504
Mike Marciniszyn77241052015-07-30 15:17:43 -0400505 rcu_read_lock();
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800506 packet->qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
Don Hiatt5786adf32017-08-04 13:54:10 -0700507 if (!packet->qp)
508 goto unlock_drop;
509
510 if (hfi1_do_pkey_check(packet))
511 goto unlock_drop;
512
Dean Luickb77d7132015-10-26 10:28:43 -0400513 spin_lock_irqsave(&packet->qp->r_lock, flags);
Don Hiatt90397462017-05-12 09:20:20 -0700514 packet_handler = qp_ok(packet);
Jakub Pawlak71e68e32016-07-01 16:02:02 -0700515 if (likely(packet_handler))
516 packet_handler(packet);
517 else
518 ibp->rvp.n_pkt_drops++;
Dean Luickb77d7132015-10-26 10:28:43 -0400519 spin_unlock_irqrestore(&packet->qp->r_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400520 rcu_read_unlock();
521 }
522 return;
Don Hiatt5786adf32017-08-04 13:54:10 -0700523unlock_drop:
524 rcu_read_unlock();
Mike Marciniszyn77241052015-07-30 15:17:43 -0400525drop:
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800526 ibp->rvp.n_pkt_drops++;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400527}
528
Don Hiatt90397462017-05-12 09:20:20 -0700529/**
530 * hfi1_ib_rcv - process an incoming packet
531 * @packet: data packet information
532 *
533 * This is called to process an incoming packet at interrupt level.
534 */
535void hfi1_ib_rcv(struct hfi1_packet *packet)
536{
537 struct hfi1_ctxtdata *rcd = packet->rcd;
Don Hiatt90397462017-05-12 09:20:20 -0700538
Don Hiatt72c07e22017-08-04 13:53:58 -0700539 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf)));
540 hfi1_handle_packet(packet, hfi1_check_mcast(packet->dlid));
541}
Don Hiatt90397462017-05-12 09:20:20 -0700542
Don Hiatt72c07e22017-08-04 13:53:58 -0700543void hfi1_16B_rcv(struct hfi1_packet *packet)
544{
545 struct hfi1_ctxtdata *rcd = packet->rcd;
546
547 trace_input_ibhdr(rcd->dd, packet, false);
548 hfi1_handle_packet(packet, hfi1_check_mcast(packet->dlid));
Don Hiatt90397462017-05-12 09:20:20 -0700549}
550
Mike Marciniszyn77241052015-07-30 15:17:43 -0400551/*
552 * This is called from a timer to check for QPs
553 * which need kernel memory in order to send a packet.
554 */
Kees Cook80641352017-10-16 15:51:54 -0700555static void mem_timer(struct timer_list *t)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400556{
Kees Cook80641352017-10-16 15:51:54 -0700557 struct hfi1_ibdev *dev = from_timer(dev, t, mem_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400558 struct list_head *list = &dev->memwait;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800559 struct rvt_qp *qp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400560 struct iowait *wait;
561 unsigned long flags;
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800562 struct hfi1_qp_priv *priv;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400563
564 write_seqlock_irqsave(&dev->iowait_lock, flags);
565 if (!list_empty(list)) {
566 wait = list_first_entry(list, struct iowait, list);
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800567 qp = iowait_to_qp(wait);
568 priv = qp->priv;
569 list_del_init(&priv->s_iowait.list);
Mike Marciniszyn4e045572016-10-10 06:14:28 -0700570 priv->s_iowait.lock = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400571 /* refcount held until actual wake up */
572 if (!list_empty(list))
573 mod_timer(&dev->mem_timer, jiffies + 1);
574 }
575 write_sequnlock_irqrestore(&dev->iowait_lock, flags);
576
577 if (qp)
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800578 hfi1_qp_wakeup(qp, RVT_S_WAIT_KMEM);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400579}
580
Mike Marciniszyn77241052015-07-30 15:17:43 -0400581/*
582 * This is called with progress side lock held.
583 */
584/* New API */
585static void verbs_sdma_complete(
586 struct sdma_txreq *cookie,
Mike Marciniszyna545f532016-02-14 12:45:53 -0800587 int status)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400588{
589 struct verbs_txreq *tx =
590 container_of(cookie, struct verbs_txreq, txreq);
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800591 struct rvt_qp *qp = tx->qp;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400592
593 spin_lock(&qp->s_lock);
Jubin Johne4909742016-02-14 20:22:00 -0800594 if (tx->wqe) {
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -0700595 rvt_send_complete(qp, tx->wqe, IB_WC_SUCCESS);
Jubin Johne4909742016-02-14 20:22:00 -0800596 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
Don Hiatt30e07412017-08-04 13:54:04 -0700597 struct hfi1_opa_header *hdr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400598
599 hdr = &tx->phdr.hdr;
Mike Marciniszyn4bb02e92019-06-14 12:32:44 -0400600 if (unlikely(status == SDMA_TXREQ_S_ABORTED))
601 hfi1_rc_verbs_aborted(qp, hdr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400602 hfi1_rc_send_complete(qp, hdr);
603 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400604 spin_unlock(&qp->s_lock);
605
606 hfi1_put_txreq(tx);
607}
608
Kaike Wan838b6fd2019-01-23 19:30:07 -0800609void hfi1_wait_kmem(struct rvt_qp *qp)
610{
611 struct hfi1_qp_priv *priv = qp->priv;
612 struct ib_qp *ibqp = &qp->ibqp;
613 struct ib_device *ibdev = ibqp->device;
614 struct hfi1_ibdev *dev = to_idev(ibdev);
615
616 if (list_empty(&priv->s_iowait.list)) {
617 if (list_empty(&dev->memwait))
618 mod_timer(&dev->mem_timer, jiffies + 1);
619 qp->s_flags |= RVT_S_WAIT_KMEM;
620 list_add_tail(&priv->s_iowait.list, &dev->memwait);
621 priv->s_iowait.lock = &dev->iowait_lock;
622 trace_hfi1_qpsleep(qp, RVT_S_WAIT_KMEM);
623 rvt_get_qp(qp);
624 }
625}
626
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800627static int wait_kmem(struct hfi1_ibdev *dev,
628 struct rvt_qp *qp,
629 struct hfi1_pkt_state *ps)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400630{
631 unsigned long flags;
632 int ret = 0;
633
634 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800635 if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400636 write_seqlock(&dev->iowait_lock);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800637 list_add_tail(&ps->s_txreq->txreq.list,
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700638 &ps->wait->tx_head);
Kaike Wan838b6fd2019-01-23 19:30:07 -0800639 hfi1_wait_kmem(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400640 write_sequnlock(&dev->iowait_lock);
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700641 hfi1_qp_unbusy(qp, ps->wait);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400642 ret = -EBUSY;
643 }
644 spin_unlock_irqrestore(&qp->s_lock, flags);
645
646 return ret;
647}
648
649/*
650 * This routine calls txadds for each sg entry.
651 *
652 * Add failures will revert the sge cursor
653 */
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800654static noinline int build_verbs_ulp_payload(
Mike Marciniszyn77241052015-07-30 15:17:43 -0400655 struct sdma_engine *sde,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400656 u32 length,
657 struct verbs_txreq *tx)
658{
Mitko Haralanovb777f152016-12-07 19:33:27 -0800659 struct rvt_sge_state *ss = tx->ss;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800660 struct rvt_sge *sg_list = ss->sg_list;
661 struct rvt_sge sge = ss->sge;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400662 u8 num_sge = ss->num_sge;
663 u32 len;
664 int ret = 0;
665
666 while (length) {
Michael J. Ruhl87fc34b2019-01-23 19:08:19 -0800667 len = rvt_get_sge_length(&ss->sge, length);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400668 WARN_ON_ONCE(len == 0);
669 ret = sdma_txadd_kvaddr(
670 sde->dd,
671 &tx->txreq,
672 ss->sge.vaddr,
673 len);
674 if (ret)
675 goto bail_txadd;
Brian Welty1198fce2017-02-08 05:27:37 -0800676 rvt_update_sge(ss, len, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400677 length -= len;
678 }
679 return ret;
680bail_txadd:
681 /* unwind cursor */
682 ss->sge = sge;
683 ss->num_sge = num_sge;
684 ss->sg_list = sg_list;
685 return ret;
686}
687
Mike Marciniszyn1b311f82017-10-23 06:06:08 -0700688/**
689 * update_tx_opstats - record stats by opcode
Lee Jonescd5962d2021-01-26 12:47:31 +0000690 * @qp: the qp
Mike Marciniszyn1b311f82017-10-23 06:06:08 -0700691 * @ps: transmit packet state
692 * @plen: the plen in dwords
693 *
694 * This is a routine to record the tx opstats after a
695 * packet has been presented to the egress mechanism.
696 */
697static void update_tx_opstats(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
698 u32 plen)
699{
700#ifdef CONFIG_DEBUG_FS
701 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
702 struct hfi1_opcode_stats_perctx *s = get_cpu_ptr(dd->tx_opstats);
703
704 inc_opstats(plen * 4, &s->stats[ps->opcode]);
705 put_cpu_ptr(s);
706#endif
707}
708
Mike Marciniszyn77241052015-07-30 15:17:43 -0400709/*
710 * Build the number of DMA descriptors needed to send length bytes of data.
711 *
712 * NOTE: DMA mapping is held in the tx until completed in the ring or
713 * the tx desc is freed without having been submitted to the ring
714 *
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800715 * This routine ensures all the helper routine calls succeed.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400716 */
717/* New API */
718static int build_verbs_tx_desc(
719 struct sdma_engine *sde,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400720 u32 length,
721 struct verbs_txreq *tx,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700722 struct hfi1_ahg_info *ahg_info,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400723 u64 pbc)
724{
725 int ret = 0;
Don Hiattd4d602e2016-07-25 13:40:22 -0700726 struct hfi1_sdma_header *phdr = &tx->phdr;
Mitko Haralanov96362582018-02-01 10:46:07 -0800727 u16 hdrbytes = (tx->hdr_dwords + sizeof(pbc) / 4) << 2;
Don Hiatt566d53a2017-08-04 13:54:47 -0700728 u8 extra_bytes = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400729
Don Hiatt566d53a2017-08-04 13:54:47 -0700730 if (tx->phdr.hdr.hdr_type) {
731 /*
732 * hdrbytes accounts for PBC. Need to subtract 8 bytes
733 * before calculating padding.
734 */
735 extra_bytes = hfi1_get_16b_padding(hdrbytes - 8, length) +
736 (SIZE_OF_CRC << 2) + SIZE_OF_LT;
Don Hiatt566d53a2017-08-04 13:54:47 -0700737 }
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700738 if (!ahg_info->ahgcount) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400739 ret = sdma_txinit_ahg(
740 &tx->txreq,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700741 ahg_info->tx_flags,
Don Hiatt566d53a2017-08-04 13:54:47 -0700742 hdrbytes + length +
743 extra_bytes,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700744 ahg_info->ahgidx,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400745 0,
746 NULL,
747 0,
748 verbs_sdma_complete);
749 if (ret)
750 goto bail_txadd;
751 phdr->pbc = cpu_to_le64(pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400752 ret = sdma_txadd_kvaddr(
753 sde->dd,
754 &tx->txreq,
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800755 phdr,
756 hdrbytes);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400757 if (ret)
758 goto bail_txadd;
759 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400760 ret = sdma_txinit_ahg(
761 &tx->txreq,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700762 ahg_info->tx_flags,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400763 length,
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700764 ahg_info->ahgidx,
765 ahg_info->ahgcount,
766 ahg_info->ahgdesc,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400767 hdrbytes,
768 verbs_sdma_complete);
769 if (ret)
770 goto bail_txadd;
771 }
Mitko Haralanovb777f152016-12-07 19:33:27 -0800772 /* add the ulp payload - if any. tx->ss can be NULL for acks */
Don Hiatt566d53a2017-08-04 13:54:47 -0700773 if (tx->ss) {
Mitko Haralanovb777f152016-12-07 19:33:27 -0800774 ret = build_verbs_ulp_payload(sde, length, tx);
Don Hiatt566d53a2017-08-04 13:54:47 -0700775 if (ret)
776 goto bail_txadd;
777 }
778
779 /* add icrc, lt byte, and padding to flit */
Don Hiattf8195f32017-10-09 12:38:19 -0700780 if (extra_bytes)
Mike Marciniszyn22bb1362019-10-04 16:49:34 -0400781 ret = sdma_txadd_daddr(sde->dd, &tx->txreq,
782 sde->dd->sdma_pad_phys, extra_bytes);
Don Hiatt566d53a2017-08-04 13:54:47 -0700783
Mike Marciniszyn77241052015-07-30 15:17:43 -0400784bail_txadd:
785 return ret;
786}
787
Kaike Wan6b6cf932019-01-23 19:30:51 -0800788static u64 update_hcrc(u8 opcode, u64 pbc)
789{
790 if ((opcode & IB_OPCODE_TID_RDMA) == IB_OPCODE_TID_RDMA) {
791 pbc &= ~PBC_INSERT_HCRC_SMASK;
792 pbc |= (u64)PBC_IHCRC_LKDETH << PBC_INSERT_HCRC_SHIFT;
793 }
794 return pbc;
795}
796
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800797int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500798 u64 pbc)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400799{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800800 struct hfi1_qp_priv *priv = qp->priv;
Dasaratharaman Chandramoulia9b6b3b2016-07-25 13:40:16 -0700801 struct hfi1_ahg_info *ahg_info = priv->s_ahg;
Mitko Haralanov96362582018-02-01 10:46:07 -0800802 u32 hdrwords = ps->s_txreq->hdr_dwords;
Don Hiatte922ae02016-12-07 19:33:00 -0800803 u32 len = ps->s_txreq->s_cur_size;
Don Hiatt566d53a2017-08-04 13:54:47 -0700804 u32 plen;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500805 struct hfi1_ibdev *dev = ps->dev;
806 struct hfi1_pportdata *ppd = ps->ppd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400807 struct verbs_txreq *tx;
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800808 u8 sc5 = priv->s_sc;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400809 int ret;
Don Hiatt566d53a2017-08-04 13:54:47 -0700810 u32 dwords;
Don Hiatt566d53a2017-08-04 13:54:47 -0700811
812 if (ps->s_txreq->phdr.hdr.hdr_type) {
813 u8 extra_bytes = hfi1_get_16b_padding((hdrwords << 2), len);
814
815 dwords = (len + extra_bytes + (SIZE_OF_CRC << 2) +
816 SIZE_OF_LT) >> 2;
Don Hiatt566d53a2017-08-04 13:54:47 -0700817 } else {
818 dwords = (len + 3) >> 2;
819 }
Mitko Haralanov96362582018-02-01 10:46:07 -0800820 plen = hdrwords + dwords + sizeof(pbc) / 4;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400821
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800822 tx = ps->s_txreq;
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800823 if (!sdma_txreq_built(&tx->txreq)) {
824 if (likely(pbc == 0)) {
825 u32 vl = sc_to_vlt(dd_from_ibdev(qp->ibqp.device), sc5);
Don Hiatt243d9f42017-03-20 17:26:20 -0700826
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800827 /* No vl15 here */
Don Hiatt566d53a2017-08-04 13:54:47 -0700828 /* set PBC_DC_INFO bit (aka SC[4]) in pbc */
829 if (ps->s_txreq->phdr.hdr.hdr_type)
830 pbc |= PBC_PACKET_BYPASS |
831 PBC_INSERT_BYPASS_ICRC;
832 else
833 pbc |= (ib_is_sc5(sc5) << PBC_DC_INFO_SHIFT);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800834
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800835 pbc = create_pbc(ppd,
Don Hiatt243d9f42017-03-20 17:26:20 -0700836 pbc,
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800837 qp->srate_mbps,
838 vl,
839 plen);
Kaike Wan6b6cf932019-01-23 19:30:51 -0800840
Kaike Wanb2590bd2019-07-15 12:45:46 -0400841 if (unlikely(hfi1_dbg_should_fault_tx(qp, ps->opcode)))
842 pbc = hfi1_fault_tx(qp, ps->opcode, pbc);
843 else
844 /* Update HCRC based on packet opcode */
845 pbc = update_hcrc(ps->opcode, pbc);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800846 }
847 tx->wqe = qp->s_wqe;
Mitko Haralanovb777f152016-12-07 19:33:27 -0800848 ret = build_verbs_tx_desc(tx->sde, len, tx, ahg_info, pbc);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800849 if (unlikely(ret))
850 goto bail_build;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400851 }
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700852 ret = sdma_send_txreq(tx->sde, ps->wait, &tx->txreq, ps->pkts_sent);
Mike Marciniszyn5326dfb2016-03-07 11:35:24 -0800853 if (unlikely(ret < 0)) {
854 if (ret == -ECOMM)
855 goto bail_ecomm;
856 return ret;
857 }
Mike Marciniszyn1b311f82017-10-23 06:06:08 -0700858
859 update_tx_opstats(qp, ps, plen);
Mike Marciniszyn1db78ee2016-03-07 11:35:19 -0800860 trace_sdma_output_ibhdr(dd_from_ibdev(qp->ibqp.device),
Don Hiatt228d2af2017-05-12 09:20:08 -0700861 &ps->s_txreq->phdr.hdr, ib_is_sc5(sc5));
Mike Marciniszyn77241052015-07-30 15:17:43 -0400862 return ret;
863
Mike Marciniszyn77241052015-07-30 15:17:43 -0400864bail_ecomm:
865 /* The current one got "sent" */
866 return 0;
867bail_build:
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800868 ret = wait_kmem(dev, qp, ps);
869 if (!ret) {
870 /* free txreq - bad state */
871 hfi1_put_txreq(ps->s_txreq);
872 ps->s_txreq = NULL;
873 }
874 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400875}
876
877/*
878 * If we are now in the error state, return zero to flush the
879 * send work request.
880 */
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800881static int pio_wait(struct rvt_qp *qp,
882 struct send_context *sc,
883 struct hfi1_pkt_state *ps,
884 u32 flag)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400885{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800886 struct hfi1_qp_priv *priv = qp->priv;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400887 struct hfi1_devdata *dd = sc->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400888 unsigned long flags;
889 int ret = 0;
890
891 /*
892 * Note that as soon as want_buffer() is called and
893 * possibly before it returns, sc_piobufavail()
894 * could be called. Therefore, put QP on the I/O wait list before
895 * enabling the PIO avail interrupt.
896 */
897 spin_lock_irqsave(&qp->s_lock, flags);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800898 if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800899 write_seqlock(&sc->waitlock);
Mike Marciniszyn711e1042016-02-14 12:45:18 -0800900 list_add_tail(&ps->s_txreq->txreq.list,
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700901 &ps->wait->tx_head);
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800902 if (list_empty(&priv->s_iowait.list)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400903 struct hfi1_ibdev *dev = &dd->verbs_dev;
904 int was_empty;
905
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800906 dev->n_piowait += !!(flag & RVT_S_WAIT_PIO);
Mike Marciniszyn2e2ba092018-06-04 11:44:02 -0700907 dev->n_piodrain += !!(flag & HFI1_S_WAIT_PIO_DRAIN);
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800908 qp->s_flags |= flag;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400909 was_empty = list_empty(&sc->piowait);
Kaike Wan34025fb2019-01-23 21:52:19 -0800910 iowait_get_priority(&priv->s_iowait);
Kaike Wanbcad2912017-07-24 07:45:37 -0700911 iowait_queue(ps->pkts_sent, &priv->s_iowait,
912 &sc->piowait);
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800913 priv->s_iowait.lock = &sc->waitlock;
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800914 trace_hfi1_qpsleep(qp, RVT_S_WAIT_PIO);
Mike Marciniszyn4d6f85c2016-09-06 04:34:35 -0700915 rvt_get_qp(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400916 /* counting: only call wantpiobuf_intr if first user */
917 if (was_empty)
918 hfi1_sc_wantpiobuf_intr(sc, 1);
919 }
Mike Marciniszyn9aefcabe2018-11-28 10:33:00 -0800920 write_sequnlock(&sc->waitlock);
Dennis Dalessandro5da0fc92018-09-28 07:17:09 -0700921 hfi1_qp_unbusy(qp, ps->wait);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400922 ret = -EBUSY;
923 }
924 spin_unlock_irqrestore(&qp->s_lock, flags);
925 return ret;
926}
927
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800928static void verbs_pio_complete(void *arg, int code)
929{
930 struct rvt_qp *qp = (struct rvt_qp *)arg;
931 struct hfi1_qp_priv *priv = qp->priv;
932
933 if (iowait_pio_dec(&priv->s_iowait))
934 iowait_drain_wakeup(&priv->s_iowait);
935}
936
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800937int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500938 u64 pbc)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400939{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800940 struct hfi1_qp_priv *priv = qp->priv;
Mitko Haralanov96362582018-02-01 10:46:07 -0800941 u32 hdrwords = ps->s_txreq->hdr_dwords;
Mitko Haralanovb777f152016-12-07 19:33:27 -0800942 struct rvt_sge_state *ss = ps->s_txreq->ss;
Don Hiatte922ae02016-12-07 19:33:00 -0800943 u32 len = ps->s_txreq->s_cur_size;
Don Hiatt566d53a2017-08-04 13:54:47 -0700944 u32 dwords;
945 u32 plen;
Dennis Dalessandrod46e5142015-11-11 00:34:37 -0500946 struct hfi1_pportdata *ppd = ps->ppd;
Don Hiatt566d53a2017-08-04 13:54:47 -0700947 u32 *hdr;
Mike Marciniszyn4f8cc5c2016-02-14 12:45:27 -0800948 u8 sc5;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400949 unsigned long flags = 0;
950 struct send_context *sc;
951 struct pio_buf *pbuf;
952 int wc_status = IB_WC_SUCCESS;
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800953 int ret = 0;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800954 pio_release_cb cb = NULL;
Don Hiatt566d53a2017-08-04 13:54:47 -0700955 u8 extra_bytes = 0;
956
957 if (ps->s_txreq->phdr.hdr.hdr_type) {
958 u8 pad_size = hfi1_get_16b_padding((hdrwords << 2), len);
959
960 extra_bytes = pad_size + (SIZE_OF_CRC << 2) + SIZE_OF_LT;
961 dwords = (len + extra_bytes) >> 2;
962 hdr = (u32 *)&ps->s_txreq->phdr.hdr.opah;
Don Hiatt566d53a2017-08-04 13:54:47 -0700963 } else {
964 dwords = (len + 3) >> 2;
965 hdr = (u32 *)&ps->s_txreq->phdr.hdr.ibh;
966 }
Mitko Haralanov96362582018-02-01 10:46:07 -0800967 plen = hdrwords + dwords + sizeof(pbc) / 4;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800968
969 /* only RC/UC use complete */
970 switch (qp->ibqp.qp_type) {
971 case IB_QPT_RC:
972 case IB_QPT_UC:
973 cb = verbs_pio_complete;
974 break;
975 default:
976 break;
977 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400978
979 /* vl15 special case taken care of in ud.c */
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -0800980 sc5 = priv->s_sc;
Mike Marciniszyncef504c2016-03-07 11:35:35 -0800981 sc = ps->s_txreq->psc;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400982
Mike Marciniszyn77241052015-07-30 15:17:43 -0400983 if (likely(pbc == 0)) {
Mike Marciniszyn4f8cc5c2016-02-14 12:45:27 -0800984 u8 vl = sc_to_vlt(dd_from_ibdev(qp->ibqp.device), sc5);
Don Hiatt243d9f42017-03-20 17:26:20 -0700985
Don Hiatt566d53a2017-08-04 13:54:47 -0700986 /* set PBC_DC_INFO bit (aka SC[4]) in pbc */
987 if (ps->s_txreq->phdr.hdr.hdr_type)
988 pbc |= PBC_PACKET_BYPASS | PBC_INSERT_BYPASS_ICRC;
989 else
990 pbc |= (ib_is_sc5(sc5) << PBC_DC_INFO_SHIFT);
Mitko Haralanova74d5302018-05-02 06:43:24 -0700991
Kaike Wanb2590bd2019-07-15 12:45:46 -0400992 pbc = create_pbc(ppd, pbc, qp->srate_mbps, vl, plen);
Mitko Haralanova74d5302018-05-02 06:43:24 -0700993 if (unlikely(hfi1_dbg_should_fault_tx(qp, ps->opcode)))
Don Hiatt566d53a2017-08-04 13:54:47 -0700994 pbc = hfi1_fault_tx(qp, ps->opcode, pbc);
Kaike Wanb2590bd2019-07-15 12:45:46 -0400995 else
996 /* Update HCRC based on packet opcode */
997 pbc = update_hcrc(ps->opcode, pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400998 }
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800999 if (cb)
1000 iowait_pio_inc(&priv->s_iowait);
1001 pbuf = sc_buffer_alloc(sc, plen, cb, qp);
Denis Efremov7b0b6922019-09-25 16:49:40 -07001002 if (IS_ERR_OR_NULL(pbuf)) {
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001003 if (cb)
1004 verbs_pio_complete(qp, 0);
Mike Marciniszyn942a8992019-06-14 12:33:06 -04001005 if (IS_ERR(pbuf)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001006 /*
1007 * If we have filled the PIO buffers to capacity and are
1008 * not in an active state this request is not going to
1009 * go out to so just complete it with an error or else a
1010 * ULP or the core may be stuck waiting.
1011 */
1012 hfi1_cdbg(
1013 PIO,
1014 "alloc failed. state not active, completing");
1015 wc_status = IB_WC_GENERAL_ERR;
1016 goto pio_bail;
1017 } else {
1018 /*
1019 * This is a normal occurrence. The PIO buffs are full
1020 * up but we are still happily sending, well we could be
1021 * so lets continue to queue the request.
1022 */
1023 hfi1_cdbg(PIO, "alloc failed. state active, queuing");
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001024 ret = pio_wait(qp, sc, ps, RVT_S_WAIT_PIO);
Mike Marciniszyn711e1042016-02-14 12:45:18 -08001025 if (!ret)
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001026 /* txreq not queued - free */
Mike Marciniszyn711e1042016-02-14 12:45:18 -08001027 goto bail;
1028 /* tx consumed in wait */
1029 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001030 }
1031 }
1032
Don Hiatt566d53a2017-08-04 13:54:47 -07001033 if (dwords == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001034 pio_copy(ppd->dd, pbuf, pbc, hdr, hdrwords);
1035 } else {
Don Hiatt566d53a2017-08-04 13:54:47 -07001036 seg_pio_copy_start(pbuf, pbc,
1037 hdr, hdrwords * 4);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001038 if (ss) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001039 while (len) {
1040 void *addr = ss->sge.vaddr;
Michael J. Ruhl87fc34b2019-01-23 19:08:19 -08001041 u32 slen = rvt_get_sge_length(&ss->sge, len);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001042
Brian Welty1198fce2017-02-08 05:27:37 -08001043 rvt_update_sge(ss, slen, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001044 seg_pio_copy_mid(pbuf, addr, slen);
1045 len -= slen;
1046 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001047 }
Don Hiattf8195f32017-10-09 12:38:19 -07001048 /* add icrc, lt byte, and padding to flit */
1049 if (extra_bytes)
Mike Marciniszyn22bb1362019-10-04 16:49:34 -04001050 seg_pio_copy_mid(pbuf, ppd->dd->sdma_pad_dma,
1051 extra_bytes);
Don Hiatt566d53a2017-08-04 13:54:47 -07001052
Don Hiatt566d53a2017-08-04 13:54:47 -07001053 seg_pio_copy_end(pbuf);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001054 }
1055
Mike Marciniszyn1b311f82017-10-23 06:06:08 -07001056 update_tx_opstats(qp, ps, plen);
Mike Marciniszyn1db78ee2016-03-07 11:35:19 -08001057 trace_pio_output_ibhdr(dd_from_ibdev(qp->ibqp.device),
Don Hiatt228d2af2017-05-12 09:20:08 -07001058 &ps->s_txreq->phdr.hdr, ib_is_sc5(sc5));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001059
Mike Marciniszyn77241052015-07-30 15:17:43 -04001060pio_bail:
Mike Marciniszyn4bb02e92019-06-14 12:32:44 -04001061 spin_lock_irqsave(&qp->s_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001062 if (qp->s_wqe) {
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001063 rvt_send_complete(qp, qp->s_wqe, wc_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001064 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
Mike Marciniszyn4bb02e92019-06-14 12:32:44 -04001065 if (unlikely(wc_status == IB_WC_GENERAL_ERR))
1066 hfi1_rc_verbs_aborted(qp, &ps->s_txreq->phdr.hdr);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -08001067 hfi1_rc_send_complete(qp, &ps->s_txreq->phdr.hdr);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001068 }
Mike Marciniszyn4bb02e92019-06-14 12:32:44 -04001069 spin_unlock_irqrestore(&qp->s_lock, flags);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -08001070
1071 ret = 0;
1072
1073bail:
1074 hfi1_put_txreq(ps->s_txreq);
1075 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001076}
Geliang Tangb91cc572015-09-21 23:39:08 +08001077
Mike Marciniszyn77241052015-07-30 15:17:43 -04001078/*
1079 * egress_pkey_matches_entry - return 1 if the pkey matches ent (ent
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001080 * being an entry from the partition key table), return 0
Mike Marciniszyn77241052015-07-30 15:17:43 -04001081 * otherwise. Use the matching criteria for egress partition keys
1082 * specified in the OPAv1 spec., section 9.1l.7.
1083 */
1084static inline int egress_pkey_matches_entry(u16 pkey, u16 ent)
1085{
1086 u16 mkey = pkey & PKEY_LOW_15_MASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001087 u16 mentry = ent & PKEY_LOW_15_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001088
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001089 if (mkey == mentry) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001090 /*
1091 * If pkey[15] is set (full partition member),
1092 * is bit 15 in the corresponding table element
1093 * clear (limited member)?
1094 */
1095 if (pkey & PKEY_MEMBER_MASK)
1096 return !!(ent & PKEY_MEMBER_MASK);
1097 return 1;
1098 }
1099 return 0;
1100}
1101
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001102/**
1103 * egress_pkey_check - check P_KEY of a packet
Don Hiatt566d53a2017-08-04 13:54:47 -07001104 * @ppd: Physical IB port data
1105 * @slid: SLID for packet
Lee Jonescd5962d2021-01-26 12:47:31 +00001106 * @pkey: PKEY for header
Don Hiatt566d53a2017-08-04 13:54:47 -07001107 * @sc5: SC for packet
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001108 * @s_pkey_index: It will be used for look up optimization for kernel contexts
1109 * only. If it is negative value, then it means user contexts is calling this
1110 * function.
1111 *
1112 * It checks if hdr's pkey is valid.
1113 *
1114 * Return: 0 on success, otherwise, 1
Mike Marciniszyn77241052015-07-30 15:17:43 -04001115 */
Don Hiatt566d53a2017-08-04 13:54:47 -07001116int egress_pkey_check(struct hfi1_pportdata *ppd, u32 slid, u16 pkey,
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001117 u8 sc5, int8_t s_pkey_index)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001118{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001119 struct hfi1_devdata *dd;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001120 int i;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001121 int is_user_ctxt_mechanism = (s_pkey_index < 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001122
1123 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_OUT))
1124 return 0;
1125
Mike Marciniszyn77241052015-07-30 15:17:43 -04001126 /* If SC15, pkey[0:14] must be 0x7fff */
1127 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1128 goto bad;
1129
Mike Marciniszyn77241052015-07-30 15:17:43 -04001130 /* Is the pkey = 0x0, or 0x8000? */
1131 if ((pkey & PKEY_LOW_15_MASK) == 0)
1132 goto bad;
1133
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001134 /*
1135 * For the kernel contexts only, if a qp is passed into the function,
1136 * the most likely matching pkey has index qp->s_pkey_index
1137 */
1138 if (!is_user_ctxt_mechanism &&
1139 egress_pkey_matches_entry(pkey, ppd->pkeys[s_pkey_index])) {
1140 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001141 }
1142
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001143 for (i = 0; i < MAX_PKEY_VALUES; i++) {
1144 if (egress_pkey_matches_entry(pkey, ppd->pkeys[i]))
1145 return 0;
1146 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001147bad:
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001148 /*
1149 * For the user-context mechanism, the P_KEY check would only happen
1150 * once per SDMA request, not once per packet. Therefore, there's no
1151 * need to increment the counter for the user-context mechanism.
1152 */
1153 if (!is_user_ctxt_mechanism) {
1154 incr_cntr64(&ppd->port_xmit_constraint_errors);
1155 dd = ppd->dd;
1156 if (!(dd->err_info_xmit_constraint.status &
1157 OPA_EI_STATUS_SMASK)) {
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001158 dd->err_info_xmit_constraint.status |=
1159 OPA_EI_STATUS_SMASK;
1160 dd->err_info_xmit_constraint.slid = slid;
1161 dd->err_info_xmit_constraint.pkey = pkey;
1162 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001163 }
1164 return 1;
1165}
1166
Lee Jonescd5962d2021-01-26 12:47:31 +00001167/*
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001168 * get_send_routine - choose an egress routine
1169 *
1170 * Choose an egress routine based on QP type
1171 * and size
1172 */
1173static inline send_routine get_send_routine(struct rvt_qp *qp,
Don Hiatt566d53a2017-08-04 13:54:47 -07001174 struct hfi1_pkt_state *ps)
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001175{
1176 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1177 struct hfi1_qp_priv *priv = qp->priv;
Don Hiatt566d53a2017-08-04 13:54:47 -07001178 struct verbs_txreq *tx = ps->s_txreq;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001179
1180 if (unlikely(!(dd->flags & HFI1_HAS_SEND_DMA)))
1181 return dd->process_pio_send;
1182 switch (qp->ibqp.qp_type) {
1183 case IB_QPT_SMI:
1184 return dd->process_pio_send;
1185 case IB_QPT_GSI:
1186 case IB_QPT_UD:
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001187 break;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001188 case IB_QPT_UC:
Mike Marciniszyn270a9832019-02-26 08:46:16 -08001189 case IB_QPT_RC:
1190 priv->s_running_pkt_size =
1191 (tx->s_cur_size + priv->s_running_pkt_size) / 2;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001192 if (piothreshold &&
Mike Marciniszyn270a9832019-02-26 08:46:16 -08001193 priv->s_running_pkt_size <= min(piothreshold, qp->pmtu) &&
Don Hiatt566d53a2017-08-04 13:54:47 -07001194 (BIT(ps->opcode & OPMASK) & pio_opmask[ps->opcode >> 5]) &&
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001195 iowait_sdma_pending(&priv->s_iowait) == 0 &&
1196 !sdma_txreq_built(&tx->txreq))
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001197 return dd->process_pio_send;
1198 break;
1199 default:
1200 break;
1201 }
1202 return dd->process_dma_send;
1203}
1204
1205/**
Mike Marciniszyn77241052015-07-30 15:17:43 -04001206 * hfi1_verbs_send - send a packet
1207 * @qp: the QP to send on
Dennis Dalessandrod46e5142015-11-11 00:34:37 -05001208 * @ps: the state of the packet to send
Mike Marciniszyn77241052015-07-30 15:17:43 -04001209 *
1210 * Return zero if packet is sent or queued OK.
Dennis Dalessandro54d10c12016-01-19 14:43:01 -08001211 * Return non-zero and clear qp->s_flags RVT_S_BUSY otherwise.
Mike Marciniszyn77241052015-07-30 15:17:43 -04001212 */
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001213int hfi1_verbs_send(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001214{
1215 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device);
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001216 struct hfi1_qp_priv *priv = qp->priv;
Don Hiatt81cd3892018-05-15 18:28:15 -07001217 struct ib_other_headers *ohdr = NULL;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001218 send_routine sr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001219 int ret;
Don Hiatt566d53a2017-08-04 13:54:47 -07001220 u16 pkey;
1221 u32 slid;
Don Hiatt81cd3892018-05-15 18:28:15 -07001222 u8 l4 = 0;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001223
Sebastian Sancheze38d1e42016-04-12 11:22:21 -07001224 /* locate the pkey within the headers */
Don Hiatt566d53a2017-08-04 13:54:47 -07001225 if (ps->s_txreq->phdr.hdr.hdr_type) {
1226 struct hfi1_16b_header *hdr = &ps->s_txreq->phdr.hdr.opah;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001227
Don Hiatt81cd3892018-05-15 18:28:15 -07001228 l4 = hfi1_16B_get_l4(hdr);
1229 if (l4 == OPA_16B_L4_IB_LOCAL)
Don Hiatt566d53a2017-08-04 13:54:47 -07001230 ohdr = &hdr->u.oth;
Don Hiatt81cd3892018-05-15 18:28:15 -07001231 else if (l4 == OPA_16B_L4_IB_GLOBAL)
1232 ohdr = &hdr->u.l.oth;
1233
Don Hiatt566d53a2017-08-04 13:54:47 -07001234 slid = hfi1_16B_get_slid(hdr);
1235 pkey = hfi1_16B_get_pkey(hdr);
1236 } else {
1237 struct ib_header *hdr = &ps->s_txreq->phdr.hdr.ibh;
1238 u8 lnh = ib_get_lnh(hdr);
1239
1240 if (lnh == HFI1_LRH_GRH)
1241 ohdr = &hdr->u.l.oth;
1242 else
1243 ohdr = &hdr->u.oth;
1244 slid = ib_get_slid(hdr);
1245 pkey = ib_bth_get_pkey(ohdr);
1246 }
1247
Don Hiatt81cd3892018-05-15 18:28:15 -07001248 if (likely(l4 != OPA_16B_L4_FM))
1249 ps->opcode = ib_bth_get_opcode(ohdr);
1250 else
1251 ps->opcode = IB_OPCODE_UD_SEND_ONLY;
1252
Don Hiatt566d53a2017-08-04 13:54:47 -07001253 sr = get_send_routine(qp, ps);
1254 ret = egress_pkey_check(dd->pport, slid, pkey,
1255 priv->s_sc, qp->s_pkey_index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001256 if (unlikely(ret)) {
1257 /*
1258 * The value we are returning here does not get propagated to
1259 * the verbs caller. Thus we need to complete the request with
1260 * error otherwise the caller could be sitting waiting on the
1261 * completion event. Only do this for PIO. SDMA has its own
1262 * mechanism for handling the errors. So for SDMA we can just
1263 * return.
1264 */
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001265 if (sr == dd->process_pio_send) {
1266 unsigned long flags;
1267
Mike Marciniszyn77241052015-07-30 15:17:43 -04001268 hfi1_cdbg(PIO, "%s() Failed. Completing with err",
1269 __func__);
1270 spin_lock_irqsave(&qp->s_lock, flags);
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001271 rvt_send_complete(qp, qp->s_wqe, IB_WC_GENERAL_ERR);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001272 spin_unlock_irqrestore(&qp->s_lock, flags);
1273 }
1274 return -EINVAL;
1275 }
Mike Marciniszyn47177f12016-03-07 11:35:41 -08001276 if (sr == dd->process_dma_send && iowait_pio_pending(&priv->s_iowait))
1277 return pio_wait(qp,
1278 ps->s_txreq->psc,
1279 ps,
Mike Marciniszyn2e2ba092018-06-04 11:44:02 -07001280 HFI1_S_WAIT_PIO_DRAIN);
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001281 return sr(qp, ps, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001282}
1283
Harish Chegondi94d51712016-01-19 14:43:17 -08001284/**
1285 * hfi1_fill_device_attr - Fill in rvt dev info device attributes.
1286 * @dd: the device data structure
1287 */
1288static void hfi1_fill_device_attr(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001289{
Harish Chegondi94d51712016-01-19 14:43:17 -08001290 struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001291 u32 ver = dd->dc8051_ver;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001292
Harish Chegondi94d51712016-01-19 14:43:17 -08001293 memset(&rdi->dparms.props, 0, sizeof(rdi->dparms.props));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001294
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001295 rdi->dparms.props.fw_ver = ((u64)(dc8051_ver_maj(ver)) << 32) |
1296 ((u64)(dc8051_ver_min(ver)) << 16) |
1297 (u64)dc8051_ver_patch(ver);
1298
Harish Chegondi94d51712016-01-19 14:43:17 -08001299 rdi->dparms.props.device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
1300 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
1301 IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
Jianxin Xiongc72cfe32016-07-25 13:38:43 -07001302 IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE |
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07001303 IB_DEVICE_MEM_MGT_EXTENSIONS |
Gary Leshner7f90a5a2020-05-11 12:06:07 -04001304 IB_DEVICE_RDMA_NETDEV_OPA;
Harish Chegondi94d51712016-01-19 14:43:17 -08001305 rdi->dparms.props.page_size_cap = PAGE_SIZE;
1306 rdi->dparms.props.vendor_id = dd->oui1 << 16 | dd->oui2 << 8 | dd->oui3;
1307 rdi->dparms.props.vendor_part_id = dd->pcidev->device;
1308 rdi->dparms.props.hw_ver = dd->minrev;
1309 rdi->dparms.props.sys_image_guid = ib_hfi1_sys_image_guid;
Jianxin Xiongc72cfe32016-07-25 13:38:43 -07001310 rdi->dparms.props.max_mr_size = U64_MAX;
1311 rdi->dparms.props.max_fast_reg_page_list_len = UINT_MAX;
Harish Chegondi94d51712016-01-19 14:43:17 -08001312 rdi->dparms.props.max_qp = hfi1_max_qps;
Kaike Wan3c6cb202019-01-23 21:51:39 -08001313 rdi->dparms.props.max_qp_wr =
1314 (hfi1_max_qp_wrs >= HFI1_QP_WQE_INVALID ?
1315 HFI1_QP_WQE_INVALID - 1 : hfi1_max_qp_wrs);
Steve Wise33023fb2018-06-18 08:05:26 -07001316 rdi->dparms.props.max_send_sge = hfi1_max_sges;
1317 rdi->dparms.props.max_recv_sge = hfi1_max_sges;
Harish Chegondi94d51712016-01-19 14:43:17 -08001318 rdi->dparms.props.max_sge_rd = hfi1_max_sges;
1319 rdi->dparms.props.max_cq = hfi1_max_cqs;
1320 rdi->dparms.props.max_ah = hfi1_max_ahs;
1321 rdi->dparms.props.max_cqe = hfi1_max_cqes;
Harish Chegondi94d51712016-01-19 14:43:17 -08001322 rdi->dparms.props.max_pd = hfi1_max_pds;
1323 rdi->dparms.props.max_qp_rd_atom = HFI1_MAX_RDMA_ATOMIC;
1324 rdi->dparms.props.max_qp_init_rd_atom = 255;
1325 rdi->dparms.props.max_srq = hfi1_max_srqs;
1326 rdi->dparms.props.max_srq_wr = hfi1_max_srq_wrs;
1327 rdi->dparms.props.max_srq_sge = hfi1_max_srq_sges;
1328 rdi->dparms.props.atomic_cap = IB_ATOMIC_GLOB;
1329 rdi->dparms.props.max_pkeys = hfi1_get_npkeys(dd);
1330 rdi->dparms.props.max_mcast_grp = hfi1_max_mcast_grps;
1331 rdi->dparms.props.max_mcast_qp_attach = hfi1_max_mcast_qp_attached;
1332 rdi->dparms.props.max_total_mcast_qp_attach =
1333 rdi->dparms.props.max_mcast_qp_attach *
1334 rdi->dparms.props.max_mcast_grp;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001335}
1336
1337static inline u16 opa_speed_to_ib(u16 in)
1338{
1339 u16 out = 0;
1340
1341 if (in & OPA_LINK_SPEED_25G)
1342 out |= IB_SPEED_EDR;
1343 if (in & OPA_LINK_SPEED_12_5G)
1344 out |= IB_SPEED_FDR;
1345
1346 return out;
1347}
1348
1349/*
1350 * Convert a single OPA link width (no multiple flags) to an IB value.
1351 * A zero OPA link width means link down, which means the IB width value
1352 * is a don't care.
1353 */
1354static inline u16 opa_width_to_ib(u16 in)
1355{
1356 switch (in) {
1357 case OPA_LINK_WIDTH_1X:
1358 /* map 2x and 3x to 1x as they don't exist in IB */
1359 case OPA_LINK_WIDTH_2X:
1360 case OPA_LINK_WIDTH_3X:
1361 return IB_WIDTH_1X;
1362 default: /* link down or unknown, return our largest width */
1363 case OPA_LINK_WIDTH_4X:
1364 return IB_WIDTH_4X;
1365 }
1366}
1367
Mark Bloch1fb7f892021-03-01 09:04:20 +02001368static int query_port(struct rvt_dev_info *rdi, u32 port_num,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001369 struct ib_port_attr *props)
1370{
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001371 struct hfi1_ibdev *verbs_dev = dev_from_rdi(rdi);
1372 struct hfi1_devdata *dd = dd_from_dev(verbs_dev);
1373 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -07001374 u32 lid = ppd->lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001375
Or Gerlitzc4550c62017-01-24 13:02:39 +02001376 /* props being zeroed by the caller, avoid zeroing it here */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001377 props->lid = lid ? lid : 0;
1378 props->lmc = ppd->lmc;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001379 /* OPA logical states match IB logical states */
1380 props->state = driver_lstate(ppd);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -07001381 props->phys_state = driver_pstate(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001382 props->gid_tbl_len = HFI1_GUIDS_PER_PORT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001383 props->active_width = (u8)opa_width_to_ib(ppd->link_width_active);
1384 /* see rate_show() in ib core/sysfs.c */
Aharon Landau376ceb32020-09-17 12:02:23 +03001385 props->active_speed = opa_speed_to_ib(ppd->link_speed_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001386 props->max_vl_num = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001387
1388 /* Once we are a "first class" citizen and have added the OPA MTUs to
1389 * the core we can advertise the larger MTU enum to the ULPs, for now
1390 * advertise only 4K.
1391 *
1392 * Those applications which are either OPA aware or pass the MTU enum
1393 * from the Path Records to us will get the new 8k MTU. Those that
1394 * attempt to process the MTU enum may fail in various ways.
1395 */
1396 props->max_mtu = mtu_to_enum((!valid_ib_mtu(hfi1_max_mtu) ?
1397 4096 : hfi1_max_mtu), IB_MTU_4096);
1398 props->active_mtu = !valid_ib_mtu(ppd->ibmtu) ? props->max_mtu :
Jan Sokolowski69a3ffa2017-11-14 04:34:45 -08001399 mtu_to_enum(ppd->ibmtu, IB_MTU_4096);
Kaike Wan6d723442020-05-11 12:06:18 -04001400 props->phys_mtu = HFI1_CAP_IS_KSET(AIP) ? hfi1_max_mtu :
1401 ib_mtu_enum_to_int(props->max_mtu);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001402
1403 return 0;
1404}
1405
1406static int modify_device(struct ib_device *device,
1407 int device_modify_mask,
1408 struct ib_device_modify *device_modify)
1409{
1410 struct hfi1_devdata *dd = dd_from_ibdev(device);
1411 unsigned i;
1412 int ret;
1413
1414 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1415 IB_DEVICE_MODIFY_NODE_DESC)) {
1416 ret = -EOPNOTSUPP;
1417 goto bail;
1418 }
1419
1420 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC) {
Yuval Shaiabd99fde2016-08-25 10:57:07 -07001421 memcpy(device->node_desc, device_modify->node_desc,
1422 IB_DEVICE_NODE_DESC_MAX);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001423 for (i = 0; i < dd->num_pports; i++) {
1424 struct hfi1_ibport *ibp = &dd->pport[i].ibport_data;
1425
1426 hfi1_node_desc_chg(ibp);
1427 }
1428 }
1429
1430 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID) {
1431 ib_hfi1_sys_image_guid =
1432 cpu_to_be64(device_modify->sys_image_guid);
1433 for (i = 0; i < dd->num_pports; i++) {
1434 struct hfi1_ibport *ibp = &dd->pport[i].ibport_data;
1435
1436 hfi1_sys_guid_chg(ibp);
1437 }
1438 }
1439
1440 ret = 0;
1441
1442bail:
1443 return ret;
1444}
1445
Mark Bloch1fb7f892021-03-01 09:04:20 +02001446static int shut_down_port(struct rvt_dev_info *rdi, u32 port_num)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001447{
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001448 struct hfi1_ibdev *verbs_dev = dev_from_rdi(rdi);
1449 struct hfi1_devdata *dd = dd_from_dev(verbs_dev);
1450 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
1451 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001452
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001453 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_UNKNOWN, 0,
1454 OPA_LINKDOWN_REASON_UNKNOWN);
1455 ret = set_link_state(ppd, HLS_DN_DOWNDEF);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001456 return ret;
1457}
1458
Dennis Dalessandro25131462016-02-03 14:36:40 -08001459static int hfi1_get_guid_be(struct rvt_dev_info *rdi, struct rvt_ibport *rvp,
1460 int guid_index, __be64 *guid)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001461{
Dennis Dalessandro25131462016-02-03 14:36:40 -08001462 struct hfi1_ibport *ibp = container_of(rvp, struct hfi1_ibport, rvp);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001463
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001464 if (guid_index >= HFI1_GUIDS_PER_PORT)
Dennis Dalessandro25131462016-02-03 14:36:40 -08001465 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001466
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001467 *guid = get_sguid(ibp, guid_index);
Dennis Dalessandro25131462016-02-03 14:36:40 -08001468 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001469}
1470
Mike Marciniszyn77241052015-07-30 15:17:43 -04001471/*
1472 * convert ah port,sl to sc
1473 */
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001474u8 ah_to_sc(struct ib_device *ibdev, struct rdma_ah_attr *ah)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001475{
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001476 struct hfi1_ibport *ibp = to_iport(ibdev, rdma_ah_get_port_num(ah));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001477
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001478 return ibp->sl_to_sc[rdma_ah_get_sl(ah)];
Mike Marciniszyn77241052015-07-30 15:17:43 -04001479}
1480
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001481static int hfi1_check_ah(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001482{
1483 struct hfi1_ibport *ibp;
1484 struct hfi1_pportdata *ppd;
1485 struct hfi1_devdata *dd;
1486 u8 sc5;
Ira Weiny0dbfaa92018-09-20 12:58:46 -07001487 u8 sl;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001488
Don Hiatt13c19222017-08-04 13:53:51 -07001489 if (hfi1_check_mcast(rdma_ah_get_dlid(ah_attr)) &&
1490 !(rdma_ah_get_ah_flags(ah_attr) & IB_AH_GRH))
1491 return -EINVAL;
1492
Mike Marciniszyn77241052015-07-30 15:17:43 -04001493 /* test the mapping for validity */
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001494 ibp = to_iport(ibdev, rdma_ah_get_port_num(ah_attr));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001495 ppd = ppd_from_ibp(ibp);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001496 dd = dd_from_ppd(ppd);
Ira Weiny0dbfaa92018-09-20 12:58:46 -07001497
1498 sl = rdma_ah_get_sl(ah_attr);
1499 if (sl >= ARRAY_SIZE(ibp->sl_to_sc))
1500 return -EINVAL;
Gustavo A. R. Silva6497d0a2019-07-31 12:54:28 -05001501 sl = array_index_nospec(sl, ARRAY_SIZE(ibp->sl_to_sc));
Ira Weiny0dbfaa92018-09-20 12:58:46 -07001502
1503 sc5 = ibp->sl_to_sc[sl];
Mike Marciniszyn77241052015-07-30 15:17:43 -04001504 if (sc_to_vlt(dd, sc5) > num_vls && sc_to_vlt(dd, sc5) != 0xf)
Dennis Dalessandro15723f02016-01-19 14:42:17 -08001505 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001506 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001507}
1508
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001509static void hfi1_notify_new_ah(struct ib_device *ibdev,
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -04001510 struct rdma_ah_attr *ah_attr,
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001511 struct rvt_ah *ah)
1512{
1513 struct hfi1_ibport *ibp;
1514 struct hfi1_pportdata *ppd;
1515 struct hfi1_devdata *dd;
1516 u8 sc5;
Don Hiattd98bb7f2017-08-04 13:54:16 -07001517 struct rdma_ah_attr *attr = &ah->attr;
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001518
1519 /*
1520 * Do not trust reading anything from rvt_ah at this point as it is not
1521 * done being setup. We can however modify things which we need to set.
1522 */
1523
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001524 ibp = to_iport(ibdev, rdma_ah_get_port_num(ah_attr));
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001525 ppd = ppd_from_ibp(ibp);
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001526 sc5 = ibp->sl_to_sc[rdma_ah_get_sl(&ah->attr)];
Don Hiattd98bb7f2017-08-04 13:54:16 -07001527 hfi1_update_ah_attr(ibdev, attr);
1528 hfi1_make_opa_lid(attr);
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001529 dd = dd_from_ppd(ppd);
1530 ah->vl = sc_to_vlt(dd, sc5);
1531 if (ah->vl < num_vls || ah->vl == 15)
1532 ah->log_pmtu = ilog2(dd->vld[ah->vl].mtu);
1533}
1534
Mike Marciniszyn77241052015-07-30 15:17:43 -04001535/**
Mike Marciniszyn77241052015-07-30 15:17:43 -04001536 * hfi1_get_npkeys - return the size of the PKEY table for context 0
1537 * @dd: the hfi1_ib device
1538 */
1539unsigned hfi1_get_npkeys(struct hfi1_devdata *dd)
1540{
1541 return ARRAY_SIZE(dd->pport[0].pkeys);
1542}
1543
Mike Marciniszyn77241052015-07-30 15:17:43 -04001544static void init_ibport(struct hfi1_pportdata *ppd)
1545{
1546 struct hfi1_ibport *ibp = &ppd->ibport_data;
1547 size_t sz = ARRAY_SIZE(ibp->sl_to_sc);
1548 int i;
1549
1550 for (i = 0; i < sz; i++) {
1551 ibp->sl_to_sc[i] = i;
1552 ibp->sc_to_sl[i] = i;
1553 }
1554
Michael J. Ruhlbf90aad2017-07-24 07:46:12 -07001555 for (i = 0; i < RVT_MAX_TRAP_LISTS ; i++)
1556 INIT_LIST_HEAD(&ibp->rvp.trap_lists[i].list);
Kees Cook80641352017-10-16 15:51:54 -07001557 timer_setup(&ibp->rvp.trap_timer, hfi1_handle_trap_timer, 0);
Michael J. Ruhlbf90aad2017-07-24 07:46:12 -07001558
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001559 spin_lock_init(&ibp->rvp.lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001560 /* Set the prefix to the default value (see ch. 4.1.1) */
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001561 ibp->rvp.gid_prefix = IB_DEFAULT_GID_PREFIX;
1562 ibp->rvp.sm_lid = 0;
Vishwanathapura, Niranjanacb493662017-06-01 17:04:02 -07001563 /*
1564 * Below should only set bits defined in OPA PortInfo.CapabilityMask
1565 * and PortInfo.CapabilityMask3
1566 */
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001567 ibp->rvp.port_cap_flags = IB_PORT_AUTO_MIGR_SUP |
Mike Marciniszyn77241052015-07-30 15:17:43 -04001568 IB_PORT_CAP_MASK_NOTICE_SUP;
Vishwanathapura, Niranjanacb493662017-06-01 17:04:02 -07001569 ibp->rvp.port_cap3_flags = OPA_CAP_MASK3_IsSharedSpaceSupported;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001570 ibp->rvp.pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
1571 ibp->rvp.pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
1572 ibp->rvp.pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
1573 ibp->rvp.pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
1574 ibp->rvp.pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001575
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001576 RCU_INIT_POINTER(ibp->rvp.qp[0], NULL);
1577 RCU_INIT_POINTER(ibp->rvp.qp[1], NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001578}
1579
Leon Romanovsky9abb0d12017-06-27 16:49:53 +03001580static void hfi1_get_dev_fw_str(struct ib_device *ibdev, char *str)
Ira Weiny939b6ca2016-06-15 02:22:08 -04001581{
1582 struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
1583 struct hfi1_ibdev *dev = dev_from_rdi(rdi);
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001584 u32 ver = dd_from_dev(dev)->dc8051_ver;
Ira Weiny939b6ca2016-06-15 02:22:08 -04001585
Leon Romanovsky9abb0d12017-06-27 16:49:53 +03001586 snprintf(str, IB_FW_VERSION_NAME_MAX, "%u.%u.%u", dc8051_ver_maj(ver),
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07001587 dc8051_ver_min(ver), dc8051_ver_patch(ver));
Ira Weiny939b6ca2016-06-15 02:22:08 -04001588}
1589
Jianxin Xiongb7481942016-12-07 19:32:53 -08001590static const char * const driver_cntr_names[] = {
1591 /* must be element 0*/
1592 "DRIVER_KernIntr",
1593 "DRIVER_ErrorIntr",
1594 "DRIVER_Tx_Errs",
1595 "DRIVER_Rcv_Errs",
1596 "DRIVER_HW_Errs",
1597 "DRIVER_NoPIOBufs",
1598 "DRIVER_CtxtsOpen",
1599 "DRIVER_RcvLen_Errs",
1600 "DRIVER_EgrBufFull",
1601 "DRIVER_EgrHdrFull"
1602};
1603
Tadeusz Struk62eed662017-03-20 17:25:35 -07001604static DEFINE_MUTEX(cntr_names_lock); /* protects the *_cntr_names bufers */
Aharon Landau13f30b02021-10-08 15:24:29 +03001605static struct rdma_stat_desc *dev_cntr_descs;
1606static struct rdma_stat_desc *port_cntr_descs;
Piotr Stankiewicz36d84212018-11-28 06:44:46 -08001607int num_driver_cntrs = ARRAY_SIZE(driver_cntr_names);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001608static int num_dev_cntrs;
1609static int num_port_cntrs;
1610static int cntr_names_initialized;
1611
1612/*
1613 * Convert a list of names separated by '\n' into an array of NULL terminated
1614 * strings. Optionally some entries can be reserved in the array to hold extra
1615 * external strings.
1616 */
Aharon Landau13f30b02021-10-08 15:24:29 +03001617static int init_cntr_names(const char *names_in, const size_t names_len,
1618 int num_extra_names, int *num_cntrs,
1619 struct rdma_stat_desc **cntr_descs)
Jianxin Xiongb7481942016-12-07 19:32:53 -08001620{
Aharon Landau13f30b02021-10-08 15:24:29 +03001621 struct rdma_stat_desc *q;
1622 char *names_out, *p;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001623 int i, n;
1624
1625 n = 0;
1626 for (i = 0; i < names_len; i++)
1627 if (names_in[i] == '\n')
1628 n++;
1629
Aharon Landau13f30b02021-10-08 15:24:29 +03001630 names_out =
Dennis Dalessandroda86dc12021-11-15 15:09:13 -05001631 kzalloc((n + num_extra_names) * sizeof(*q) + names_len,
Aharon Landau13f30b02021-10-08 15:24:29 +03001632 GFP_KERNEL);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001633 if (!names_out) {
1634 *num_cntrs = 0;
Aharon Landau13f30b02021-10-08 15:24:29 +03001635 *cntr_descs = NULL;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001636 return -ENOMEM;
1637 }
1638
Dennis Dalessandroda86dc12021-11-15 15:09:13 -05001639 p = names_out + (n + num_extra_names) * sizeof(*q);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001640 memcpy(p, names_in, names_len);
1641
Aharon Landau13f30b02021-10-08 15:24:29 +03001642 q = (struct rdma_stat_desc *)names_out;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001643 for (i = 0; i < n; i++) {
Aharon Landau13f30b02021-10-08 15:24:29 +03001644 q[i].name = p;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001645 p = strchr(p, '\n');
1646 *p++ = '\0';
1647 }
1648
1649 *num_cntrs = n;
Aharon Landau13f30b02021-10-08 15:24:29 +03001650 *cntr_descs = (struct rdma_stat_desc *)names_out;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001651 return 0;
1652}
1653
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001654static int init_counters(struct ib_device *ibdev)
Jianxin Xiongb7481942016-12-07 19:32:53 -08001655{
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001656 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
1657 int i, err = 0;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001658
Tadeusz Struk62eed662017-03-20 17:25:35 -07001659 mutex_lock(&cntr_names_lock);
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001660 if (cntr_names_initialized)
1661 goto out_unlock;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001662
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001663 err = init_cntr_names(dd->cntrnames, dd->cntrnameslen, num_driver_cntrs,
Aharon Landau13f30b02021-10-08 15:24:29 +03001664 &num_dev_cntrs, &dev_cntr_descs);
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001665 if (err)
1666 goto out_unlock;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001667
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001668 for (i = 0; i < num_driver_cntrs; i++)
Aharon Landau13f30b02021-10-08 15:24:29 +03001669 dev_cntr_descs[num_dev_cntrs + i].name = driver_cntr_names[i];
Jianxin Xiongb7481942016-12-07 19:32:53 -08001670
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001671 err = init_cntr_names(dd->portcntrnames, dd->portcntrnameslen, 0,
Aharon Landau13f30b02021-10-08 15:24:29 +03001672 &num_port_cntrs, &port_cntr_descs);
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001673 if (err) {
Aharon Landau13f30b02021-10-08 15:24:29 +03001674 kfree(dev_cntr_descs);
1675 dev_cntr_descs = NULL;
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001676 goto out_unlock;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001677 }
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001678 cntr_names_initialized = 1;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001679
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001680out_unlock:
1681 mutex_unlock(&cntr_names_lock);
1682 return err;
1683}
1684
1685static struct rdma_hw_stats *hfi1_alloc_hw_device_stats(struct ib_device *ibdev)
1686{
1687 if (init_counters(ibdev))
1688 return NULL;
Aharon Landau13f30b02021-10-08 15:24:29 +03001689 return rdma_alloc_hw_stats_struct(dev_cntr_descs,
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001690 num_dev_cntrs + num_driver_cntrs,
1691 RDMA_HW_STATS_DEFAULT_LIFESPAN);
1692}
1693
1694static struct rdma_hw_stats *hfi_alloc_hw_port_stats(struct ib_device *ibdev,
1695 u32 port_num)
1696{
1697 if (init_counters(ibdev))
1698 return NULL;
Aharon Landau13f30b02021-10-08 15:24:29 +03001699 return rdma_alloc_hw_stats_struct(port_cntr_descs, num_port_cntrs,
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001700 RDMA_HW_STATS_DEFAULT_LIFESPAN);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001701}
1702
1703static u64 hfi1_sps_ints(void)
1704{
Matthew Wilcox03b92782019-02-08 15:41:29 -05001705 unsigned long index, flags;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001706 struct hfi1_devdata *dd;
1707 u64 sps_ints = 0;
1708
Matthew Wilcox03b92782019-02-08 15:41:29 -05001709 xa_lock_irqsave(&hfi1_dev_table, flags);
1710 xa_for_each(&hfi1_dev_table, index, dd) {
Jianxin Xiongb7481942016-12-07 19:32:53 -08001711 sps_ints += get_all_cpu_total(dd->int_counter);
1712 }
Matthew Wilcox03b92782019-02-08 15:41:29 -05001713 xa_unlock_irqrestore(&hfi1_dev_table, flags);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001714 return sps_ints;
1715}
1716
1717static int get_hw_stats(struct ib_device *ibdev, struct rdma_hw_stats *stats,
Mark Bloch1fb7f892021-03-01 09:04:20 +02001718 u32 port, int index)
Jianxin Xiongb7481942016-12-07 19:32:53 -08001719{
1720 u64 *values;
1721 int count;
1722
1723 if (!port) {
1724 u64 *stats = (u64 *)&hfi1_stats;
1725 int i;
1726
1727 hfi1_read_cntrs(dd_from_ibdev(ibdev), NULL, &values);
1728 values[num_dev_cntrs] = hfi1_sps_ints();
1729 for (i = 1; i < num_driver_cntrs; i++)
1730 values[num_dev_cntrs + i] = stats[i];
1731 count = num_dev_cntrs + num_driver_cntrs;
1732 } else {
1733 struct hfi1_ibport *ibp = to_iport(ibdev, port);
1734
1735 hfi1_read_portcntrs(ppd_from_ibp(ibp), NULL, &values);
1736 count = num_port_cntrs;
1737 }
1738
1739 memcpy(stats->value, values, count * sizeof(u64));
1740 return count;
1741}
1742
Kamal Heibe3c320c2018-12-10 21:09:34 +02001743static const struct ib_device_ops hfi1_dev_ops = {
Jason Gunthorpe7a154142019-06-05 14:39:26 -03001744 .owner = THIS_MODULE,
Jason Gunthorpeb9560a42019-06-05 14:39:24 -03001745 .driver_id = RDMA_DRIVER_HFI1,
1746
Jason Gunthorpe4b5f4d32021-06-11 19:00:20 +03001747 .alloc_hw_device_stats = hfi1_alloc_hw_device_stats,
1748 .alloc_hw_port_stats = hfi_alloc_hw_port_stats,
Kamal Heibe3c320c2018-12-10 21:09:34 +02001749 .alloc_rdma_netdev = hfi1_vnic_alloc_rn,
Jason Gunthorpe915e4af2021-06-11 19:00:34 +03001750 .device_group = &ib_hfi1_attr_group,
Kamal Heibe3c320c2018-12-10 21:09:34 +02001751 .get_dev_fw_str = hfi1_get_dev_fw_str,
1752 .get_hw_stats = get_hw_stats,
1753 .modify_device = modify_device,
Jason Gunthorped7407d12021-06-11 19:00:32 +03001754 .port_groups = hfi1_attr_port_groups,
Kamal Heibe3c320c2018-12-10 21:09:34 +02001755 /* keep process mad in the driver */
1756 .process_mad = hfi1_process_mad,
Piotr Stankiewicz0ad45e52020-05-11 12:07:13 -04001757 .rdma_netdev_get_params = hfi1_ipoib_rn_get_params,
Kamal Heibe3c320c2018-12-10 21:09:34 +02001758};
1759
Mike Marciniszyn77241052015-07-30 15:17:43 -04001760/**
1761 * hfi1_register_ib_device - register our device with the infiniband core
1762 * @dd: the device data structure
1763 * Return 0 if successful, errno if unsuccessful.
1764 */
1765int hfi1_register_ib_device(struct hfi1_devdata *dd)
1766{
1767 struct hfi1_ibdev *dev = &dd->verbs_dev;
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001768 struct ib_device *ibdev = &dev->rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001769 struct hfi1_pportdata *ppd = dd->pport;
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001770 struct hfi1_ibport *ibp = &ppd->ibport_data;
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001771 unsigned i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001772 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001773
Mike Marciniszyn77241052015-07-30 15:17:43 -04001774 for (i = 0; i < dd->num_pports; i++)
1775 init_ibport(ppd + i);
1776
1777 /* Only need to initialize non-zero fields. */
Dennis Dalessandro4f87ccf2016-01-19 14:41:50 -08001778
Kees Cook80641352017-10-16 15:51:54 -07001779 timer_setup(&dev->mem_timer, mem_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001780
Mike Marciniszyn77241052015-07-30 15:17:43 -04001781 seqlock_init(&dev->iowait_lock);
Mike Marciniszyn4e045572016-10-10 06:14:28 -07001782 seqlock_init(&dev->txwait_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001783 INIT_LIST_HEAD(&dev->txwait);
1784 INIT_LIST_HEAD(&dev->memwait);
1785
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001786 ret = verbs_txreq_init(dev);
1787 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001788 goto err_verbs_txreq;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001789
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001790 /* Use first-port GUID as node guid */
1791 ibdev->node_guid = get_sguid(ibp, HFI1_PORT_GUID_INDEX);
1792
Mike Marciniszyn77241052015-07-30 15:17:43 -04001793 /*
1794 * The system image GUID is supposed to be the same for all
1795 * HFIs in a single system but since there can be other
1796 * device types in the system, we can't be sure this is unique.
1797 */
1798 if (!ib_hfi1_sys_image_guid)
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07001799 ib_hfi1_sys_image_guid = ibdev->node_guid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001800 ibdev->phys_port_cnt = dd->num_pports;
Bart Van Assche30677712017-01-20 13:04:17 -08001801 ibdev->dev.parent = &dd->pcidev->dev;
Dennis Dalessandro43316292016-01-19 14:44:01 -08001802
Kamal Heibe3c320c2018-12-10 21:09:34 +02001803 ib_set_device_ops(ibdev, &hfi1_dev_ops);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001804
Bart Van Assche522628e2018-07-10 11:32:16 -07001805 strlcpy(ibdev->node_desc, init_utsname()->nodename,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001806 sizeof(ibdev->node_desc));
1807
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001808 /*
1809 * Fill in rvt info object.
1810 */
Dennis Dalessandro49dbb6c2016-01-19 14:42:06 -08001811 dd->verbs_dev.rdi.driver_f.get_pci_dev = get_pci_dev;
Dennis Dalessandro15723f02016-01-19 14:42:17 -08001812 dd->verbs_dev.rdi.driver_f.check_ah = hfi1_check_ah;
Dennis Dalessandro8f1764fa2016-01-19 14:42:22 -08001813 dd->verbs_dev.rdi.driver_f.notify_new_ah = hfi1_notify_new_ah;
Dennis Dalessandro25131462016-02-03 14:36:40 -08001814 dd->verbs_dev.rdi.driver_f.get_guid_be = hfi1_get_guid_be;
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001815 dd->verbs_dev.rdi.driver_f.query_port_state = query_port;
1816 dd->verbs_dev.rdi.driver_f.shut_down_port = shut_down_port;
1817 dd->verbs_dev.rdi.driver_f.cap_mask_chg = hfi1_cap_mask_chg;
Harish Chegondi94d51712016-01-19 14:43:17 -08001818 /*
1819 * Fill in rvt info device attributes.
1820 */
1821 hfi1_fill_device_attr(dd);
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001822
1823 /* queue pair */
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001824 dd->verbs_dev.rdi.dparms.qp_table_size = hfi1_qp_table_size;
1825 dd->verbs_dev.rdi.dparms.qpn_start = 0;
1826 dd->verbs_dev.rdi.dparms.qpn_inc = 1;
1827 dd->verbs_dev.rdi.dparms.qos_shift = dd->qos_shift;
Gary Leshner84e3b192020-05-11 12:06:00 -04001828 dd->verbs_dev.rdi.dparms.qpn_res_start = RVT_KDETH_QP_BASE;
1829 dd->verbs_dev.rdi.dparms.qpn_res_end = RVT_AIP_QP_MAX;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -08001830 dd->verbs_dev.rdi.dparms.max_rdma_atomic = HFI1_MAX_RDMA_ATOMIC;
1831 dd->verbs_dev.rdi.dparms.psn_mask = PSN_MASK;
1832 dd->verbs_dev.rdi.dparms.psn_shift = PSN_SHIFT;
1833 dd->verbs_dev.rdi.dparms.psn_modify_mask = PSN_MODIFY_MASK;
Dasaratharaman Chandramouli72214032017-08-04 13:54:53 -07001834 dd->verbs_dev.rdi.dparms.core_cap_flags = RDMA_CORE_PORT_INTEL_OPA |
1835 RDMA_CORE_CAP_OPA_AH;
Harish Chegondi45b59ee2016-02-03 14:36:49 -08001836 dd->verbs_dev.rdi.dparms.max_mad_size = OPA_MGMT_MAD_SIZE;
1837
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001838 dd->verbs_dev.rdi.driver_f.qp_priv_alloc = qp_priv_alloc;
Mike Marciniszyn5190f052018-11-28 10:22:31 -08001839 dd->verbs_dev.rdi.driver_f.qp_priv_init = hfi1_qp_priv_init;
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001840 dd->verbs_dev.rdi.driver_f.qp_priv_free = qp_priv_free;
1841 dd->verbs_dev.rdi.driver_f.free_all_qps = free_all_qps;
1842 dd->verbs_dev.rdi.driver_f.notify_qp_reset = notify_qp_reset;
Mike Marciniszynb6eac932017-04-09 10:16:35 -07001843 dd->verbs_dev.rdi.driver_f.do_send = hfi1_do_send_from_rvt;
Dennis Dalessandro83693bd2016-01-19 14:43:33 -08001844 dd->verbs_dev.rdi.driver_f.schedule_send = hfi1_schedule_send;
Mike Marciniszyn46a80d62016-02-14 12:10:04 -08001845 dd->verbs_dev.rdi.driver_f.schedule_send_no_lock = _hfi1_schedule_send;
Dennis Dalessandroec4274f2016-01-19 14:43:44 -08001846 dd->verbs_dev.rdi.driver_f.get_pmtu_from_attr = get_pmtu_from_attr;
1847 dd->verbs_dev.rdi.driver_f.notify_error_qp = notify_error_qp;
1848 dd->verbs_dev.rdi.driver_f.flush_qp_waiters = flush_qp_waiters;
1849 dd->verbs_dev.rdi.driver_f.stop_send_queue = stop_send_queue;
1850 dd->verbs_dev.rdi.driver_f.quiesce_qp = quiesce_qp;
1851 dd->verbs_dev.rdi.driver_f.notify_error_qp = notify_error_qp;
1852 dd->verbs_dev.rdi.driver_f.mtu_from_qp = mtu_from_qp;
1853 dd->verbs_dev.rdi.driver_f.mtu_to_path_mtu = mtu_to_path_mtu;
1854 dd->verbs_dev.rdi.driver_f.check_modify_qp = hfi1_check_modify_qp;
1855 dd->verbs_dev.rdi.driver_f.modify_qp = hfi1_modify_qp;
Venkata Sandeep Dhanalakota56acbbf2017-02-08 05:27:19 -08001856 dd->verbs_dev.rdi.driver_f.notify_restart_rc = hfi1_restart_rc;
Kaike Wand205a06a2018-09-26 10:26:44 -07001857 dd->verbs_dev.rdi.driver_f.setup_wqe = hfi1_setup_wqe;
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -07001858 dd->verbs_dev.rdi.driver_f.comp_vect_cpu_lookup =
1859 hfi1_comp_vect_mappings_lookup;
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001860
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001861 /* completeion queue */
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -07001862 dd->verbs_dev.rdi.ibdev.num_comp_vectors = dd->comp_vect_possible_cpus;
Mitko Haralanov27807392016-02-03 14:33:31 -08001863 dd->verbs_dev.rdi.dparms.node = dd->node;
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001864
Dennis Dalessandroa2c2d602016-01-19 14:43:12 -08001865 /* misc settings */
Dennis Dalessandroabd712d2016-01-19 14:43:22 -08001866 dd->verbs_dev.rdi.flags = 0; /* Let rdmavt handle it all */
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001867 dd->verbs_dev.rdi.dparms.lkey_table_size = hfi1_lkey_table_size;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001868 dd->verbs_dev.rdi.dparms.nports = dd->num_pports;
1869 dd->verbs_dev.rdi.dparms.npkeys = hfi1_get_npkeys(dd);
Brian Welty019f1182018-09-26 10:44:33 -07001870 dd->verbs_dev.rdi.dparms.sge_copy_mode = sge_copy_mode;
1871 dd->verbs_dev.rdi.dparms.wss_threshold = wss_threshold;
1872 dd->verbs_dev.rdi.dparms.wss_clean_period = wss_clean_period;
Kaike Wan48a615d2019-01-23 19:21:11 -08001873 dd->verbs_dev.rdi.dparms.reserved_operations = 1;
Kaike Wanf5a4a952019-01-23 21:48:38 -08001874 dd->verbs_dev.rdi.dparms.extra_rdma_atomic = HFI1_TID_RDMA_WRITE_CNT;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001875
Mike Marciniszyn1ac57c52016-07-01 16:02:13 -07001876 /* post send table */
1877 dd->verbs_dev.rdi.post_parms = hfi1_post_parms;
1878
Venkata Sandeep Dhanalakota116aa032018-09-26 10:44:42 -07001879 /* opcode translation table */
1880 dd->verbs_dev.rdi.wc_opcode = ib_hfi1_wc_opcode;
1881
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001882 ppd = dd->pport;
1883 for (i = 0; i < dd->num_pports; i++, ppd++)
1884 rvt_init_port(&dd->verbs_dev.rdi,
1885 &ppd->ibport_data.rvp,
1886 i,
1887 ppd->pkeys);
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001888
Jason Gunthorpeb9560a42019-06-05 14:39:24 -03001889 ret = rvt_register_device(&dd->verbs_dev.rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001890 if (ret)
Dennis Dalessandro9c4a3112016-01-19 14:44:11 -08001891 goto err_verbs_txreq;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001892
1893 ret = hfi1_verbs_register_sysfs(dd);
1894 if (ret)
1895 goto err_class;
1896
Dennis Dalessandro9c4a3112016-01-19 14:44:11 -08001897 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001898
1899err_class:
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001900 rvt_unregister_device(&dd->verbs_dev.rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001901err_verbs_txreq:
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001902 verbs_txreq_exit(dev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001903 dd_dev_err(dd, "cannot register verbs: %d!\n", -ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001904 return ret;
1905}
1906
1907void hfi1_unregister_ib_device(struct hfi1_devdata *dd)
1908{
1909 struct hfi1_ibdev *dev = &dd->verbs_dev;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001910
1911 hfi1_verbs_unregister_sysfs(dd);
1912
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -08001913 rvt_unregister_device(&dd->verbs_dev.rdi);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001914
1915 if (!list_empty(&dev->txwait))
1916 dd_dev_err(dd, "txwait list not empty!\n");
1917 if (!list_empty(&dev->memwait))
1918 dd_dev_err(dd, "memwait list not empty!\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04001919
Mike Marciniszyn77241052015-07-30 15:17:43 -04001920 del_timer_sync(&dev->mem_timer);
Mike Marciniszyn45842ab2016-02-14 12:44:34 -08001921 verbs_txreq_exit(dev);
Jianxin Xiongb7481942016-12-07 19:32:53 -08001922
Tadeusz Struk62eed662017-03-20 17:25:35 -07001923 mutex_lock(&cntr_names_lock);
Aharon Landau13f30b02021-10-08 15:24:29 +03001924 kfree(dev_cntr_descs);
1925 kfree(port_cntr_descs);
1926 dev_cntr_descs = NULL;
1927 port_cntr_descs = NULL;
Jianxin Xiongb7481942016-12-07 19:32:53 -08001928 cntr_names_initialized = 0;
Tadeusz Struk62eed662017-03-20 17:25:35 -07001929 mutex_unlock(&cntr_names_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001930}
1931
Mike Marciniszyn77241052015-07-30 15:17:43 -04001932void hfi1_cnp_rcv(struct hfi1_packet *packet)
1933{
Sebastian Sanchezf3e862c2017-02-08 05:26:25 -08001934 struct hfi1_ibport *ibp = rcd_to_iport(packet->rcd);
Arthur Kepner977940b2015-11-04 21:10:10 -05001935 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
Mike Marciniszyn261a4352016-09-06 04:35:05 -07001936 struct ib_header *hdr = packet->hdr;
Dennis Dalessandro895420d2016-01-19 14:42:28 -08001937 struct rvt_qp *qp = packet->qp;
Arthur Kepner977940b2015-11-04 21:10:10 -05001938 u32 lqpn, rqpn = 0;
1939 u16 rlid = 0;
Dasaratharaman Chandramoulib736a462016-07-25 13:40:34 -07001940 u8 sl, sc5, svc_type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001941
Arthur Kepner977940b2015-11-04 21:10:10 -05001942 switch (packet->qp->ibqp.qp_type) {
1943 case IB_QPT_UC:
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001944 rlid = rdma_ah_get_dlid(&qp->remote_ah_attr);
Arthur Kepner977940b2015-11-04 21:10:10 -05001945 rqpn = qp->remote_qpn;
1946 svc_type = IB_CC_SVCTYPE_UC;
1947 break;
1948 case IB_QPT_RC:
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -04001949 rlid = rdma_ah_get_dlid(&qp->remote_ah_attr);
Arthur Kepner977940b2015-11-04 21:10:10 -05001950 rqpn = qp->remote_qpn;
1951 svc_type = IB_CC_SVCTYPE_RC;
1952 break;
1953 case IB_QPT_SMI:
1954 case IB_QPT_GSI:
1955 case IB_QPT_UD:
1956 svc_type = IB_CC_SVCTYPE_UD;
1957 break;
1958 default:
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08001959 ibp->rvp.n_pkt_drops++;
Arthur Kepner977940b2015-11-04 21:10:10 -05001960 return;
1961 }
1962
Dasaratharaman Chandramouliaad559c2017-04-09 10:16:15 -07001963 sc5 = hfi1_9B_get_sc5(hdr, packet->rhf);
Arthur Kepner977940b2015-11-04 21:10:10 -05001964 sl = ibp->sc_to_sl[sc5];
1965 lqpn = qp->ibqp.qp_num;
1966
1967 process_becn(ppd, sl, rlid, lqpn, rqpn, svc_type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001968}