1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) 2 /* 3 * Copyright(c) 2018 Intel Corporation. 4 * 5 */ 6 7 #include "hfi.h" 8 #include "qp.h" 9 #include "rc.h" 10 #include "verbs.h" 11 #include "tid_rdma.h" 12 #include "exp_rcv.h" 13 #include "trace.h" 14 15 /** 16 * DOC: TID RDMA READ protocol 17 * 18 * This is an end-to-end protocol at the hfi1 level between two nodes that 19 * improves performance by avoiding data copy on the requester side. It 20 * converts a qualified RDMA READ request into a TID RDMA READ request on 21 * the requester side and thereafter handles the request and response 22 * differently. To be qualified, the RDMA READ request should meet the 23 * following: 24 * -- The total data length should be greater than 256K; 25 * -- The total data length should be a multiple of 4K page size; 26 * -- Each local scatter-gather entry should be 4K page aligned; 27 * -- Each local scatter-gather entry should be a multiple of 4K page size; 28 */ 29 30 #define RCV_TID_FLOW_TABLE_CTRL_FLOW_VALID_SMASK BIT_ULL(32) 31 #define RCV_TID_FLOW_TABLE_CTRL_HDR_SUPP_EN_SMASK BIT_ULL(33) 32 #define RCV_TID_FLOW_TABLE_CTRL_KEEP_AFTER_SEQ_ERR_SMASK BIT_ULL(34) 33 #define RCV_TID_FLOW_TABLE_CTRL_KEEP_ON_GEN_ERR_SMASK BIT_ULL(35) 34 #define RCV_TID_FLOW_TABLE_STATUS_SEQ_MISMATCH_SMASK BIT_ULL(37) 35 #define RCV_TID_FLOW_TABLE_STATUS_GEN_MISMATCH_SMASK BIT_ULL(38) 36 37 /* Maximum number of packets within a flow generation. */ 38 #define MAX_TID_FLOW_PSN BIT(HFI1_KDETH_BTH_SEQ_SHIFT) 39 40 #define GENERATION_MASK 0xFFFFF 41 42 static u32 mask_generation(u32 a) 43 { 44 return a & GENERATION_MASK; 45 } 46 47 /* Reserved generation value to set to unused flows for kernel contexts */ 48 #define KERN_GENERATION_RESERVED mask_generation(U32_MAX) 49 50 /* 51 * J_KEY for kernel contexts when TID RDMA is used. 52 * See generate_jkey() in hfi.h for more information. 53 */ 54 #define TID_RDMA_JKEY 32 55 #define HFI1_KERNEL_MIN_JKEY HFI1_ADMIN_JKEY_RANGE 56 #define HFI1_KERNEL_MAX_JKEY (2 * HFI1_ADMIN_JKEY_RANGE - 1) 57 58 /* Maximum number of segments in flight per QP request. */ 59 #define TID_RDMA_MAX_READ_SEGS_PER_REQ 6 60 #define TID_RDMA_MAX_WRITE_SEGS_PER_REQ 4 61 #define MAX_REQ max_t(u16, TID_RDMA_MAX_READ_SEGS_PER_REQ, \ 62 TID_RDMA_MAX_WRITE_SEGS_PER_REQ) 63 #define MAX_FLOWS roundup_pow_of_two(MAX_REQ + 1) 64 65 #define MAX_EXPECTED_PAGES (MAX_EXPECTED_BUFFER / PAGE_SIZE) 66 67 #define TID_RDMA_DESTQP_FLOW_SHIFT 11 68 #define TID_RDMA_DESTQP_FLOW_MASK 0x1f 69 70 #define TID_OPFN_QP_CTXT_MASK 0xff 71 #define TID_OPFN_QP_CTXT_SHIFT 56 72 #define TID_OPFN_QP_KDETH_MASK 0xff 73 #define TID_OPFN_QP_KDETH_SHIFT 48 74 #define TID_OPFN_MAX_LEN_MASK 0x7ff 75 #define TID_OPFN_MAX_LEN_SHIFT 37 76 #define TID_OPFN_TIMEOUT_MASK 0x1f 77 #define TID_OPFN_TIMEOUT_SHIFT 32 78 #define TID_OPFN_RESERVED_MASK 0x3f 79 #define TID_OPFN_RESERVED_SHIFT 26 80 #define TID_OPFN_URG_MASK 0x1 81 #define TID_OPFN_URG_SHIFT 25 82 #define TID_OPFN_VER_MASK 0x7 83 #define TID_OPFN_VER_SHIFT 22 84 #define TID_OPFN_JKEY_MASK 0x3f 85 #define TID_OPFN_JKEY_SHIFT 16 86 #define TID_OPFN_MAX_READ_MASK 0x3f 87 #define TID_OPFN_MAX_READ_SHIFT 10 88 #define TID_OPFN_MAX_WRITE_MASK 0x3f 89 #define TID_OPFN_MAX_WRITE_SHIFT 4 90 91 /* 92 * OPFN TID layout 93 * 94 * 63 47 31 15 95 * NNNNNNNNKKKKKKKK MMMMMMMMMMMTTTTT DDDDDDUVVVJJJJJJ RRRRRRWWWWWWCCCC 96 * 3210987654321098 7654321098765432 1098765432109876 5432109876543210 97 * N - the context Number 98 * K - the Kdeth_qp 99 * M - Max_len 100 * T - Timeout 101 * D - reserveD 102 * V - version 103 * U - Urg capable 104 * J - Jkey 105 * R - max_Read 106 * W - max_Write 107 * C - Capcode 108 */ 109 110 static u32 tid_rdma_flow_wt; 111 112 static void tid_rdma_trigger_resume(struct work_struct *work); 113 static void hfi1_kern_exp_rcv_free_flows(struct tid_rdma_request *req); 114 static int hfi1_kern_exp_rcv_alloc_flows(struct tid_rdma_request *req, 115 gfp_t gfp); 116 static void hfi1_init_trdma_req(struct rvt_qp *qp, 117 struct tid_rdma_request *req); 118 static void hfi1_tid_write_alloc_resources(struct rvt_qp *qp, bool intr_ctx); 119 static void hfi1_tid_timeout(struct timer_list *t); 120 static void hfi1_add_tid_reap_timer(struct rvt_qp *qp); 121 static void hfi1_mod_tid_reap_timer(struct rvt_qp *qp); 122 static void hfi1_mod_tid_retry_timer(struct rvt_qp *qp); 123 static int hfi1_stop_tid_retry_timer(struct rvt_qp *qp); 124 static void hfi1_tid_retry_timeout(struct timer_list *t); 125 static int make_tid_rdma_ack(struct rvt_qp *qp, 126 struct ib_other_headers *ohdr, 127 struct hfi1_pkt_state *ps); 128 static void hfi1_do_tid_send(struct rvt_qp *qp); 129 static u32 read_r_next_psn(struct hfi1_devdata *dd, u8 ctxt, u8 fidx); 130 static void tid_rdma_rcv_err(struct hfi1_packet *packet, 131 struct ib_other_headers *ohdr, 132 struct rvt_qp *qp, u32 psn, int diff, bool fecn); 133 static void update_r_next_psn_fecn(struct hfi1_packet *packet, 134 struct hfi1_qp_priv *priv, 135 struct hfi1_ctxtdata *rcd, 136 struct tid_rdma_flow *flow, 137 bool fecn); 138 139 static u64 tid_rdma_opfn_encode(struct tid_rdma_params *p) 140 { 141 return 142 (((u64)p->qp & TID_OPFN_QP_CTXT_MASK) << 143 TID_OPFN_QP_CTXT_SHIFT) | 144 ((((u64)p->qp >> 16) & TID_OPFN_QP_KDETH_MASK) << 145 TID_OPFN_QP_KDETH_SHIFT) | 146 (((u64)((p->max_len >> PAGE_SHIFT) - 1) & 147 TID_OPFN_MAX_LEN_MASK) << TID_OPFN_MAX_LEN_SHIFT) | 148 (((u64)p->timeout & TID_OPFN_TIMEOUT_MASK) << 149 TID_OPFN_TIMEOUT_SHIFT) | 150 (((u64)p->urg & TID_OPFN_URG_MASK) << TID_OPFN_URG_SHIFT) | 151 (((u64)p->jkey & TID_OPFN_JKEY_MASK) << TID_OPFN_JKEY_SHIFT) | 152 (((u64)p->max_read & TID_OPFN_MAX_READ_MASK) << 153 TID_OPFN_MAX_READ_SHIFT) | 154 (((u64)p->max_write & TID_OPFN_MAX_WRITE_MASK) << 155 TID_OPFN_MAX_WRITE_SHIFT); 156 } 157 158 static void tid_rdma_opfn_decode(struct tid_rdma_params *p, u64 data) 159 { 160 p->max_len = (((data >> TID_OPFN_MAX_LEN_SHIFT) & 161 TID_OPFN_MAX_LEN_MASK) + 1) << PAGE_SHIFT; 162 p->jkey = (data >> TID_OPFN_JKEY_SHIFT) & TID_OPFN_JKEY_MASK; 163 p->max_write = (data >> TID_OPFN_MAX_WRITE_SHIFT) & 164 TID_OPFN_MAX_WRITE_MASK; 165 p->max_read = (data >> TID_OPFN_MAX_READ_SHIFT) & 166 TID_OPFN_MAX_READ_MASK; 167 p->qp = 168 ((((data >> TID_OPFN_QP_KDETH_SHIFT) & TID_OPFN_QP_KDETH_MASK) 169 << 16) | 170 ((data >> TID_OPFN_QP_CTXT_SHIFT) & TID_OPFN_QP_CTXT_MASK)); 171 p->urg = (data >> TID_OPFN_URG_SHIFT) & TID_OPFN_URG_MASK; 172 p->timeout = (data >> TID_OPFN_TIMEOUT_SHIFT) & TID_OPFN_TIMEOUT_MASK; 173 } 174 175 void tid_rdma_opfn_init(struct rvt_qp *qp, struct tid_rdma_params *p) 176 { 177 struct hfi1_qp_priv *priv = qp->priv; 178 179 p->qp = (kdeth_qp << 16) | priv->rcd->ctxt; 180 p->max_len = TID_RDMA_MAX_SEGMENT_SIZE; 181 p->jkey = priv->rcd->jkey; 182 p->max_read = TID_RDMA_MAX_READ_SEGS_PER_REQ; 183 p->max_write = TID_RDMA_MAX_WRITE_SEGS_PER_REQ; 184 p->timeout = qp->timeout; 185 p->urg = is_urg_masked(priv->rcd); 186 } 187 188 bool tid_rdma_conn_req(struct rvt_qp *qp, u64 *data) 189 { 190 struct hfi1_qp_priv *priv = qp->priv; 191 192 *data = tid_rdma_opfn_encode(&priv->tid_rdma.local); 193 return true; 194 } 195 196 bool tid_rdma_conn_reply(struct rvt_qp *qp, u64 data) 197 { 198 struct hfi1_qp_priv *priv = qp->priv; 199 struct tid_rdma_params *remote, *old; 200 bool ret = true; 201 202 old = rcu_dereference_protected(priv->tid_rdma.remote, 203 lockdep_is_held(&priv->opfn.lock)); 204 data &= ~0xfULL; 205 /* 206 * If data passed in is zero, return true so as not to continue the 207 * negotiation process 208 */ 209 if (!data || !HFI1_CAP_IS_KSET(TID_RDMA)) 210 goto null; 211 /* 212 * If kzalloc fails, return false. This will result in: 213 * * at the requester a new OPFN request being generated to retry 214 * the negotiation 215 * * at the responder, 0 being returned to the requester so as to 216 * disable TID RDMA at both the requester and the responder 217 */ 218 remote = kzalloc(sizeof(*remote), GFP_ATOMIC); 219 if (!remote) { 220 ret = false; 221 goto null; 222 } 223 224 tid_rdma_opfn_decode(remote, data); 225 priv->tid_timer_timeout_jiffies = 226 usecs_to_jiffies((((4096UL * (1UL << remote->timeout)) / 227 1000UL) << 3) * 7); 228 trace_hfi1_opfn_param(qp, 0, &priv->tid_rdma.local); 229 trace_hfi1_opfn_param(qp, 1, remote); 230 rcu_assign_pointer(priv->tid_rdma.remote, remote); 231 /* 232 * A TID RDMA READ request's segment size is not equal to 233 * remote->max_len only when the request's data length is smaller 234 * than remote->max_len. In that case, there will be only one segment. 235 * Therefore, when priv->pkts_ps is used to calculate req->cur_seg 236 * during retry, it will lead to req->cur_seg = 0, which is exactly 237 * what is expected. 238 */ 239 priv->pkts_ps = (u16)rvt_div_mtu(qp, remote->max_len); 240 priv->timeout_shift = ilog2(priv->pkts_ps - 1) + 1; 241 goto free; 242 null: 243 RCU_INIT_POINTER(priv->tid_rdma.remote, NULL); 244 priv->timeout_shift = 0; 245 free: 246 if (old) 247 kfree_rcu(old, rcu_head); 248 return ret; 249 } 250 251 bool tid_rdma_conn_resp(struct rvt_qp *qp, u64 *data) 252 { 253 bool ret; 254 255 ret = tid_rdma_conn_reply(qp, *data); 256 *data = 0; 257 /* 258 * If tid_rdma_conn_reply() returns error, set *data as 0 to indicate 259 * TID RDMA could not be enabled. This will result in TID RDMA being 260 * disabled at the requester too. 261 */ 262 if (ret) 263 (void)tid_rdma_conn_req(qp, data); 264 return ret; 265 } 266 267 void tid_rdma_conn_error(struct rvt_qp *qp) 268 { 269 struct hfi1_qp_priv *priv = qp->priv; 270 struct tid_rdma_params *old; 271 272 old = rcu_dereference_protected(priv->tid_rdma.remote, 273 lockdep_is_held(&priv->opfn.lock)); 274 RCU_INIT_POINTER(priv->tid_rdma.remote, NULL); 275 if (old) 276 kfree_rcu(old, rcu_head); 277 } 278 279 /* This is called at context initialization time */ 280 int hfi1_kern_exp_rcv_init(struct hfi1_ctxtdata *rcd, int reinit) 281 { 282 if (reinit) 283 return 0; 284 285 BUILD_BUG_ON(TID_RDMA_JKEY < HFI1_KERNEL_MIN_JKEY); 286 BUILD_BUG_ON(TID_RDMA_JKEY > HFI1_KERNEL_MAX_JKEY); 287 rcd->jkey = TID_RDMA_JKEY; 288 hfi1_set_ctxt_jkey(rcd->dd, rcd, rcd->jkey); 289 return hfi1_alloc_ctxt_rcv_groups(rcd); 290 } 291 292 /** 293 * qp_to_rcd - determine the receive context used by a qp 294 * @qp - the qp 295 * 296 * This routine returns the receive context associated 297 * with a a qp's qpn. 298 * 299 * Returns the context. 300 */ 301 static struct hfi1_ctxtdata *qp_to_rcd(struct rvt_dev_info *rdi, 302 struct rvt_qp *qp) 303 { 304 struct hfi1_ibdev *verbs_dev = container_of(rdi, 305 struct hfi1_ibdev, 306 rdi); 307 struct hfi1_devdata *dd = container_of(verbs_dev, 308 struct hfi1_devdata, 309 verbs_dev); 310 unsigned int ctxt; 311 312 if (qp->ibqp.qp_num == 0) 313 ctxt = 0; 314 else 315 ctxt = hfi1_get_qp_map(dd, qp->ibqp.qp_num >> dd->qos_shift); 316 return dd->rcd[ctxt]; 317 } 318 319 int hfi1_qp_priv_init(struct rvt_dev_info *rdi, struct rvt_qp *qp, 320 struct ib_qp_init_attr *init_attr) 321 { 322 struct hfi1_qp_priv *qpriv = qp->priv; 323 int i, ret; 324 325 qpriv->rcd = qp_to_rcd(rdi, qp); 326 327 spin_lock_init(&qpriv->opfn.lock); 328 INIT_WORK(&qpriv->opfn.opfn_work, opfn_send_conn_request); 329 INIT_WORK(&qpriv->tid_rdma.trigger_work, tid_rdma_trigger_resume); 330 qpriv->flow_state.psn = 0; 331 qpriv->flow_state.index = RXE_NUM_TID_FLOWS; 332 qpriv->flow_state.last_index = RXE_NUM_TID_FLOWS; 333 qpriv->flow_state.generation = KERN_GENERATION_RESERVED; 334 qpriv->s_state = TID_OP(WRITE_RESP); 335 qpriv->s_tid_cur = HFI1_QP_WQE_INVALID; 336 qpriv->s_tid_head = HFI1_QP_WQE_INVALID; 337 qpriv->s_tid_tail = HFI1_QP_WQE_INVALID; 338 qpriv->rnr_nak_state = TID_RNR_NAK_INIT; 339 qpriv->r_tid_head = HFI1_QP_WQE_INVALID; 340 qpriv->r_tid_tail = HFI1_QP_WQE_INVALID; 341 qpriv->r_tid_ack = HFI1_QP_WQE_INVALID; 342 qpriv->r_tid_alloc = HFI1_QP_WQE_INVALID; 343 atomic_set(&qpriv->n_requests, 0); 344 atomic_set(&qpriv->n_tid_requests, 0); 345 timer_setup(&qpriv->s_tid_timer, hfi1_tid_timeout, 0); 346 timer_setup(&qpriv->s_tid_retry_timer, hfi1_tid_retry_timeout, 0); 347 INIT_LIST_HEAD(&qpriv->tid_wait); 348 349 if (init_attr->qp_type == IB_QPT_RC && HFI1_CAP_IS_KSET(TID_RDMA)) { 350 struct hfi1_devdata *dd = qpriv->rcd->dd; 351 352 qpriv->pages = kzalloc_node(TID_RDMA_MAX_PAGES * 353 sizeof(*qpriv->pages), 354 GFP_KERNEL, dd->node); 355 if (!qpriv->pages) 356 return -ENOMEM; 357 for (i = 0; i < qp->s_size; i++) { 358 struct hfi1_swqe_priv *priv; 359 struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, i); 360 361 priv = kzalloc_node(sizeof(*priv), GFP_KERNEL, 362 dd->node); 363 if (!priv) 364 return -ENOMEM; 365 366 hfi1_init_trdma_req(qp, &priv->tid_req); 367 priv->tid_req.e.swqe = wqe; 368 wqe->priv = priv; 369 } 370 for (i = 0; i < rvt_max_atomic(rdi); i++) { 371 struct hfi1_ack_priv *priv; 372 373 priv = kzalloc_node(sizeof(*priv), GFP_KERNEL, 374 dd->node); 375 if (!priv) 376 return -ENOMEM; 377 378 hfi1_init_trdma_req(qp, &priv->tid_req); 379 priv->tid_req.e.ack = &qp->s_ack_queue[i]; 380 381 ret = hfi1_kern_exp_rcv_alloc_flows(&priv->tid_req, 382 GFP_KERNEL); 383 if (ret) { 384 kfree(priv); 385 return ret; 386 } 387 qp->s_ack_queue[i].priv = priv; 388 } 389 } 390 391 return 0; 392 } 393 394 void hfi1_qp_priv_tid_free(struct rvt_dev_info *rdi, struct rvt_qp *qp) 395 { 396 struct hfi1_qp_priv *qpriv = qp->priv; 397 struct rvt_swqe *wqe; 398 u32 i; 399 400 if (qp->ibqp.qp_type == IB_QPT_RC && HFI1_CAP_IS_KSET(TID_RDMA)) { 401 for (i = 0; i < qp->s_size; i++) { 402 wqe = rvt_get_swqe_ptr(qp, i); 403 kfree(wqe->priv); 404 wqe->priv = NULL; 405 } 406 for (i = 0; i < rvt_max_atomic(rdi); i++) { 407 struct hfi1_ack_priv *priv = qp->s_ack_queue[i].priv; 408 409 if (priv) 410 hfi1_kern_exp_rcv_free_flows(&priv->tid_req); 411 kfree(priv); 412 qp->s_ack_queue[i].priv = NULL; 413 } 414 cancel_work_sync(&qpriv->opfn.opfn_work); 415 kfree(qpriv->pages); 416 qpriv->pages = NULL; 417 } 418 } 419 420 /* Flow and tid waiter functions */ 421 /** 422 * DOC: lock ordering 423 * 424 * There are two locks involved with the queuing 425 * routines: the qp s_lock and the exp_lock. 426 * 427 * Since the tid space allocation is called from 428 * the send engine, the qp s_lock is already held. 429 * 430 * The allocation routines will get the exp_lock. 431 * 432 * The first_qp() call is provided to allow the head of 433 * the rcd wait queue to be fetched under the exp_lock and 434 * followed by a drop of the exp_lock. 435 * 436 * Any qp in the wait list will have the qp reference count held 437 * to hold the qp in memory. 438 */ 439 440 /* 441 * return head of rcd wait list 442 * 443 * Must hold the exp_lock. 444 * 445 * Get a reference to the QP to hold the QP in memory. 446 * 447 * The caller must release the reference when the local 448 * is no longer being used. 449 */ 450 static struct rvt_qp *first_qp(struct hfi1_ctxtdata *rcd, 451 struct tid_queue *queue) 452 __must_hold(&rcd->exp_lock) 453 { 454 struct hfi1_qp_priv *priv; 455 456 lockdep_assert_held(&rcd->exp_lock); 457 priv = list_first_entry_or_null(&queue->queue_head, 458 struct hfi1_qp_priv, 459 tid_wait); 460 if (!priv) 461 return NULL; 462 rvt_get_qp(priv->owner); 463 return priv->owner; 464 } 465 466 /** 467 * kernel_tid_waiters - determine rcd wait 468 * @rcd: the receive context 469 * @qp: the head of the qp being processed 470 * 471 * This routine will return false IFF 472 * the list is NULL or the head of the 473 * list is the indicated qp. 474 * 475 * Must hold the qp s_lock and the exp_lock. 476 * 477 * Return: 478 * false if either of the conditions below are satisfied: 479 * 1. The list is empty or 480 * 2. The indicated qp is at the head of the list and the 481 * HFI1_S_WAIT_TID_SPACE bit is set in qp->s_flags. 482 * true is returned otherwise. 483 */ 484 static bool kernel_tid_waiters(struct hfi1_ctxtdata *rcd, 485 struct tid_queue *queue, struct rvt_qp *qp) 486 __must_hold(&rcd->exp_lock) __must_hold(&qp->s_lock) 487 { 488 struct rvt_qp *fqp; 489 bool ret = true; 490 491 lockdep_assert_held(&qp->s_lock); 492 lockdep_assert_held(&rcd->exp_lock); 493 fqp = first_qp(rcd, queue); 494 if (!fqp || (fqp == qp && (qp->s_flags & HFI1_S_WAIT_TID_SPACE))) 495 ret = false; 496 rvt_put_qp(fqp); 497 return ret; 498 } 499 500 /** 501 * dequeue_tid_waiter - dequeue the qp from the list 502 * @qp - the qp to remove the wait list 503 * 504 * This routine removes the indicated qp from the 505 * wait list if it is there. 506 * 507 * This should be done after the hardware flow and 508 * tid array resources have been allocated. 509 * 510 * Must hold the qp s_lock and the rcd exp_lock. 511 * 512 * It assumes the s_lock to protect the s_flags 513 * field and to reliably test the HFI1_S_WAIT_TID_SPACE flag. 514 */ 515 static void dequeue_tid_waiter(struct hfi1_ctxtdata *rcd, 516 struct tid_queue *queue, struct rvt_qp *qp) 517 __must_hold(&rcd->exp_lock) __must_hold(&qp->s_lock) 518 { 519 struct hfi1_qp_priv *priv = qp->priv; 520 521 lockdep_assert_held(&qp->s_lock); 522 lockdep_assert_held(&rcd->exp_lock); 523 if (list_empty(&priv->tid_wait)) 524 return; 525 list_del_init(&priv->tid_wait); 526 qp->s_flags &= ~HFI1_S_WAIT_TID_SPACE; 527 queue->dequeue++; 528 rvt_put_qp(qp); 529 } 530 531 /** 532 * queue_qp_for_tid_wait - suspend QP on tid space 533 * @rcd: the receive context 534 * @qp: the qp 535 * 536 * The qp is inserted at the tail of the rcd 537 * wait queue and the HFI1_S_WAIT_TID_SPACE s_flag is set. 538 * 539 * Must hold the qp s_lock and the exp_lock. 540 */ 541 static void queue_qp_for_tid_wait(struct hfi1_ctxtdata *rcd, 542 struct tid_queue *queue, struct rvt_qp *qp) 543 __must_hold(&rcd->exp_lock) __must_hold(&qp->s_lock) 544 { 545 struct hfi1_qp_priv *priv = qp->priv; 546 547 lockdep_assert_held(&qp->s_lock); 548 lockdep_assert_held(&rcd->exp_lock); 549 if (list_empty(&priv->tid_wait)) { 550 qp->s_flags |= HFI1_S_WAIT_TID_SPACE; 551 list_add_tail(&priv->tid_wait, &queue->queue_head); 552 priv->tid_enqueue = ++queue->enqueue; 553 rcd->dd->verbs_dev.n_tidwait++; 554 trace_hfi1_qpsleep(qp, HFI1_S_WAIT_TID_SPACE); 555 rvt_get_qp(qp); 556 } 557 } 558 559 /** 560 * __trigger_tid_waiter - trigger tid waiter 561 * @qp: the qp 562 * 563 * This is a private entrance to schedule the qp 564 * assuming the caller is holding the qp->s_lock. 565 */ 566 static void __trigger_tid_waiter(struct rvt_qp *qp) 567 __must_hold(&qp->s_lock) 568 { 569 lockdep_assert_held(&qp->s_lock); 570 if (!(qp->s_flags & HFI1_S_WAIT_TID_SPACE)) 571 return; 572 trace_hfi1_qpwakeup(qp, HFI1_S_WAIT_TID_SPACE); 573 hfi1_schedule_send(qp); 574 } 575 576 /** 577 * tid_rdma_schedule_tid_wakeup - schedule wakeup for a qp 578 * @qp - the qp 579 * 580 * trigger a schedule or a waiting qp in a deadlock 581 * safe manner. The qp reference is held prior 582 * to this call via first_qp(). 583 * 584 * If the qp trigger was already scheduled (!rval) 585 * the the reference is dropped, otherwise the resume 586 * or the destroy cancel will dispatch the reference. 587 */ 588 static void tid_rdma_schedule_tid_wakeup(struct rvt_qp *qp) 589 { 590 struct hfi1_qp_priv *priv; 591 struct hfi1_ibport *ibp; 592 struct hfi1_pportdata *ppd; 593 struct hfi1_devdata *dd; 594 bool rval; 595 596 if (!qp) 597 return; 598 599 priv = qp->priv; 600 ibp = to_iport(qp->ibqp.device, qp->port_num); 601 ppd = ppd_from_ibp(ibp); 602 dd = dd_from_ibdev(qp->ibqp.device); 603 604 rval = queue_work_on(priv->s_sde ? 605 priv->s_sde->cpu : 606 cpumask_first(cpumask_of_node(dd->node)), 607 ppd->hfi1_wq, 608 &priv->tid_rdma.trigger_work); 609 if (!rval) 610 rvt_put_qp(qp); 611 } 612 613 /** 614 * tid_rdma_trigger_resume - field a trigger work request 615 * @work - the work item 616 * 617 * Complete the off qp trigger processing by directly 618 * calling the progress routine. 619 */ 620 static void tid_rdma_trigger_resume(struct work_struct *work) 621 { 622 struct tid_rdma_qp_params *tr; 623 struct hfi1_qp_priv *priv; 624 struct rvt_qp *qp; 625 626 tr = container_of(work, struct tid_rdma_qp_params, trigger_work); 627 priv = container_of(tr, struct hfi1_qp_priv, tid_rdma); 628 qp = priv->owner; 629 spin_lock_irq(&qp->s_lock); 630 if (qp->s_flags & HFI1_S_WAIT_TID_SPACE) { 631 spin_unlock_irq(&qp->s_lock); 632 hfi1_do_send(priv->owner, true); 633 } else { 634 spin_unlock_irq(&qp->s_lock); 635 } 636 rvt_put_qp(qp); 637 } 638 639 /** 640 * tid_rdma_flush_wait - unwind any tid space wait 641 * 642 * This is called when resetting a qp to 643 * allow a destroy or reset to get rid 644 * of any tid space linkage and reference counts. 645 */ 646 static void _tid_rdma_flush_wait(struct rvt_qp *qp, struct tid_queue *queue) 647 __must_hold(&qp->s_lock) 648 { 649 struct hfi1_qp_priv *priv; 650 651 if (!qp) 652 return; 653 lockdep_assert_held(&qp->s_lock); 654 priv = qp->priv; 655 qp->s_flags &= ~HFI1_S_WAIT_TID_SPACE; 656 spin_lock(&priv->rcd->exp_lock); 657 if (!list_empty(&priv->tid_wait)) { 658 list_del_init(&priv->tid_wait); 659 qp->s_flags &= ~HFI1_S_WAIT_TID_SPACE; 660 queue->dequeue++; 661 rvt_put_qp(qp); 662 } 663 spin_unlock(&priv->rcd->exp_lock); 664 } 665 666 void hfi1_tid_rdma_flush_wait(struct rvt_qp *qp) 667 __must_hold(&qp->s_lock) 668 { 669 struct hfi1_qp_priv *priv = qp->priv; 670 671 _tid_rdma_flush_wait(qp, &priv->rcd->flow_queue); 672 _tid_rdma_flush_wait(qp, &priv->rcd->rarr_queue); 673 } 674 675 /* Flow functions */ 676 /** 677 * kern_reserve_flow - allocate a hardware flow 678 * @rcd - the context to use for allocation 679 * @last - the index of the preferred flow. Use RXE_NUM_TID_FLOWS to 680 * signify "don't care". 681 * 682 * Use a bit mask based allocation to reserve a hardware 683 * flow for use in receiving KDETH data packets. If a preferred flow is 684 * specified the function will attempt to reserve that flow again, if 685 * available. 686 * 687 * The exp_lock must be held. 688 * 689 * Return: 690 * On success: a value postive value between 0 and RXE_NUM_TID_FLOWS - 1 691 * On failure: -EAGAIN 692 */ 693 static int kern_reserve_flow(struct hfi1_ctxtdata *rcd, int last) 694 __must_hold(&rcd->exp_lock) 695 { 696 int nr; 697 698 /* Attempt to reserve the preferred flow index */ 699 if (last >= 0 && last < RXE_NUM_TID_FLOWS && 700 !test_and_set_bit(last, &rcd->flow_mask)) 701 return last; 702 703 nr = ffz(rcd->flow_mask); 704 BUILD_BUG_ON(RXE_NUM_TID_FLOWS >= 705 (sizeof(rcd->flow_mask) * BITS_PER_BYTE)); 706 if (nr > (RXE_NUM_TID_FLOWS - 1)) 707 return -EAGAIN; 708 set_bit(nr, &rcd->flow_mask); 709 return nr; 710 } 711 712 static void kern_set_hw_flow(struct hfi1_ctxtdata *rcd, u32 generation, 713 u32 flow_idx) 714 { 715 u64 reg; 716 717 reg = ((u64)generation << HFI1_KDETH_BTH_SEQ_SHIFT) | 718 RCV_TID_FLOW_TABLE_CTRL_FLOW_VALID_SMASK | 719 RCV_TID_FLOW_TABLE_CTRL_KEEP_AFTER_SEQ_ERR_SMASK | 720 RCV_TID_FLOW_TABLE_CTRL_KEEP_ON_GEN_ERR_SMASK | 721 RCV_TID_FLOW_TABLE_STATUS_SEQ_MISMATCH_SMASK | 722 RCV_TID_FLOW_TABLE_STATUS_GEN_MISMATCH_SMASK; 723 724 if (generation != KERN_GENERATION_RESERVED) 725 reg |= RCV_TID_FLOW_TABLE_CTRL_HDR_SUPP_EN_SMASK; 726 727 write_uctxt_csr(rcd->dd, rcd->ctxt, 728 RCV_TID_FLOW_TABLE + 8 * flow_idx, reg); 729 } 730 731 static u32 kern_setup_hw_flow(struct hfi1_ctxtdata *rcd, u32 flow_idx) 732 __must_hold(&rcd->exp_lock) 733 { 734 u32 generation = rcd->flows[flow_idx].generation; 735 736 kern_set_hw_flow(rcd, generation, flow_idx); 737 return generation; 738 } 739 740 static u32 kern_flow_generation_next(u32 gen) 741 { 742 u32 generation = mask_generation(gen + 1); 743 744 if (generation == KERN_GENERATION_RESERVED) 745 generation = mask_generation(generation + 1); 746 return generation; 747 } 748 749 static void kern_clear_hw_flow(struct hfi1_ctxtdata *rcd, u32 flow_idx) 750 __must_hold(&rcd->exp_lock) 751 { 752 rcd->flows[flow_idx].generation = 753 kern_flow_generation_next(rcd->flows[flow_idx].generation); 754 kern_set_hw_flow(rcd, KERN_GENERATION_RESERVED, flow_idx); 755 } 756 757 int hfi1_kern_setup_hw_flow(struct hfi1_ctxtdata *rcd, struct rvt_qp *qp) 758 { 759 struct hfi1_qp_priv *qpriv = (struct hfi1_qp_priv *)qp->priv; 760 struct tid_flow_state *fs = &qpriv->flow_state; 761 struct rvt_qp *fqp; 762 unsigned long flags; 763 int ret = 0; 764 765 /* The QP already has an allocated flow */ 766 if (fs->index != RXE_NUM_TID_FLOWS) 767 return ret; 768 769 spin_lock_irqsave(&rcd->exp_lock, flags); 770 if (kernel_tid_waiters(rcd, &rcd->flow_queue, qp)) 771 goto queue; 772 773 ret = kern_reserve_flow(rcd, fs->last_index); 774 if (ret < 0) 775 goto queue; 776 fs->index = ret; 777 fs->last_index = fs->index; 778 779 /* Generation received in a RESYNC overrides default flow generation */ 780 if (fs->generation != KERN_GENERATION_RESERVED) 781 rcd->flows[fs->index].generation = fs->generation; 782 fs->generation = kern_setup_hw_flow(rcd, fs->index); 783 fs->psn = 0; 784 dequeue_tid_waiter(rcd, &rcd->flow_queue, qp); 785 /* get head before dropping lock */ 786 fqp = first_qp(rcd, &rcd->flow_queue); 787 spin_unlock_irqrestore(&rcd->exp_lock, flags); 788 789 tid_rdma_schedule_tid_wakeup(fqp); 790 return 0; 791 queue: 792 queue_qp_for_tid_wait(rcd, &rcd->flow_queue, qp); 793 spin_unlock_irqrestore(&rcd->exp_lock, flags); 794 return -EAGAIN; 795 } 796 797 void hfi1_kern_clear_hw_flow(struct hfi1_ctxtdata *rcd, struct rvt_qp *qp) 798 { 799 struct hfi1_qp_priv *qpriv = (struct hfi1_qp_priv *)qp->priv; 800 struct tid_flow_state *fs = &qpriv->flow_state; 801 struct rvt_qp *fqp; 802 unsigned long flags; 803 804 if (fs->index >= RXE_NUM_TID_FLOWS) 805 return; 806 spin_lock_irqsave(&rcd->exp_lock, flags); 807 kern_clear_hw_flow(rcd, fs->index); 808 clear_bit(fs->index, &rcd->flow_mask); 809 fs->index = RXE_NUM_TID_FLOWS; 810 fs->psn = 0; 811 fs->generation = KERN_GENERATION_RESERVED; 812 813 /* get head before dropping lock */ 814 fqp = first_qp(rcd, &rcd->flow_queue); 815 spin_unlock_irqrestore(&rcd->exp_lock, flags); 816 817 if (fqp == qp) { 818 __trigger_tid_waiter(fqp); 819 rvt_put_qp(fqp); 820 } else { 821 tid_rdma_schedule_tid_wakeup(fqp); 822 } 823 } 824 825 void hfi1_kern_init_ctxt_generations(struct hfi1_ctxtdata *rcd) 826 { 827 int i; 828 829 for (i = 0; i < RXE_NUM_TID_FLOWS; i++) { 830 rcd->flows[i].generation = mask_generation(prandom_u32()); 831 kern_set_hw_flow(rcd, KERN_GENERATION_RESERVED, i); 832 } 833 } 834 835 /* TID allocation functions */ 836 static u8 trdma_pset_order(struct tid_rdma_pageset *s) 837 { 838 u8 count = s->count; 839 840 return ilog2(count) + 1; 841 } 842 843 /** 844 * tid_rdma_find_phys_blocks_4k - get groups base on mr info 845 * @npages - number of pages 846 * @pages - pointer to an array of page structs 847 * @list - page set array to return 848 * 849 * This routine returns the number of groups associated with 850 * the current sge information. This implementation is based 851 * on the expected receive find_phys_blocks() adjusted to 852 * use the MR information vs. the pfn. 853 * 854 * Return: 855 * the number of RcvArray entries 856 */ 857 static u32 tid_rdma_find_phys_blocks_4k(struct tid_rdma_flow *flow, 858 struct page **pages, 859 u32 npages, 860 struct tid_rdma_pageset *list) 861 { 862 u32 pagecount, pageidx, setcount = 0, i; 863 void *vaddr, *this_vaddr; 864 865 if (!npages) 866 return 0; 867 868 /* 869 * Look for sets of physically contiguous pages in the user buffer. 870 * This will allow us to optimize Expected RcvArray entry usage by 871 * using the bigger supported sizes. 872 */ 873 vaddr = page_address(pages[0]); 874 trace_hfi1_tid_flow_page(flow->req->qp, flow, 0, 0, 0, vaddr); 875 for (pageidx = 0, pagecount = 1, i = 1; i <= npages; i++) { 876 this_vaddr = i < npages ? page_address(pages[i]) : NULL; 877 trace_hfi1_tid_flow_page(flow->req->qp, flow, i, 0, 0, 878 this_vaddr); 879 /* 880 * If the vaddr's are not sequential, pages are not physically 881 * contiguous. 882 */ 883 if (this_vaddr != (vaddr + PAGE_SIZE)) { 884 /* 885 * At this point we have to loop over the set of 886 * physically contiguous pages and break them down it 887 * sizes supported by the HW. 888 * There are two main constraints: 889 * 1. The max buffer size is MAX_EXPECTED_BUFFER. 890 * If the total set size is bigger than that 891 * program only a MAX_EXPECTED_BUFFER chunk. 892 * 2. The buffer size has to be a power of two. If 893 * it is not, round down to the closes power of 894 * 2 and program that size. 895 */ 896 while (pagecount) { 897 int maxpages = pagecount; 898 u32 bufsize = pagecount * PAGE_SIZE; 899 900 if (bufsize > MAX_EXPECTED_BUFFER) 901 maxpages = 902 MAX_EXPECTED_BUFFER >> 903 PAGE_SHIFT; 904 else if (!is_power_of_2(bufsize)) 905 maxpages = 906 rounddown_pow_of_two(bufsize) >> 907 PAGE_SHIFT; 908 909 list[setcount].idx = pageidx; 910 list[setcount].count = maxpages; 911 trace_hfi1_tid_pageset(flow->req->qp, setcount, 912 list[setcount].idx, 913 list[setcount].count); 914 pagecount -= maxpages; 915 pageidx += maxpages; 916 setcount++; 917 } 918 pageidx = i; 919 pagecount = 1; 920 vaddr = this_vaddr; 921 } else { 922 vaddr += PAGE_SIZE; 923 pagecount++; 924 } 925 } 926 /* insure we always return an even number of sets */ 927 if (setcount & 1) 928 list[setcount++].count = 0; 929 return setcount; 930 } 931 932 /** 933 * tid_flush_pages - dump out pages into pagesets 934 * @list - list of pagesets 935 * @idx - pointer to current page index 936 * @pages - number of pages to dump 937 * @sets - current number of pagesset 938 * 939 * This routine flushes out accumuated pages. 940 * 941 * To insure an even number of sets the 942 * code may add a filler. 943 * 944 * This can happen with when pages is not 945 * a power of 2 or pages is a power of 2 946 * less than the maximum pages. 947 * 948 * Return: 949 * The new number of sets 950 */ 951 952 static u32 tid_flush_pages(struct tid_rdma_pageset *list, 953 u32 *idx, u32 pages, u32 sets) 954 { 955 while (pages) { 956 u32 maxpages = pages; 957 958 if (maxpages > MAX_EXPECTED_PAGES) 959 maxpages = MAX_EXPECTED_PAGES; 960 else if (!is_power_of_2(maxpages)) 961 maxpages = rounddown_pow_of_two(maxpages); 962 list[sets].idx = *idx; 963 list[sets++].count = maxpages; 964 *idx += maxpages; 965 pages -= maxpages; 966 } 967 /* might need a filler */ 968 if (sets & 1) 969 list[sets++].count = 0; 970 return sets; 971 } 972 973 /** 974 * tid_rdma_find_phys_blocks_8k - get groups base on mr info 975 * @pages - pointer to an array of page structs 976 * @npages - number of pages 977 * @list - page set array to return 978 * 979 * This routine parses an array of pages to compute pagesets 980 * in an 8k compatible way. 981 * 982 * pages are tested two at a time, i, i + 1 for contiguous 983 * pages and i - 1 and i contiguous pages. 984 * 985 * If any condition is false, any accumlated pages are flushed and 986 * v0,v1 are emitted as separate PAGE_SIZE pagesets 987 * 988 * Otherwise, the current 8k is totaled for a future flush. 989 * 990 * Return: 991 * The number of pagesets 992 * list set with the returned number of pagesets 993 * 994 */ 995 static u32 tid_rdma_find_phys_blocks_8k(struct tid_rdma_flow *flow, 996 struct page **pages, 997 u32 npages, 998 struct tid_rdma_pageset *list) 999 { 1000 u32 idx, sets = 0, i; 1001 u32 pagecnt = 0; 1002 void *v0, *v1, *vm1; 1003 1004 if (!npages) 1005 return 0; 1006 for (idx = 0, i = 0, vm1 = NULL; i < npages; i += 2) { 1007 /* get a new v0 */ 1008 v0 = page_address(pages[i]); 1009 trace_hfi1_tid_flow_page(flow->req->qp, flow, i, 1, 0, v0); 1010 v1 = i + 1 < npages ? 1011 page_address(pages[i + 1]) : NULL; 1012 trace_hfi1_tid_flow_page(flow->req->qp, flow, i, 1, 1, v1); 1013 /* compare i, i + 1 vaddr */ 1014 if (v1 != (v0 + PAGE_SIZE)) { 1015 /* flush out pages */ 1016 sets = tid_flush_pages(list, &idx, pagecnt, sets); 1017 /* output v0,v1 as two pagesets */ 1018 list[sets].idx = idx++; 1019 list[sets++].count = 1; 1020 if (v1) { 1021 list[sets].count = 1; 1022 list[sets++].idx = idx++; 1023 } else { 1024 list[sets++].count = 0; 1025 } 1026 vm1 = NULL; 1027 pagecnt = 0; 1028 continue; 1029 } 1030 /* i,i+1 consecutive, look at i-1,i */ 1031 if (vm1 && v0 != (vm1 + PAGE_SIZE)) { 1032 /* flush out pages */ 1033 sets = tid_flush_pages(list, &idx, pagecnt, sets); 1034 pagecnt = 0; 1035 } 1036 /* pages will always be a multiple of 8k */ 1037 pagecnt += 2; 1038 /* save i-1 */ 1039 vm1 = v1; 1040 /* move to next pair */ 1041 } 1042 /* dump residual pages at end */ 1043 sets = tid_flush_pages(list, &idx, npages - idx, sets); 1044 /* by design cannot be odd sets */ 1045 WARN_ON(sets & 1); 1046 return sets; 1047 } 1048 1049 /** 1050 * Find pages for one segment of a sge array represented by @ss. The function 1051 * does not check the sge, the sge must have been checked for alignment with a 1052 * prior call to hfi1_kern_trdma_ok. Other sge checking is done as part of 1053 * rvt_lkey_ok and rvt_rkey_ok. Also, the function only modifies the local sge 1054 * copy maintained in @ss->sge, the original sge is not modified. 1055 * 1056 * Unlike IB RDMA WRITE, we can't decrement ss->num_sge here because we are not 1057 * releasing the MR reference count at the same time. Otherwise, we'll "leak" 1058 * references to the MR. This difference requires that we keep track of progress 1059 * into the sg_list. This is done by the cur_seg cursor in the tid_rdma_request 1060 * structure. 1061 */ 1062 static u32 kern_find_pages(struct tid_rdma_flow *flow, 1063 struct page **pages, 1064 struct rvt_sge_state *ss, bool *last) 1065 { 1066 struct tid_rdma_request *req = flow->req; 1067 struct rvt_sge *sge = &ss->sge; 1068 u32 length = flow->req->seg_len; 1069 u32 len = PAGE_SIZE; 1070 u32 i = 0; 1071 1072 while (length && req->isge < ss->num_sge) { 1073 pages[i++] = virt_to_page(sge->vaddr); 1074 1075 sge->vaddr += len; 1076 sge->length -= len; 1077 sge->sge_length -= len; 1078 if (!sge->sge_length) { 1079 if (++req->isge < ss->num_sge) 1080 *sge = ss->sg_list[req->isge - 1]; 1081 } else if (sge->length == 0 && sge->mr->lkey) { 1082 if (++sge->n >= RVT_SEGSZ) { 1083 ++sge->m; 1084 sge->n = 0; 1085 } 1086 sge->vaddr = sge->mr->map[sge->m]->segs[sge->n].vaddr; 1087 sge->length = sge->mr->map[sge->m]->segs[sge->n].length; 1088 } 1089 length -= len; 1090 } 1091 1092 flow->length = flow->req->seg_len - length; 1093 *last = req->isge == ss->num_sge ? false : true; 1094 return i; 1095 } 1096 1097 static void dma_unmap_flow(struct tid_rdma_flow *flow) 1098 { 1099 struct hfi1_devdata *dd; 1100 int i; 1101 struct tid_rdma_pageset *pset; 1102 1103 dd = flow->req->rcd->dd; 1104 for (i = 0, pset = &flow->pagesets[0]; i < flow->npagesets; 1105 i++, pset++) { 1106 if (pset->count && pset->addr) { 1107 dma_unmap_page(&dd->pcidev->dev, 1108 pset->addr, 1109 PAGE_SIZE * pset->count, 1110 DMA_FROM_DEVICE); 1111 pset->mapped = 0; 1112 } 1113 } 1114 } 1115 1116 static int dma_map_flow(struct tid_rdma_flow *flow, struct page **pages) 1117 { 1118 int i; 1119 struct hfi1_devdata *dd = flow->req->rcd->dd; 1120 struct tid_rdma_pageset *pset; 1121 1122 for (i = 0, pset = &flow->pagesets[0]; i < flow->npagesets; 1123 i++, pset++) { 1124 if (pset->count) { 1125 pset->addr = dma_map_page(&dd->pcidev->dev, 1126 pages[pset->idx], 1127 0, 1128 PAGE_SIZE * pset->count, 1129 DMA_FROM_DEVICE); 1130 1131 if (dma_mapping_error(&dd->pcidev->dev, pset->addr)) { 1132 dma_unmap_flow(flow); 1133 return -ENOMEM; 1134 } 1135 pset->mapped = 1; 1136 } 1137 } 1138 return 0; 1139 } 1140 1141 static inline bool dma_mapped(struct tid_rdma_flow *flow) 1142 { 1143 return !!flow->pagesets[0].mapped; 1144 } 1145 1146 /* 1147 * Get pages pointers and identify contiguous physical memory chunks for a 1148 * segment. All segments are of length flow->req->seg_len. 1149 */ 1150 static int kern_get_phys_blocks(struct tid_rdma_flow *flow, 1151 struct page **pages, 1152 struct rvt_sge_state *ss, bool *last) 1153 { 1154 u8 npages; 1155 1156 /* Reuse previously computed pagesets, if any */ 1157 if (flow->npagesets) { 1158 trace_hfi1_tid_flow_alloc(flow->req->qp, flow->req->setup_head, 1159 flow); 1160 if (!dma_mapped(flow)) 1161 return dma_map_flow(flow, pages); 1162 return 0; 1163 } 1164 1165 npages = kern_find_pages(flow, pages, ss, last); 1166 1167 if (flow->req->qp->pmtu == enum_to_mtu(OPA_MTU_4096)) 1168 flow->npagesets = 1169 tid_rdma_find_phys_blocks_4k(flow, pages, npages, 1170 flow->pagesets); 1171 else 1172 flow->npagesets = 1173 tid_rdma_find_phys_blocks_8k(flow, pages, npages, 1174 flow->pagesets); 1175 1176 return dma_map_flow(flow, pages); 1177 } 1178 1179 static inline void kern_add_tid_node(struct tid_rdma_flow *flow, 1180 struct hfi1_ctxtdata *rcd, char *s, 1181 struct tid_group *grp, u8 cnt) 1182 { 1183 struct kern_tid_node *node = &flow->tnode[flow->tnode_cnt++]; 1184 1185 WARN_ON_ONCE(flow->tnode_cnt >= 1186 (TID_RDMA_MAX_SEGMENT_SIZE >> PAGE_SHIFT)); 1187 if (WARN_ON_ONCE(cnt & 1)) 1188 dd_dev_err(rcd->dd, 1189 "unexpected odd allocation cnt %u map 0x%x used %u", 1190 cnt, grp->map, grp->used); 1191 1192 node->grp = grp; 1193 node->map = grp->map; 1194 node->cnt = cnt; 1195 trace_hfi1_tid_node_add(flow->req->qp, s, flow->tnode_cnt - 1, 1196 grp->base, grp->map, grp->used, cnt); 1197 } 1198 1199 /* 1200 * Try to allocate pageset_count TID's from TID groups for a context 1201 * 1202 * This function allocates TID's without moving groups between lists or 1203 * modifying grp->map. This is done as follows, being cogizant of the lists 1204 * between which the TID groups will move: 1205 * 1. First allocate complete groups of 8 TID's since this is more efficient, 1206 * these groups will move from group->full without affecting used 1207 * 2. If more TID's are needed allocate from used (will move from used->full or 1208 * stay in used) 1209 * 3. If we still don't have the required number of TID's go back and look again 1210 * at a complete group (will move from group->used) 1211 */ 1212 static int kern_alloc_tids(struct tid_rdma_flow *flow) 1213 { 1214 struct hfi1_ctxtdata *rcd = flow->req->rcd; 1215 struct hfi1_devdata *dd = rcd->dd; 1216 u32 ngroups, pageidx = 0; 1217 struct tid_group *group = NULL, *used; 1218 u8 use; 1219 1220 flow->tnode_cnt = 0; 1221 ngroups = flow->npagesets / dd->rcv_entries.group_size; 1222 if (!ngroups) 1223 goto used_list; 1224 1225 /* First look at complete groups */ 1226 list_for_each_entry(group, &rcd->tid_group_list.list, list) { 1227 kern_add_tid_node(flow, rcd, "complete groups", group, 1228 group->size); 1229 1230 pageidx += group->size; 1231 if (!--ngroups) 1232 break; 1233 } 1234 1235 if (pageidx >= flow->npagesets) 1236 goto ok; 1237 1238 used_list: 1239 /* Now look at partially used groups */ 1240 list_for_each_entry(used, &rcd->tid_used_list.list, list) { 1241 use = min_t(u32, flow->npagesets - pageidx, 1242 used->size - used->used); 1243 kern_add_tid_node(flow, rcd, "used groups", used, use); 1244 1245 pageidx += use; 1246 if (pageidx >= flow->npagesets) 1247 goto ok; 1248 } 1249 1250 /* 1251 * Look again at a complete group, continuing from where we left. 1252 * However, if we are at the head, we have reached the end of the 1253 * complete groups list from the first loop above 1254 */ 1255 if (group && &group->list == &rcd->tid_group_list.list) 1256 goto bail_eagain; 1257 group = list_prepare_entry(group, &rcd->tid_group_list.list, 1258 list); 1259 if (list_is_last(&group->list, &rcd->tid_group_list.list)) 1260 goto bail_eagain; 1261 group = list_next_entry(group, list); 1262 use = min_t(u32, flow->npagesets - pageidx, group->size); 1263 kern_add_tid_node(flow, rcd, "complete continue", group, use); 1264 pageidx += use; 1265 if (pageidx >= flow->npagesets) 1266 goto ok; 1267 bail_eagain: 1268 trace_hfi1_msg_alloc_tids(flow->req->qp, " insufficient tids: needed ", 1269 (u64)flow->npagesets); 1270 return -EAGAIN; 1271 ok: 1272 return 0; 1273 } 1274 1275 static void kern_program_rcv_group(struct tid_rdma_flow *flow, int grp_num, 1276 u32 *pset_idx) 1277 { 1278 struct hfi1_ctxtdata *rcd = flow->req->rcd; 1279 struct hfi1_devdata *dd = rcd->dd; 1280 struct kern_tid_node *node = &flow->tnode[grp_num]; 1281 struct tid_group *grp = node->grp; 1282 struct tid_rdma_pageset *pset; 1283 u32 pmtu_pg = flow->req->qp->pmtu >> PAGE_SHIFT; 1284 u32 rcventry, npages = 0, pair = 0, tidctrl; 1285 u8 i, cnt = 0; 1286 1287 for (i = 0; i < grp->size; i++) { 1288 rcventry = grp->base + i; 1289 1290 if (node->map & BIT(i) || cnt >= node->cnt) { 1291 rcv_array_wc_fill(dd, rcventry); 1292 continue; 1293 } 1294 pset = &flow->pagesets[(*pset_idx)++]; 1295 if (pset->count) { 1296 hfi1_put_tid(dd, rcventry, PT_EXPECTED, 1297 pset->addr, trdma_pset_order(pset)); 1298 } else { 1299 hfi1_put_tid(dd, rcventry, PT_INVALID, 0, 0); 1300 } 1301 npages += pset->count; 1302 1303 rcventry -= rcd->expected_base; 1304 tidctrl = pair ? 0x3 : rcventry & 0x1 ? 0x2 : 0x1; 1305 /* 1306 * A single TID entry will be used to use a rcvarr pair (with 1307 * tidctrl 0x3), if ALL these are true (a) the bit pos is even 1308 * (b) the group map shows current and the next bits as free 1309 * indicating two consecutive rcvarry entries are available (c) 1310 * we actually need 2 more entries 1311 */ 1312 pair = !(i & 0x1) && !((node->map >> i) & 0x3) && 1313 node->cnt >= cnt + 2; 1314 if (!pair) { 1315 if (!pset->count) 1316 tidctrl = 0x1; 1317 flow->tid_entry[flow->tidcnt++] = 1318 EXP_TID_SET(IDX, rcventry >> 1) | 1319 EXP_TID_SET(CTRL, tidctrl) | 1320 EXP_TID_SET(LEN, npages); 1321 trace_hfi1_tid_entry_alloc(/* entry */ 1322 flow->req->qp, flow->tidcnt - 1, 1323 flow->tid_entry[flow->tidcnt - 1]); 1324 1325 /* Efficient DIV_ROUND_UP(npages, pmtu_pg) */ 1326 flow->npkts += (npages + pmtu_pg - 1) >> ilog2(pmtu_pg); 1327 npages = 0; 1328 } 1329 1330 if (grp->used == grp->size - 1) 1331 tid_group_move(grp, &rcd->tid_used_list, 1332 &rcd->tid_full_list); 1333 else if (!grp->used) 1334 tid_group_move(grp, &rcd->tid_group_list, 1335 &rcd->tid_used_list); 1336 1337 grp->used++; 1338 grp->map |= BIT(i); 1339 cnt++; 1340 } 1341 } 1342 1343 static void kern_unprogram_rcv_group(struct tid_rdma_flow *flow, int grp_num) 1344 { 1345 struct hfi1_ctxtdata *rcd = flow->req->rcd; 1346 struct hfi1_devdata *dd = rcd->dd; 1347 struct kern_tid_node *node = &flow->tnode[grp_num]; 1348 struct tid_group *grp = node->grp; 1349 u32 rcventry; 1350 u8 i, cnt = 0; 1351 1352 for (i = 0; i < grp->size; i++) { 1353 rcventry = grp->base + i; 1354 1355 if (node->map & BIT(i) || cnt >= node->cnt) { 1356 rcv_array_wc_fill(dd, rcventry); 1357 continue; 1358 } 1359 1360 hfi1_put_tid(dd, rcventry, PT_INVALID, 0, 0); 1361 1362 grp->used--; 1363 grp->map &= ~BIT(i); 1364 cnt++; 1365 1366 if (grp->used == grp->size - 1) 1367 tid_group_move(grp, &rcd->tid_full_list, 1368 &rcd->tid_used_list); 1369 else if (!grp->used) 1370 tid_group_move(grp, &rcd->tid_used_list, 1371 &rcd->tid_group_list); 1372 } 1373 if (WARN_ON_ONCE(cnt & 1)) { 1374 struct hfi1_ctxtdata *rcd = flow->req->rcd; 1375 struct hfi1_devdata *dd = rcd->dd; 1376 1377 dd_dev_err(dd, "unexpected odd free cnt %u map 0x%x used %u", 1378 cnt, grp->map, grp->used); 1379 } 1380 } 1381 1382 static void kern_program_rcvarray(struct tid_rdma_flow *flow) 1383 { 1384 u32 pset_idx = 0; 1385 int i; 1386 1387 flow->npkts = 0; 1388 flow->tidcnt = 0; 1389 for (i = 0; i < flow->tnode_cnt; i++) 1390 kern_program_rcv_group(flow, i, &pset_idx); 1391 trace_hfi1_tid_flow_alloc(flow->req->qp, flow->req->setup_head, flow); 1392 } 1393 1394 /** 1395 * hfi1_kern_exp_rcv_setup() - setup TID's and flow for one segment of a 1396 * TID RDMA request 1397 * 1398 * @req: TID RDMA request for which the segment/flow is being set up 1399 * @ss: sge state, maintains state across successive segments of a sge 1400 * @last: set to true after the last sge segment has been processed 1401 * 1402 * This function 1403 * (1) finds a free flow entry in the flow circular buffer 1404 * (2) finds pages and continuous physical chunks constituing one segment 1405 * of an sge 1406 * (3) allocates TID group entries for those chunks 1407 * (4) programs rcvarray entries in the hardware corresponding to those 1408 * TID's 1409 * (5) computes a tidarray with formatted TID entries which can be sent 1410 * to the sender 1411 * (6) Reserves and programs HW flows. 1412 * (7) It also manages queing the QP when TID/flow resources are not 1413 * available. 1414 * 1415 * @req points to struct tid_rdma_request of which the segments are a part. The 1416 * function uses qp, rcd and seg_len members of @req. In the absence of errors, 1417 * req->flow_idx is the index of the flow which has been prepared in this 1418 * invocation of function call. With flow = &req->flows[req->flow_idx], 1419 * flow->tid_entry contains the TID array which the sender can use for TID RDMA 1420 * sends and flow->npkts contains number of packets required to send the 1421 * segment. 1422 * 1423 * hfi1_check_sge_align should be called prior to calling this function and if 1424 * it signals error TID RDMA cannot be used for this sge and this function 1425 * should not be called. 1426 * 1427 * For the queuing, caller must hold the flow->req->qp s_lock from the send 1428 * engine and the function will procure the exp_lock. 1429 * 1430 * Return: 1431 * The function returns -EAGAIN if sufficient number of TID/flow resources to 1432 * map the segment could not be allocated. In this case the function should be 1433 * called again with previous arguments to retry the TID allocation. There are 1434 * no other error returns. The function returns 0 on success. 1435 */ 1436 int hfi1_kern_exp_rcv_setup(struct tid_rdma_request *req, 1437 struct rvt_sge_state *ss, bool *last) 1438 __must_hold(&req->qp->s_lock) 1439 { 1440 struct tid_rdma_flow *flow = &req->flows[req->setup_head]; 1441 struct hfi1_ctxtdata *rcd = req->rcd; 1442 struct hfi1_qp_priv *qpriv = req->qp->priv; 1443 unsigned long flags; 1444 struct rvt_qp *fqp; 1445 u16 clear_tail = req->clear_tail; 1446 1447 lockdep_assert_held(&req->qp->s_lock); 1448 /* 1449 * We return error if either (a) we don't have space in the flow 1450 * circular buffer, or (b) we already have max entries in the buffer. 1451 * Max entries depend on the type of request we are processing and the 1452 * negotiated TID RDMA parameters. 1453 */ 1454 if (!CIRC_SPACE(req->setup_head, clear_tail, MAX_FLOWS) || 1455 CIRC_CNT(req->setup_head, clear_tail, MAX_FLOWS) >= 1456 req->n_flows) 1457 return -EINVAL; 1458 1459 /* 1460 * Get pages, identify contiguous physical memory chunks for the segment 1461 * If we can not determine a DMA address mapping we will treat it just 1462 * like if we ran out of space above. 1463 */ 1464 if (kern_get_phys_blocks(flow, qpriv->pages, ss, last)) { 1465 hfi1_wait_kmem(flow->req->qp); 1466 return -ENOMEM; 1467 } 1468 1469 spin_lock_irqsave(&rcd->exp_lock, flags); 1470 if (kernel_tid_waiters(rcd, &rcd->rarr_queue, flow->req->qp)) 1471 goto queue; 1472 1473 /* 1474 * At this point we know the number of pagesets and hence the number of 1475 * TID's to map the segment. Allocate the TID's from the TID groups. If 1476 * we cannot allocate the required number we exit and try again later 1477 */ 1478 if (kern_alloc_tids(flow)) 1479 goto queue; 1480 /* 1481 * Finally program the TID entries with the pagesets, compute the 1482 * tidarray and enable the HW flow 1483 */ 1484 kern_program_rcvarray(flow); 1485 1486 /* 1487 * Setup the flow state with relevant information. 1488 * This information is used for tracking the sequence of data packets 1489 * for the segment. 1490 * The flow is setup here as this is the most accurate time and place 1491 * to do so. Doing at a later time runs the risk of the flow data in 1492 * qpriv getting out of sync. 1493 */ 1494 memset(&flow->flow_state, 0x0, sizeof(flow->flow_state)); 1495 flow->idx = qpriv->flow_state.index; 1496 flow->flow_state.generation = qpriv->flow_state.generation; 1497 flow->flow_state.spsn = qpriv->flow_state.psn; 1498 flow->flow_state.lpsn = flow->flow_state.spsn + flow->npkts - 1; 1499 flow->flow_state.r_next_psn = 1500 full_flow_psn(flow, flow->flow_state.spsn); 1501 qpriv->flow_state.psn += flow->npkts; 1502 1503 dequeue_tid_waiter(rcd, &rcd->rarr_queue, flow->req->qp); 1504 /* get head before dropping lock */ 1505 fqp = first_qp(rcd, &rcd->rarr_queue); 1506 spin_unlock_irqrestore(&rcd->exp_lock, flags); 1507 tid_rdma_schedule_tid_wakeup(fqp); 1508 1509 req->setup_head = (req->setup_head + 1) & (MAX_FLOWS - 1); 1510 return 0; 1511 queue: 1512 queue_qp_for_tid_wait(rcd, &rcd->rarr_queue, flow->req->qp); 1513 spin_unlock_irqrestore(&rcd->exp_lock, flags); 1514 return -EAGAIN; 1515 } 1516 1517 static void hfi1_tid_rdma_reset_flow(struct tid_rdma_flow *flow) 1518 { 1519 flow->npagesets = 0; 1520 } 1521 1522 /* 1523 * This function is called after one segment has been successfully sent to 1524 * release the flow and TID HW/SW resources for that segment. The segments for a 1525 * TID RDMA request are setup and cleared in FIFO order which is managed using a 1526 * circular buffer. 1527 */ 1528 int hfi1_kern_exp_rcv_clear(struct tid_rdma_request *req) 1529 __must_hold(&req->qp->s_lock) 1530 { 1531 struct tid_rdma_flow *flow = &req->flows[req->clear_tail]; 1532 struct hfi1_ctxtdata *rcd = req->rcd; 1533 unsigned long flags; 1534 int i; 1535 struct rvt_qp *fqp; 1536 1537 lockdep_assert_held(&req->qp->s_lock); 1538 /* Exit if we have nothing in the flow circular buffer */ 1539 if (!CIRC_CNT(req->setup_head, req->clear_tail, MAX_FLOWS)) 1540 return -EINVAL; 1541 1542 spin_lock_irqsave(&rcd->exp_lock, flags); 1543 1544 for (i = 0; i < flow->tnode_cnt; i++) 1545 kern_unprogram_rcv_group(flow, i); 1546 /* To prevent double unprogramming */ 1547 flow->tnode_cnt = 0; 1548 /* get head before dropping lock */ 1549 fqp = first_qp(rcd, &rcd->rarr_queue); 1550 spin_unlock_irqrestore(&rcd->exp_lock, flags); 1551 1552 dma_unmap_flow(flow); 1553 1554 hfi1_tid_rdma_reset_flow(flow); 1555 req->clear_tail = (req->clear_tail + 1) & (MAX_FLOWS - 1); 1556 1557 if (fqp == req->qp) { 1558 __trigger_tid_waiter(fqp); 1559 rvt_put_qp(fqp); 1560 } else { 1561 tid_rdma_schedule_tid_wakeup(fqp); 1562 } 1563 1564 return 0; 1565 } 1566 1567 /* 1568 * This function is called to release all the tid entries for 1569 * a request. 1570 */ 1571 void hfi1_kern_exp_rcv_clear_all(struct tid_rdma_request *req) 1572 __must_hold(&req->qp->s_lock) 1573 { 1574 /* Use memory barrier for proper ordering */ 1575 while (CIRC_CNT(req->setup_head, req->clear_tail, MAX_FLOWS)) { 1576 if (hfi1_kern_exp_rcv_clear(req)) 1577 break; 1578 } 1579 } 1580 1581 /** 1582 * hfi1_kern_exp_rcv_free_flows - free priviously allocated flow information 1583 * @req - the tid rdma request to be cleaned 1584 */ 1585 static void hfi1_kern_exp_rcv_free_flows(struct tid_rdma_request *req) 1586 { 1587 kfree(req->flows); 1588 req->flows = NULL; 1589 } 1590 1591 /** 1592 * __trdma_clean_swqe - clean up for large sized QPs 1593 * @qp: the queue patch 1594 * @wqe: the send wqe 1595 */ 1596 void __trdma_clean_swqe(struct rvt_qp *qp, struct rvt_swqe *wqe) 1597 { 1598 struct hfi1_swqe_priv *p = wqe->priv; 1599 1600 hfi1_kern_exp_rcv_free_flows(&p->tid_req); 1601 } 1602 1603 /* 1604 * This can be called at QP create time or in the data path. 1605 */ 1606 static int hfi1_kern_exp_rcv_alloc_flows(struct tid_rdma_request *req, 1607 gfp_t gfp) 1608 { 1609 struct tid_rdma_flow *flows; 1610 int i; 1611 1612 if (likely(req->flows)) 1613 return 0; 1614 flows = kmalloc_node(MAX_FLOWS * sizeof(*flows), gfp, 1615 req->rcd->numa_id); 1616 if (!flows) 1617 return -ENOMEM; 1618 /* mini init */ 1619 for (i = 0; i < MAX_FLOWS; i++) { 1620 flows[i].req = req; 1621 flows[i].npagesets = 0; 1622 flows[i].pagesets[0].mapped = 0; 1623 flows[i].resync_npkts = 0; 1624 } 1625 req->flows = flows; 1626 return 0; 1627 } 1628 1629 static void hfi1_init_trdma_req(struct rvt_qp *qp, 1630 struct tid_rdma_request *req) 1631 { 1632 struct hfi1_qp_priv *qpriv = qp->priv; 1633 1634 /* 1635 * Initialize various TID RDMA request variables. 1636 * These variables are "static", which is why they 1637 * can be pre-initialized here before the WRs has 1638 * even been submitted. 1639 * However, non-NULL values for these variables do not 1640 * imply that this WQE has been enabled for TID RDMA. 1641 * Drivers should check the WQE's opcode to determine 1642 * if a request is a TID RDMA one or not. 1643 */ 1644 req->qp = qp; 1645 req->rcd = qpriv->rcd; 1646 } 1647 1648 u64 hfi1_access_sw_tid_wait(const struct cntr_entry *entry, 1649 void *context, int vl, int mode, u64 data) 1650 { 1651 struct hfi1_devdata *dd = context; 1652 1653 return dd->verbs_dev.n_tidwait; 1654 } 1655 1656 static struct tid_rdma_flow *find_flow_ib(struct tid_rdma_request *req, 1657 u32 psn, u16 *fidx) 1658 { 1659 u16 head, tail; 1660 struct tid_rdma_flow *flow; 1661 1662 head = req->setup_head; 1663 tail = req->clear_tail; 1664 for ( ; CIRC_CNT(head, tail, MAX_FLOWS); 1665 tail = CIRC_NEXT(tail, MAX_FLOWS)) { 1666 flow = &req->flows[tail]; 1667 if (cmp_psn(psn, flow->flow_state.ib_spsn) >= 0 && 1668 cmp_psn(psn, flow->flow_state.ib_lpsn) <= 0) { 1669 if (fidx) 1670 *fidx = tail; 1671 return flow; 1672 } 1673 } 1674 return NULL; 1675 } 1676 1677 /* TID RDMA READ functions */ 1678 u32 hfi1_build_tid_rdma_read_packet(struct rvt_swqe *wqe, 1679 struct ib_other_headers *ohdr, u32 *bth1, 1680 u32 *bth2, u32 *len) 1681 { 1682 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 1683 struct tid_rdma_flow *flow = &req->flows[req->flow_idx]; 1684 struct rvt_qp *qp = req->qp; 1685 struct hfi1_qp_priv *qpriv = qp->priv; 1686 struct hfi1_swqe_priv *wpriv = wqe->priv; 1687 struct tid_rdma_read_req *rreq = &ohdr->u.tid_rdma.r_req; 1688 struct tid_rdma_params *remote; 1689 u32 req_len = 0; 1690 void *req_addr = NULL; 1691 1692 /* This is the IB psn used to send the request */ 1693 *bth2 = mask_psn(flow->flow_state.ib_spsn + flow->pkt); 1694 trace_hfi1_tid_flow_build_read_pkt(qp, req->flow_idx, flow); 1695 1696 /* TID Entries for TID RDMA READ payload */ 1697 req_addr = &flow->tid_entry[flow->tid_idx]; 1698 req_len = sizeof(*flow->tid_entry) * 1699 (flow->tidcnt - flow->tid_idx); 1700 1701 memset(&ohdr->u.tid_rdma.r_req, 0, sizeof(ohdr->u.tid_rdma.r_req)); 1702 wpriv->ss.sge.vaddr = req_addr; 1703 wpriv->ss.sge.sge_length = req_len; 1704 wpriv->ss.sge.length = wpriv->ss.sge.sge_length; 1705 /* 1706 * We can safely zero these out. Since the first SGE covers the 1707 * entire packet, nothing else should even look at the MR. 1708 */ 1709 wpriv->ss.sge.mr = NULL; 1710 wpriv->ss.sge.m = 0; 1711 wpriv->ss.sge.n = 0; 1712 1713 wpriv->ss.sg_list = NULL; 1714 wpriv->ss.total_len = wpriv->ss.sge.sge_length; 1715 wpriv->ss.num_sge = 1; 1716 1717 /* Construct the TID RDMA READ REQ packet header */ 1718 rcu_read_lock(); 1719 remote = rcu_dereference(qpriv->tid_rdma.remote); 1720 1721 KDETH_RESET(rreq->kdeth0, KVER, 0x1); 1722 KDETH_RESET(rreq->kdeth1, JKEY, remote->jkey); 1723 rreq->reth.vaddr = cpu_to_be64(wqe->rdma_wr.remote_addr + 1724 req->cur_seg * req->seg_len + flow->sent); 1725 rreq->reth.rkey = cpu_to_be32(wqe->rdma_wr.rkey); 1726 rreq->reth.length = cpu_to_be32(*len); 1727 rreq->tid_flow_psn = 1728 cpu_to_be32((flow->flow_state.generation << 1729 HFI1_KDETH_BTH_SEQ_SHIFT) | 1730 ((flow->flow_state.spsn + flow->pkt) & 1731 HFI1_KDETH_BTH_SEQ_MASK)); 1732 rreq->tid_flow_qp = 1733 cpu_to_be32(qpriv->tid_rdma.local.qp | 1734 ((flow->idx & TID_RDMA_DESTQP_FLOW_MASK) << 1735 TID_RDMA_DESTQP_FLOW_SHIFT) | 1736 qpriv->rcd->ctxt); 1737 rreq->verbs_qp = cpu_to_be32(qp->remote_qpn); 1738 *bth1 &= ~RVT_QPN_MASK; 1739 *bth1 |= remote->qp; 1740 *bth2 |= IB_BTH_REQ_ACK; 1741 rcu_read_unlock(); 1742 1743 /* We are done with this segment */ 1744 flow->sent += *len; 1745 req->cur_seg++; 1746 qp->s_state = TID_OP(READ_REQ); 1747 req->ack_pending++; 1748 req->flow_idx = (req->flow_idx + 1) & (MAX_FLOWS - 1); 1749 qpriv->pending_tid_r_segs++; 1750 qp->s_num_rd_atomic++; 1751 1752 /* Set the TID RDMA READ request payload size */ 1753 *len = req_len; 1754 1755 return sizeof(ohdr->u.tid_rdma.r_req) / sizeof(u32); 1756 } 1757 1758 /* 1759 * @len: contains the data length to read upon entry and the read request 1760 * payload length upon exit. 1761 */ 1762 u32 hfi1_build_tid_rdma_read_req(struct rvt_qp *qp, struct rvt_swqe *wqe, 1763 struct ib_other_headers *ohdr, u32 *bth1, 1764 u32 *bth2, u32 *len) 1765 __must_hold(&qp->s_lock) 1766 { 1767 struct hfi1_qp_priv *qpriv = qp->priv; 1768 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 1769 struct tid_rdma_flow *flow = NULL; 1770 u32 hdwords = 0; 1771 bool last; 1772 bool retry = true; 1773 u32 npkts = rvt_div_round_up_mtu(qp, *len); 1774 1775 trace_hfi1_tid_req_build_read_req(qp, 0, wqe->wr.opcode, wqe->psn, 1776 wqe->lpsn, req); 1777 /* 1778 * Check sync conditions. Make sure that there are no pending 1779 * segments before freeing the flow. 1780 */ 1781 sync_check: 1782 if (req->state == TID_REQUEST_SYNC) { 1783 if (qpriv->pending_tid_r_segs) 1784 goto done; 1785 1786 hfi1_kern_clear_hw_flow(req->rcd, qp); 1787 qpriv->s_flags &= ~HFI1_R_TID_SW_PSN; 1788 req->state = TID_REQUEST_ACTIVE; 1789 } 1790 1791 /* 1792 * If the request for this segment is resent, the tid resources should 1793 * have been allocated before. In this case, req->flow_idx should 1794 * fall behind req->setup_head. 1795 */ 1796 if (req->flow_idx == req->setup_head) { 1797 retry = false; 1798 if (req->state == TID_REQUEST_RESEND) { 1799 /* 1800 * This is the first new segment for a request whose 1801 * earlier segments have been re-sent. We need to 1802 * set up the sge pointer correctly. 1803 */ 1804 restart_sge(&qp->s_sge, wqe, req->s_next_psn, 1805 qp->pmtu); 1806 req->isge = 0; 1807 req->state = TID_REQUEST_ACTIVE; 1808 } 1809 1810 /* 1811 * Check sync. The last PSN of each generation is reserved for 1812 * RESYNC. 1813 */ 1814 if ((qpriv->flow_state.psn + npkts) > MAX_TID_FLOW_PSN - 1) { 1815 req->state = TID_REQUEST_SYNC; 1816 goto sync_check; 1817 } 1818 1819 /* Allocate the flow if not yet */ 1820 if (hfi1_kern_setup_hw_flow(qpriv->rcd, qp)) 1821 goto done; 1822 1823 /* 1824 * The following call will advance req->setup_head after 1825 * allocating the tid entries. 1826 */ 1827 if (hfi1_kern_exp_rcv_setup(req, &qp->s_sge, &last)) { 1828 req->state = TID_REQUEST_QUEUED; 1829 1830 /* 1831 * We don't have resources for this segment. The QP has 1832 * already been queued. 1833 */ 1834 goto done; 1835 } 1836 } 1837 1838 /* req->flow_idx should only be one slot behind req->setup_head */ 1839 flow = &req->flows[req->flow_idx]; 1840 flow->pkt = 0; 1841 flow->tid_idx = 0; 1842 flow->sent = 0; 1843 if (!retry) { 1844 /* Set the first and last IB PSN for the flow in use.*/ 1845 flow->flow_state.ib_spsn = req->s_next_psn; 1846 flow->flow_state.ib_lpsn = 1847 flow->flow_state.ib_spsn + flow->npkts - 1; 1848 } 1849 1850 /* Calculate the next segment start psn.*/ 1851 req->s_next_psn += flow->npkts; 1852 1853 /* Build the packet header */ 1854 hdwords = hfi1_build_tid_rdma_read_packet(wqe, ohdr, bth1, bth2, len); 1855 done: 1856 return hdwords; 1857 } 1858 1859 /* 1860 * Validate and accept the TID RDMA READ request parameters. 1861 * Return 0 if the request is accepted successfully; 1862 * Return 1 otherwise. 1863 */ 1864 static int tid_rdma_rcv_read_request(struct rvt_qp *qp, 1865 struct rvt_ack_entry *e, 1866 struct hfi1_packet *packet, 1867 struct ib_other_headers *ohdr, 1868 u32 bth0, u32 psn, u64 vaddr, u32 len) 1869 { 1870 struct hfi1_qp_priv *qpriv = qp->priv; 1871 struct tid_rdma_request *req; 1872 struct tid_rdma_flow *flow; 1873 u32 flow_psn, i, tidlen = 0, pktlen, tlen; 1874 1875 req = ack_to_tid_req(e); 1876 1877 /* Validate the payload first */ 1878 flow = &req->flows[req->setup_head]; 1879 1880 /* payload length = packet length - (header length + ICRC length) */ 1881 pktlen = packet->tlen - (packet->hlen + 4); 1882 if (pktlen > sizeof(flow->tid_entry)) 1883 return 1; 1884 memcpy(flow->tid_entry, packet->ebuf, pktlen); 1885 flow->tidcnt = pktlen / sizeof(*flow->tid_entry); 1886 1887 /* 1888 * Walk the TID_ENTRY list to make sure we have enough space for a 1889 * complete segment. Also calculate the number of required packets. 1890 */ 1891 flow->npkts = rvt_div_round_up_mtu(qp, len); 1892 for (i = 0; i < flow->tidcnt; i++) { 1893 trace_hfi1_tid_entry_rcv_read_req(qp, i, 1894 flow->tid_entry[i]); 1895 tlen = EXP_TID_GET(flow->tid_entry[i], LEN); 1896 if (!tlen) 1897 return 1; 1898 1899 /* 1900 * For tid pair (tidctr == 3), the buffer size of the pair 1901 * should be the sum of the buffer size described by each 1902 * tid entry. However, only the first entry needs to be 1903 * specified in the request (see WFR HAS Section 8.5.7.1). 1904 */ 1905 tidlen += tlen; 1906 } 1907 if (tidlen * PAGE_SIZE < len) 1908 return 1; 1909 1910 /* Empty the flow array */ 1911 req->clear_tail = req->setup_head; 1912 flow->pkt = 0; 1913 flow->tid_idx = 0; 1914 flow->tid_offset = 0; 1915 flow->sent = 0; 1916 flow->tid_qpn = be32_to_cpu(ohdr->u.tid_rdma.r_req.tid_flow_qp); 1917 flow->idx = (flow->tid_qpn >> TID_RDMA_DESTQP_FLOW_SHIFT) & 1918 TID_RDMA_DESTQP_FLOW_MASK; 1919 flow_psn = mask_psn(be32_to_cpu(ohdr->u.tid_rdma.r_req.tid_flow_psn)); 1920 flow->flow_state.generation = flow_psn >> HFI1_KDETH_BTH_SEQ_SHIFT; 1921 flow->flow_state.spsn = flow_psn & HFI1_KDETH_BTH_SEQ_MASK; 1922 flow->length = len; 1923 1924 flow->flow_state.lpsn = flow->flow_state.spsn + 1925 flow->npkts - 1; 1926 flow->flow_state.ib_spsn = psn; 1927 flow->flow_state.ib_lpsn = flow->flow_state.ib_spsn + flow->npkts - 1; 1928 1929 trace_hfi1_tid_flow_rcv_read_req(qp, req->setup_head, flow); 1930 /* Set the initial flow index to the current flow. */ 1931 req->flow_idx = req->setup_head; 1932 1933 /* advance circular buffer head */ 1934 req->setup_head = (req->setup_head + 1) & (MAX_FLOWS - 1); 1935 1936 /* 1937 * Compute last PSN for request. 1938 */ 1939 e->opcode = (bth0 >> 24) & 0xff; 1940 e->psn = psn; 1941 e->lpsn = psn + flow->npkts - 1; 1942 e->sent = 0; 1943 1944 req->n_flows = qpriv->tid_rdma.local.max_read; 1945 req->state = TID_REQUEST_ACTIVE; 1946 req->cur_seg = 0; 1947 req->comp_seg = 0; 1948 req->ack_seg = 0; 1949 req->isge = 0; 1950 req->seg_len = qpriv->tid_rdma.local.max_len; 1951 req->total_len = len; 1952 req->total_segs = 1; 1953 req->r_flow_psn = e->psn; 1954 1955 trace_hfi1_tid_req_rcv_read_req(qp, 0, e->opcode, e->psn, e->lpsn, 1956 req); 1957 return 0; 1958 } 1959 1960 static int tid_rdma_rcv_error(struct hfi1_packet *packet, 1961 struct ib_other_headers *ohdr, 1962 struct rvt_qp *qp, u32 psn, int diff) 1963 { 1964 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num); 1965 struct hfi1_ctxtdata *rcd = ((struct hfi1_qp_priv *)qp->priv)->rcd; 1966 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device); 1967 struct hfi1_qp_priv *qpriv = qp->priv; 1968 struct rvt_ack_entry *e; 1969 struct tid_rdma_request *req; 1970 unsigned long flags; 1971 u8 prev; 1972 bool old_req; 1973 1974 trace_hfi1_rsp_tid_rcv_error(qp, psn); 1975 trace_hfi1_tid_rdma_rcv_err(qp, 0, psn, diff); 1976 if (diff > 0) { 1977 /* sequence error */ 1978 if (!qp->r_nak_state) { 1979 ibp->rvp.n_rc_seqnak++; 1980 qp->r_nak_state = IB_NAK_PSN_ERROR; 1981 qp->r_ack_psn = qp->r_psn; 1982 rc_defered_ack(rcd, qp); 1983 } 1984 goto done; 1985 } 1986 1987 ibp->rvp.n_rc_dupreq++; 1988 1989 spin_lock_irqsave(&qp->s_lock, flags); 1990 e = find_prev_entry(qp, psn, &prev, NULL, &old_req); 1991 if (!e || (e->opcode != TID_OP(READ_REQ) && 1992 e->opcode != TID_OP(WRITE_REQ))) 1993 goto unlock; 1994 1995 req = ack_to_tid_req(e); 1996 req->r_flow_psn = psn; 1997 trace_hfi1_tid_req_rcv_err(qp, 0, e->opcode, e->psn, e->lpsn, req); 1998 if (e->opcode == TID_OP(READ_REQ)) { 1999 struct ib_reth *reth; 2000 u32 len; 2001 u32 rkey; 2002 u64 vaddr; 2003 int ok; 2004 u32 bth0; 2005 2006 reth = &ohdr->u.tid_rdma.r_req.reth; 2007 /* 2008 * The requester always restarts from the start of the original 2009 * request. 2010 */ 2011 len = be32_to_cpu(reth->length); 2012 if (psn != e->psn || len != req->total_len) 2013 goto unlock; 2014 2015 release_rdma_sge_mr(e); 2016 2017 rkey = be32_to_cpu(reth->rkey); 2018 vaddr = get_ib_reth_vaddr(reth); 2019 2020 qp->r_len = len; 2021 ok = rvt_rkey_ok(qp, &e->rdma_sge, len, vaddr, rkey, 2022 IB_ACCESS_REMOTE_READ); 2023 if (unlikely(!ok)) 2024 goto unlock; 2025 2026 /* 2027 * If all the response packets for the current request have 2028 * been sent out and this request is complete (old_request 2029 * == false) and the TID flow may be unusable (the 2030 * req->clear_tail is advanced). However, when an earlier 2031 * request is received, this request will not be complete any 2032 * more (qp->s_tail_ack_queue is moved back, see below). 2033 * Consequently, we need to update the TID flow info everytime 2034 * a duplicate request is received. 2035 */ 2036 bth0 = be32_to_cpu(ohdr->bth[0]); 2037 if (tid_rdma_rcv_read_request(qp, e, packet, ohdr, bth0, psn, 2038 vaddr, len)) 2039 goto unlock; 2040 2041 /* 2042 * True if the request is already scheduled (between 2043 * qp->s_tail_ack_queue and qp->r_head_ack_queue); 2044 */ 2045 if (old_req) 2046 goto unlock; 2047 } else { 2048 struct flow_state *fstate; 2049 bool schedule = false; 2050 u8 i; 2051 2052 if (req->state == TID_REQUEST_RESEND) { 2053 req->state = TID_REQUEST_RESEND_ACTIVE; 2054 } else if (req->state == TID_REQUEST_INIT_RESEND) { 2055 req->state = TID_REQUEST_INIT; 2056 schedule = true; 2057 } 2058 2059 /* 2060 * True if the request is already scheduled (between 2061 * qp->s_tail_ack_queue and qp->r_head_ack_queue). 2062 * Also, don't change requests, which are at the SYNC 2063 * point and haven't generated any responses yet. 2064 * There is nothing to retransmit for them yet. 2065 */ 2066 if (old_req || req->state == TID_REQUEST_INIT || 2067 (req->state == TID_REQUEST_SYNC && !req->cur_seg)) { 2068 for (i = prev + 1; ; i++) { 2069 if (i > rvt_size_atomic(&dev->rdi)) 2070 i = 0; 2071 if (i == qp->r_head_ack_queue) 2072 break; 2073 e = &qp->s_ack_queue[i]; 2074 req = ack_to_tid_req(e); 2075 if (e->opcode == TID_OP(WRITE_REQ) && 2076 req->state == TID_REQUEST_INIT) 2077 req->state = TID_REQUEST_INIT_RESEND; 2078 } 2079 /* 2080 * If the state of the request has been changed, 2081 * the first leg needs to get scheduled in order to 2082 * pick up the change. Otherwise, normal response 2083 * processing should take care of it. 2084 */ 2085 if (!schedule) 2086 goto unlock; 2087 } 2088 2089 /* 2090 * If there is no more allocated segment, just schedule the qp 2091 * without changing any state. 2092 */ 2093 if (req->clear_tail == req->setup_head) 2094 goto schedule; 2095 /* 2096 * If this request has sent responses for segments, which have 2097 * not received data yet (flow_idx != clear_tail), the flow_idx 2098 * pointer needs to be adjusted so the same responses can be 2099 * re-sent. 2100 */ 2101 if (CIRC_CNT(req->flow_idx, req->clear_tail, MAX_FLOWS)) { 2102 fstate = &req->flows[req->clear_tail].flow_state; 2103 qpriv->pending_tid_w_segs -= 2104 CIRC_CNT(req->flow_idx, req->clear_tail, 2105 MAX_FLOWS); 2106 req->flow_idx = 2107 CIRC_ADD(req->clear_tail, 2108 delta_psn(psn, fstate->resp_ib_psn), 2109 MAX_FLOWS); 2110 qpriv->pending_tid_w_segs += 2111 delta_psn(psn, fstate->resp_ib_psn); 2112 /* 2113 * When flow_idx == setup_head, we've gotten a duplicate 2114 * request for a segment, which has not been allocated 2115 * yet. In that case, don't adjust this request. 2116 * However, we still want to go through the loop below 2117 * to adjust all subsequent requests. 2118 */ 2119 if (CIRC_CNT(req->setup_head, req->flow_idx, 2120 MAX_FLOWS)) { 2121 req->cur_seg = delta_psn(psn, e->psn); 2122 req->state = TID_REQUEST_RESEND_ACTIVE; 2123 } 2124 } 2125 2126 for (i = prev + 1; ; i++) { 2127 /* 2128 * Look at everything up to and including 2129 * s_tail_ack_queue 2130 */ 2131 if (i > rvt_size_atomic(&dev->rdi)) 2132 i = 0; 2133 if (i == qp->r_head_ack_queue) 2134 break; 2135 e = &qp->s_ack_queue[i]; 2136 req = ack_to_tid_req(e); 2137 trace_hfi1_tid_req_rcv_err(qp, 0, e->opcode, e->psn, 2138 e->lpsn, req); 2139 if (e->opcode != TID_OP(WRITE_REQ) || 2140 req->cur_seg == req->comp_seg || 2141 req->state == TID_REQUEST_INIT || 2142 req->state == TID_REQUEST_INIT_RESEND) { 2143 if (req->state == TID_REQUEST_INIT) 2144 req->state = TID_REQUEST_INIT_RESEND; 2145 continue; 2146 } 2147 qpriv->pending_tid_w_segs -= 2148 CIRC_CNT(req->flow_idx, 2149 req->clear_tail, 2150 MAX_FLOWS); 2151 req->flow_idx = req->clear_tail; 2152 req->state = TID_REQUEST_RESEND; 2153 req->cur_seg = req->comp_seg; 2154 } 2155 qpriv->s_flags &= ~HFI1_R_TID_WAIT_INTERLCK; 2156 } 2157 /* Re-process old requests.*/ 2158 if (qp->s_acked_ack_queue == qp->s_tail_ack_queue) 2159 qp->s_acked_ack_queue = prev; 2160 qp->s_tail_ack_queue = prev; 2161 /* 2162 * Since the qp->s_tail_ack_queue is modified, the 2163 * qp->s_ack_state must be changed to re-initialize 2164 * qp->s_ack_rdma_sge; Otherwise, we will end up in 2165 * wrong memory region. 2166 */ 2167 qp->s_ack_state = OP(ACKNOWLEDGE); 2168 schedule: 2169 /* 2170 * It's possible to receive a retry psn that is earlier than an RNRNAK 2171 * psn. In this case, the rnrnak state should be cleared. 2172 */ 2173 if (qpriv->rnr_nak_state) { 2174 qp->s_nak_state = 0; 2175 qpriv->rnr_nak_state = TID_RNR_NAK_INIT; 2176 qp->r_psn = e->lpsn + 1; 2177 hfi1_tid_write_alloc_resources(qp, true); 2178 } 2179 2180 qp->r_state = e->opcode; 2181 qp->r_nak_state = 0; 2182 qp->s_flags |= RVT_S_RESP_PENDING; 2183 hfi1_schedule_send(qp); 2184 unlock: 2185 spin_unlock_irqrestore(&qp->s_lock, flags); 2186 done: 2187 return 1; 2188 } 2189 2190 void hfi1_rc_rcv_tid_rdma_read_req(struct hfi1_packet *packet) 2191 { 2192 /* HANDLER FOR TID RDMA READ REQUEST packet (Responder side)*/ 2193 2194 /* 2195 * 1. Verify TID RDMA READ REQ as per IB_OPCODE_RC_RDMA_READ 2196 * (see hfi1_rc_rcv()) 2197 * 2. Put TID RDMA READ REQ into the response queueu (s_ack_queue) 2198 * - Setup struct tid_rdma_req with request info 2199 * - Initialize struct tid_rdma_flow info; 2200 * - Copy TID entries; 2201 * 3. Set the qp->s_ack_state. 2202 * 4. Set RVT_S_RESP_PENDING in s_flags. 2203 * 5. Kick the send engine (hfi1_schedule_send()) 2204 */ 2205 struct hfi1_ctxtdata *rcd = packet->rcd; 2206 struct rvt_qp *qp = packet->qp; 2207 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num); 2208 struct ib_other_headers *ohdr = packet->ohdr; 2209 struct rvt_ack_entry *e; 2210 unsigned long flags; 2211 struct ib_reth *reth; 2212 struct hfi1_qp_priv *qpriv = qp->priv; 2213 u32 bth0, psn, len, rkey; 2214 bool fecn; 2215 u8 next; 2216 u64 vaddr; 2217 int diff; 2218 u8 nack_state = IB_NAK_INVALID_REQUEST; 2219 2220 bth0 = be32_to_cpu(ohdr->bth[0]); 2221 if (hfi1_ruc_check_hdr(ibp, packet)) 2222 return; 2223 2224 fecn = process_ecn(qp, packet); 2225 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 2226 trace_hfi1_rsp_rcv_tid_read_req(qp, psn); 2227 2228 if (qp->state == IB_QPS_RTR && !(qp->r_flags & RVT_R_COMM_EST)) 2229 rvt_comm_est(qp); 2230 2231 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_READ))) 2232 goto nack_inv; 2233 2234 reth = &ohdr->u.tid_rdma.r_req.reth; 2235 vaddr = be64_to_cpu(reth->vaddr); 2236 len = be32_to_cpu(reth->length); 2237 /* The length needs to be in multiples of PAGE_SIZE */ 2238 if (!len || len & ~PAGE_MASK || len > qpriv->tid_rdma.local.max_len) 2239 goto nack_inv; 2240 2241 diff = delta_psn(psn, qp->r_psn); 2242 if (unlikely(diff)) { 2243 tid_rdma_rcv_err(packet, ohdr, qp, psn, diff, fecn); 2244 return; 2245 } 2246 2247 /* We've verified the request, insert it into the ack queue. */ 2248 next = qp->r_head_ack_queue + 1; 2249 if (next > rvt_size_atomic(ib_to_rvt(qp->ibqp.device))) 2250 next = 0; 2251 spin_lock_irqsave(&qp->s_lock, flags); 2252 if (unlikely(next == qp->s_tail_ack_queue)) { 2253 if (!qp->s_ack_queue[next].sent) { 2254 nack_state = IB_NAK_REMOTE_OPERATIONAL_ERROR; 2255 goto nack_inv_unlock; 2256 } 2257 update_ack_queue(qp, next); 2258 } 2259 e = &qp->s_ack_queue[qp->r_head_ack_queue]; 2260 release_rdma_sge_mr(e); 2261 2262 rkey = be32_to_cpu(reth->rkey); 2263 qp->r_len = len; 2264 2265 if (unlikely(!rvt_rkey_ok(qp, &e->rdma_sge, qp->r_len, vaddr, 2266 rkey, IB_ACCESS_REMOTE_READ))) 2267 goto nack_acc; 2268 2269 /* Accept the request parameters */ 2270 if (tid_rdma_rcv_read_request(qp, e, packet, ohdr, bth0, psn, vaddr, 2271 len)) 2272 goto nack_inv_unlock; 2273 2274 qp->r_state = e->opcode; 2275 qp->r_nak_state = 0; 2276 /* 2277 * We need to increment the MSN here instead of when we 2278 * finish sending the result since a duplicate request would 2279 * increment it more than once. 2280 */ 2281 qp->r_msn++; 2282 qp->r_psn += e->lpsn - e->psn + 1; 2283 2284 qp->r_head_ack_queue = next; 2285 2286 /* 2287 * For all requests other than TID WRITE which are added to the ack 2288 * queue, qpriv->r_tid_alloc follows qp->r_head_ack_queue. It is ok to 2289 * do this because of interlocks between these and TID WRITE 2290 * requests. The same change has also been made in hfi1_rc_rcv(). 2291 */ 2292 qpriv->r_tid_alloc = qp->r_head_ack_queue; 2293 2294 /* Schedule the send tasklet. */ 2295 qp->s_flags |= RVT_S_RESP_PENDING; 2296 if (fecn) 2297 qp->s_flags |= RVT_S_ECN; 2298 hfi1_schedule_send(qp); 2299 2300 spin_unlock_irqrestore(&qp->s_lock, flags); 2301 return; 2302 2303 nack_inv_unlock: 2304 spin_unlock_irqrestore(&qp->s_lock, flags); 2305 nack_inv: 2306 rvt_rc_error(qp, IB_WC_LOC_QP_OP_ERR); 2307 qp->r_nak_state = nack_state; 2308 qp->r_ack_psn = qp->r_psn; 2309 /* Queue NAK for later */ 2310 rc_defered_ack(rcd, qp); 2311 return; 2312 nack_acc: 2313 spin_unlock_irqrestore(&qp->s_lock, flags); 2314 rvt_rc_error(qp, IB_WC_LOC_PROT_ERR); 2315 qp->r_nak_state = IB_NAK_REMOTE_ACCESS_ERROR; 2316 qp->r_ack_psn = qp->r_psn; 2317 } 2318 2319 u32 hfi1_build_tid_rdma_read_resp(struct rvt_qp *qp, struct rvt_ack_entry *e, 2320 struct ib_other_headers *ohdr, u32 *bth0, 2321 u32 *bth1, u32 *bth2, u32 *len, bool *last) 2322 { 2323 struct hfi1_ack_priv *epriv = e->priv; 2324 struct tid_rdma_request *req = &epriv->tid_req; 2325 struct hfi1_qp_priv *qpriv = qp->priv; 2326 struct tid_rdma_flow *flow = &req->flows[req->clear_tail]; 2327 u32 tidentry = flow->tid_entry[flow->tid_idx]; 2328 u32 tidlen = EXP_TID_GET(tidentry, LEN) << PAGE_SHIFT; 2329 struct tid_rdma_read_resp *resp = &ohdr->u.tid_rdma.r_rsp; 2330 u32 next_offset, om = KDETH_OM_LARGE; 2331 bool last_pkt; 2332 u32 hdwords = 0; 2333 struct tid_rdma_params *remote; 2334 2335 *len = min_t(u32, qp->pmtu, tidlen - flow->tid_offset); 2336 flow->sent += *len; 2337 next_offset = flow->tid_offset + *len; 2338 last_pkt = (flow->sent >= flow->length); 2339 2340 trace_hfi1_tid_entry_build_read_resp(qp, flow->tid_idx, tidentry); 2341 trace_hfi1_tid_flow_build_read_resp(qp, req->clear_tail, flow); 2342 2343 rcu_read_lock(); 2344 remote = rcu_dereference(qpriv->tid_rdma.remote); 2345 if (!remote) { 2346 rcu_read_unlock(); 2347 goto done; 2348 } 2349 KDETH_RESET(resp->kdeth0, KVER, 0x1); 2350 KDETH_SET(resp->kdeth0, SH, !last_pkt); 2351 KDETH_SET(resp->kdeth0, INTR, !!(!last_pkt && remote->urg)); 2352 KDETH_SET(resp->kdeth0, TIDCTRL, EXP_TID_GET(tidentry, CTRL)); 2353 KDETH_SET(resp->kdeth0, TID, EXP_TID_GET(tidentry, IDX)); 2354 KDETH_SET(resp->kdeth0, OM, om == KDETH_OM_LARGE); 2355 KDETH_SET(resp->kdeth0, OFFSET, flow->tid_offset / om); 2356 KDETH_RESET(resp->kdeth1, JKEY, remote->jkey); 2357 resp->verbs_qp = cpu_to_be32(qp->remote_qpn); 2358 rcu_read_unlock(); 2359 2360 resp->aeth = rvt_compute_aeth(qp); 2361 resp->verbs_psn = cpu_to_be32(mask_psn(flow->flow_state.ib_spsn + 2362 flow->pkt)); 2363 2364 *bth0 = TID_OP(READ_RESP) << 24; 2365 *bth1 = flow->tid_qpn; 2366 *bth2 = mask_psn(((flow->flow_state.spsn + flow->pkt++) & 2367 HFI1_KDETH_BTH_SEQ_MASK) | 2368 (flow->flow_state.generation << 2369 HFI1_KDETH_BTH_SEQ_SHIFT)); 2370 *last = last_pkt; 2371 if (last_pkt) 2372 /* Advance to next flow */ 2373 req->clear_tail = (req->clear_tail + 1) & 2374 (MAX_FLOWS - 1); 2375 2376 if (next_offset >= tidlen) { 2377 flow->tid_offset = 0; 2378 flow->tid_idx++; 2379 } else { 2380 flow->tid_offset = next_offset; 2381 } 2382 2383 hdwords = sizeof(ohdr->u.tid_rdma.r_rsp) / sizeof(u32); 2384 2385 done: 2386 return hdwords; 2387 } 2388 2389 static inline struct tid_rdma_request * 2390 find_tid_request(struct rvt_qp *qp, u32 psn, enum ib_wr_opcode opcode) 2391 __must_hold(&qp->s_lock) 2392 { 2393 struct rvt_swqe *wqe; 2394 struct tid_rdma_request *req = NULL; 2395 u32 i, end; 2396 2397 end = qp->s_cur + 1; 2398 if (end == qp->s_size) 2399 end = 0; 2400 for (i = qp->s_acked; i != end;) { 2401 wqe = rvt_get_swqe_ptr(qp, i); 2402 if (cmp_psn(psn, wqe->psn) >= 0 && 2403 cmp_psn(psn, wqe->lpsn) <= 0) { 2404 if (wqe->wr.opcode == opcode) 2405 req = wqe_to_tid_req(wqe); 2406 break; 2407 } 2408 if (++i == qp->s_size) 2409 i = 0; 2410 } 2411 2412 return req; 2413 } 2414 2415 void hfi1_rc_rcv_tid_rdma_read_resp(struct hfi1_packet *packet) 2416 { 2417 /* HANDLER FOR TID RDMA READ RESPONSE packet (Requestor side */ 2418 2419 /* 2420 * 1. Find matching SWQE 2421 * 2. Check that the entire segment has been read. 2422 * 3. Remove HFI1_S_WAIT_TID_RESP from s_flags. 2423 * 4. Free the TID flow resources. 2424 * 5. Kick the send engine (hfi1_schedule_send()) 2425 */ 2426 struct ib_other_headers *ohdr = packet->ohdr; 2427 struct rvt_qp *qp = packet->qp; 2428 struct hfi1_qp_priv *priv = qp->priv; 2429 struct hfi1_ctxtdata *rcd = packet->rcd; 2430 struct tid_rdma_request *req; 2431 struct tid_rdma_flow *flow; 2432 u32 opcode, aeth; 2433 bool fecn; 2434 unsigned long flags; 2435 u32 kpsn, ipsn; 2436 2437 trace_hfi1_sender_rcv_tid_read_resp(qp); 2438 fecn = process_ecn(qp, packet); 2439 kpsn = mask_psn(be32_to_cpu(ohdr->bth[2])); 2440 aeth = be32_to_cpu(ohdr->u.tid_rdma.r_rsp.aeth); 2441 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0xff; 2442 2443 spin_lock_irqsave(&qp->s_lock, flags); 2444 ipsn = mask_psn(be32_to_cpu(ohdr->u.tid_rdma.r_rsp.verbs_psn)); 2445 req = find_tid_request(qp, ipsn, IB_WR_TID_RDMA_READ); 2446 if (unlikely(!req)) 2447 goto ack_op_err; 2448 2449 flow = &req->flows[req->clear_tail]; 2450 /* When header suppression is disabled */ 2451 if (cmp_psn(ipsn, flow->flow_state.ib_lpsn)) { 2452 update_r_next_psn_fecn(packet, priv, rcd, flow, fecn); 2453 2454 if (cmp_psn(kpsn, flow->flow_state.r_next_psn)) 2455 goto ack_done; 2456 flow->flow_state.r_next_psn = mask_psn(kpsn + 1); 2457 /* 2458 * Copy the payload to destination buffer if this packet is 2459 * delivered as an eager packet due to RSM rule and FECN. 2460 * The RSM rule selects FECN bit in BTH and SH bit in 2461 * KDETH header and therefore will not match the last 2462 * packet of each segment that has SH bit cleared. 2463 */ 2464 if (fecn && packet->etype == RHF_RCV_TYPE_EAGER) { 2465 struct rvt_sge_state ss; 2466 u32 len; 2467 u32 tlen = packet->tlen; 2468 u16 hdrsize = packet->hlen; 2469 u8 pad = packet->pad; 2470 u8 extra_bytes = pad + packet->extra_byte + 2471 (SIZE_OF_CRC << 2); 2472 u32 pmtu = qp->pmtu; 2473 2474 if (unlikely(tlen != (hdrsize + pmtu + extra_bytes))) 2475 goto ack_op_err; 2476 len = restart_sge(&ss, req->e.swqe, ipsn, pmtu); 2477 if (unlikely(len < pmtu)) 2478 goto ack_op_err; 2479 rvt_copy_sge(qp, &ss, packet->payload, pmtu, false, 2480 false); 2481 /* Raise the sw sequence check flag for next packet */ 2482 priv->s_flags |= HFI1_R_TID_SW_PSN; 2483 } 2484 2485 goto ack_done; 2486 } 2487 flow->flow_state.r_next_psn = mask_psn(kpsn + 1); 2488 req->ack_pending--; 2489 priv->pending_tid_r_segs--; 2490 qp->s_num_rd_atomic--; 2491 if ((qp->s_flags & RVT_S_WAIT_FENCE) && 2492 !qp->s_num_rd_atomic) { 2493 qp->s_flags &= ~(RVT_S_WAIT_FENCE | 2494 RVT_S_WAIT_ACK); 2495 hfi1_schedule_send(qp); 2496 } 2497 if (qp->s_flags & RVT_S_WAIT_RDMAR) { 2498 qp->s_flags &= ~(RVT_S_WAIT_RDMAR | RVT_S_WAIT_ACK); 2499 hfi1_schedule_send(qp); 2500 } 2501 2502 trace_hfi1_ack(qp, ipsn); 2503 trace_hfi1_tid_req_rcv_read_resp(qp, 0, req->e.swqe->wr.opcode, 2504 req->e.swqe->psn, req->e.swqe->lpsn, 2505 req); 2506 trace_hfi1_tid_flow_rcv_read_resp(qp, req->clear_tail, flow); 2507 2508 /* Release the tid resources */ 2509 hfi1_kern_exp_rcv_clear(req); 2510 2511 if (!do_rc_ack(qp, aeth, ipsn, opcode, 0, rcd)) 2512 goto ack_done; 2513 2514 /* If not done yet, build next read request */ 2515 if (++req->comp_seg >= req->total_segs) { 2516 priv->tid_r_comp++; 2517 req->state = TID_REQUEST_COMPLETE; 2518 } 2519 2520 /* 2521 * Clear the hw flow under two conditions: 2522 * 1. This request is a sync point and it is complete; 2523 * 2. Current request is completed and there are no more requests. 2524 */ 2525 if ((req->state == TID_REQUEST_SYNC && 2526 req->comp_seg == req->cur_seg) || 2527 priv->tid_r_comp == priv->tid_r_reqs) { 2528 hfi1_kern_clear_hw_flow(priv->rcd, qp); 2529 priv->s_flags &= ~HFI1_R_TID_SW_PSN; 2530 if (req->state == TID_REQUEST_SYNC) 2531 req->state = TID_REQUEST_ACTIVE; 2532 } 2533 2534 hfi1_schedule_send(qp); 2535 goto ack_done; 2536 2537 ack_op_err: 2538 /* 2539 * The test indicates that the send engine has finished its cleanup 2540 * after sending the request and it's now safe to put the QP into error 2541 * state. However, if the wqe queue is empty (qp->s_acked == qp->s_tail 2542 * == qp->s_head), it would be unsafe to complete the wqe pointed by 2543 * qp->s_acked here. Putting the qp into error state will safely flush 2544 * all remaining requests. 2545 */ 2546 if (qp->s_last == qp->s_acked) 2547 rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR); 2548 2549 ack_done: 2550 spin_unlock_irqrestore(&qp->s_lock, flags); 2551 } 2552 2553 void hfi1_kern_read_tid_flow_free(struct rvt_qp *qp) 2554 __must_hold(&qp->s_lock) 2555 { 2556 u32 n = qp->s_acked; 2557 struct rvt_swqe *wqe; 2558 struct tid_rdma_request *req; 2559 struct hfi1_qp_priv *priv = qp->priv; 2560 2561 lockdep_assert_held(&qp->s_lock); 2562 /* Free any TID entries */ 2563 while (n != qp->s_tail) { 2564 wqe = rvt_get_swqe_ptr(qp, n); 2565 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) { 2566 req = wqe_to_tid_req(wqe); 2567 hfi1_kern_exp_rcv_clear_all(req); 2568 } 2569 2570 if (++n == qp->s_size) 2571 n = 0; 2572 } 2573 /* Free flow */ 2574 hfi1_kern_clear_hw_flow(priv->rcd, qp); 2575 } 2576 2577 static bool tid_rdma_tid_err(struct hfi1_packet *packet, u8 rcv_type) 2578 { 2579 struct rvt_qp *qp = packet->qp; 2580 2581 if (rcv_type >= RHF_RCV_TYPE_IB) 2582 goto done; 2583 2584 spin_lock(&qp->s_lock); 2585 2586 /* 2587 * We've ran out of space in the eager buffer. 2588 * Eagerly received KDETH packets which require space in the 2589 * Eager buffer (packet that have payload) are TID RDMA WRITE 2590 * response packets. In this case, we have to re-transmit the 2591 * TID RDMA WRITE request. 2592 */ 2593 if (rcv_type == RHF_RCV_TYPE_EAGER) { 2594 hfi1_restart_rc(qp, qp->s_last_psn + 1, 1); 2595 hfi1_schedule_send(qp); 2596 } 2597 2598 /* Since no payload is delivered, just drop the packet */ 2599 spin_unlock(&qp->s_lock); 2600 done: 2601 return true; 2602 } 2603 2604 static void restart_tid_rdma_read_req(struct hfi1_ctxtdata *rcd, 2605 struct rvt_qp *qp, struct rvt_swqe *wqe) 2606 { 2607 struct tid_rdma_request *req; 2608 struct tid_rdma_flow *flow; 2609 2610 /* Start from the right segment */ 2611 qp->r_flags |= RVT_R_RDMAR_SEQ; 2612 req = wqe_to_tid_req(wqe); 2613 flow = &req->flows[req->clear_tail]; 2614 hfi1_restart_rc(qp, flow->flow_state.ib_spsn, 0); 2615 if (list_empty(&qp->rspwait)) { 2616 qp->r_flags |= RVT_R_RSP_SEND; 2617 rvt_get_qp(qp); 2618 list_add_tail(&qp->rspwait, &rcd->qp_wait_list); 2619 } 2620 } 2621 2622 /* 2623 * Handle the KDETH eflags for TID RDMA READ response. 2624 * 2625 * Return true if the last packet for a segment has been received and it is 2626 * time to process the response normally; otherwise, return true. 2627 * 2628 * The caller must hold the packet->qp->r_lock and the rcu_read_lock. 2629 */ 2630 static bool handle_read_kdeth_eflags(struct hfi1_ctxtdata *rcd, 2631 struct hfi1_packet *packet, u8 rcv_type, 2632 u8 rte, u32 psn, u32 ibpsn) 2633 __must_hold(&packet->qp->r_lock) __must_hold(RCU) 2634 { 2635 struct hfi1_pportdata *ppd = rcd->ppd; 2636 struct hfi1_devdata *dd = ppd->dd; 2637 struct hfi1_ibport *ibp; 2638 struct rvt_swqe *wqe; 2639 struct tid_rdma_request *req; 2640 struct tid_rdma_flow *flow; 2641 u32 ack_psn; 2642 struct rvt_qp *qp = packet->qp; 2643 struct hfi1_qp_priv *priv = qp->priv; 2644 bool ret = true; 2645 int diff = 0; 2646 u32 fpsn; 2647 2648 lockdep_assert_held(&qp->r_lock); 2649 trace_hfi1_rsp_read_kdeth_eflags(qp, ibpsn); 2650 trace_hfi1_sender_read_kdeth_eflags(qp); 2651 trace_hfi1_tid_read_sender_kdeth_eflags(qp, 0); 2652 spin_lock(&qp->s_lock); 2653 /* If the psn is out of valid range, drop the packet */ 2654 if (cmp_psn(ibpsn, qp->s_last_psn) < 0 || 2655 cmp_psn(ibpsn, qp->s_psn) > 0) 2656 goto s_unlock; 2657 2658 /* 2659 * Note that NAKs implicitly ACK outstanding SEND and RDMA write 2660 * requests and implicitly NAK RDMA read and atomic requests issued 2661 * before the NAK'ed request. 2662 */ 2663 ack_psn = ibpsn - 1; 2664 wqe = rvt_get_swqe_ptr(qp, qp->s_acked); 2665 ibp = to_iport(qp->ibqp.device, qp->port_num); 2666 2667 /* Complete WQEs that the PSN finishes. */ 2668 while ((int)delta_psn(ack_psn, wqe->lpsn) >= 0) { 2669 /* 2670 * If this request is a RDMA read or atomic, and the NACK is 2671 * for a later operation, this NACK NAKs the RDMA read or 2672 * atomic. 2673 */ 2674 if (wqe->wr.opcode == IB_WR_RDMA_READ || 2675 wqe->wr.opcode == IB_WR_TID_RDMA_READ || 2676 wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP || 2677 wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) { 2678 /* Retry this request. */ 2679 if (!(qp->r_flags & RVT_R_RDMAR_SEQ)) { 2680 qp->r_flags |= RVT_R_RDMAR_SEQ; 2681 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) { 2682 restart_tid_rdma_read_req(rcd, qp, 2683 wqe); 2684 } else { 2685 hfi1_restart_rc(qp, qp->s_last_psn + 1, 2686 0); 2687 if (list_empty(&qp->rspwait)) { 2688 qp->r_flags |= RVT_R_RSP_SEND; 2689 rvt_get_qp(qp); 2690 list_add_tail(/* wait */ 2691 &qp->rspwait, 2692 &rcd->qp_wait_list); 2693 } 2694 } 2695 } 2696 /* 2697 * No need to process the NAK since we are 2698 * restarting an earlier request. 2699 */ 2700 break; 2701 } 2702 2703 wqe = do_rc_completion(qp, wqe, ibp); 2704 if (qp->s_acked == qp->s_tail) 2705 goto s_unlock; 2706 } 2707 2708 if (qp->s_acked == qp->s_tail) 2709 goto s_unlock; 2710 2711 /* Handle the eflags for the request */ 2712 if (wqe->wr.opcode != IB_WR_TID_RDMA_READ) 2713 goto s_unlock; 2714 2715 req = wqe_to_tid_req(wqe); 2716 trace_hfi1_tid_req_read_kdeth_eflags(qp, 0, wqe->wr.opcode, wqe->psn, 2717 wqe->lpsn, req); 2718 switch (rcv_type) { 2719 case RHF_RCV_TYPE_EXPECTED: 2720 switch (rte) { 2721 case RHF_RTE_EXPECTED_FLOW_SEQ_ERR: 2722 /* 2723 * On the first occurrence of a Flow Sequence error, 2724 * the flag TID_FLOW_SW_PSN is set. 2725 * 2726 * After that, the flow is *not* reprogrammed and the 2727 * protocol falls back to SW PSN checking. This is done 2728 * to prevent continuous Flow Sequence errors for any 2729 * packets that could be still in the fabric. 2730 */ 2731 flow = &req->flows[req->clear_tail]; 2732 trace_hfi1_tid_flow_read_kdeth_eflags(qp, 2733 req->clear_tail, 2734 flow); 2735 if (priv->s_flags & HFI1_R_TID_SW_PSN) { 2736 diff = cmp_psn(psn, 2737 flow->flow_state.r_next_psn); 2738 if (diff > 0) { 2739 /* Drop the packet.*/ 2740 goto s_unlock; 2741 } else if (diff < 0) { 2742 /* 2743 * If a response packet for a restarted 2744 * request has come back, reset the 2745 * restart flag. 2746 */ 2747 if (qp->r_flags & RVT_R_RDMAR_SEQ) 2748 qp->r_flags &= 2749 ~RVT_R_RDMAR_SEQ; 2750 2751 /* Drop the packet.*/ 2752 goto s_unlock; 2753 } 2754 2755 /* 2756 * If SW PSN verification is successful and 2757 * this is the last packet in the segment, tell 2758 * the caller to process it as a normal packet. 2759 */ 2760 fpsn = full_flow_psn(flow, 2761 flow->flow_state.lpsn); 2762 if (cmp_psn(fpsn, psn) == 0) { 2763 ret = false; 2764 if (qp->r_flags & RVT_R_RDMAR_SEQ) 2765 qp->r_flags &= 2766 ~RVT_R_RDMAR_SEQ; 2767 } 2768 flow->flow_state.r_next_psn = 2769 mask_psn(psn + 1); 2770 } else { 2771 u32 last_psn; 2772 2773 last_psn = read_r_next_psn(dd, rcd->ctxt, 2774 flow->idx); 2775 flow->flow_state.r_next_psn = last_psn; 2776 priv->s_flags |= HFI1_R_TID_SW_PSN; 2777 /* 2778 * If no request has been restarted yet, 2779 * restart the current one. 2780 */ 2781 if (!(qp->r_flags & RVT_R_RDMAR_SEQ)) 2782 restart_tid_rdma_read_req(rcd, qp, 2783 wqe); 2784 } 2785 2786 break; 2787 2788 case RHF_RTE_EXPECTED_FLOW_GEN_ERR: 2789 /* 2790 * Since the TID flow is able to ride through 2791 * generation mismatch, drop this stale packet. 2792 */ 2793 break; 2794 2795 default: 2796 break; 2797 } 2798 break; 2799 2800 case RHF_RCV_TYPE_ERROR: 2801 switch (rte) { 2802 case RHF_RTE_ERROR_OP_CODE_ERR: 2803 case RHF_RTE_ERROR_KHDR_MIN_LEN_ERR: 2804 case RHF_RTE_ERROR_KHDR_HCRC_ERR: 2805 case RHF_RTE_ERROR_KHDR_KVER_ERR: 2806 case RHF_RTE_ERROR_CONTEXT_ERR: 2807 case RHF_RTE_ERROR_KHDR_TID_ERR: 2808 default: 2809 break; 2810 } 2811 default: 2812 break; 2813 } 2814 s_unlock: 2815 spin_unlock(&qp->s_lock); 2816 return ret; 2817 } 2818 2819 bool hfi1_handle_kdeth_eflags(struct hfi1_ctxtdata *rcd, 2820 struct hfi1_pportdata *ppd, 2821 struct hfi1_packet *packet) 2822 { 2823 struct hfi1_ibport *ibp = &ppd->ibport_data; 2824 struct hfi1_devdata *dd = ppd->dd; 2825 struct rvt_dev_info *rdi = &dd->verbs_dev.rdi; 2826 u8 rcv_type = rhf_rcv_type(packet->rhf); 2827 u8 rte = rhf_rcv_type_err(packet->rhf); 2828 struct ib_header *hdr = packet->hdr; 2829 struct ib_other_headers *ohdr = NULL; 2830 int lnh = be16_to_cpu(hdr->lrh[0]) & 3; 2831 u16 lid = be16_to_cpu(hdr->lrh[1]); 2832 u8 opcode; 2833 u32 qp_num, psn, ibpsn; 2834 struct rvt_qp *qp; 2835 struct hfi1_qp_priv *qpriv; 2836 unsigned long flags; 2837 bool ret = true; 2838 struct rvt_ack_entry *e; 2839 struct tid_rdma_request *req; 2840 struct tid_rdma_flow *flow; 2841 int diff = 0; 2842 2843 trace_hfi1_msg_handle_kdeth_eflags(NULL, "Kdeth error: rhf ", 2844 packet->rhf); 2845 if (packet->rhf & RHF_ICRC_ERR) 2846 return ret; 2847 2848 packet->ohdr = &hdr->u.oth; 2849 ohdr = packet->ohdr; 2850 trace_input_ibhdr(rcd->dd, packet, !!(rhf_dc_info(packet->rhf))); 2851 2852 /* Get the destination QP number. */ 2853 qp_num = be32_to_cpu(ohdr->u.tid_rdma.r_rsp.verbs_qp) & 2854 RVT_QPN_MASK; 2855 if (lid >= be16_to_cpu(IB_MULTICAST_LID_BASE)) 2856 goto drop; 2857 2858 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 2859 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0xff; 2860 2861 rcu_read_lock(); 2862 qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num); 2863 if (!qp) 2864 goto rcu_unlock; 2865 2866 packet->qp = qp; 2867 2868 /* Check for valid receive state. */ 2869 spin_lock_irqsave(&qp->r_lock, flags); 2870 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK)) { 2871 ibp->rvp.n_pkt_drops++; 2872 goto r_unlock; 2873 } 2874 2875 if (packet->rhf & RHF_TID_ERR) { 2876 /* For TIDERR and RC QPs preemptively schedule a NAK */ 2877 u32 tlen = rhf_pkt_len(packet->rhf); /* in bytes */ 2878 2879 /* Sanity check packet */ 2880 if (tlen < 24) 2881 goto r_unlock; 2882 2883 /* 2884 * Check for GRH. We should never get packets with GRH in this 2885 * path. 2886 */ 2887 if (lnh == HFI1_LRH_GRH) 2888 goto r_unlock; 2889 2890 if (tid_rdma_tid_err(packet, rcv_type)) 2891 goto r_unlock; 2892 } 2893 2894 /* handle TID RDMA READ */ 2895 if (opcode == TID_OP(READ_RESP)) { 2896 ibpsn = be32_to_cpu(ohdr->u.tid_rdma.r_rsp.verbs_psn); 2897 ibpsn = mask_psn(ibpsn); 2898 ret = handle_read_kdeth_eflags(rcd, packet, rcv_type, rte, psn, 2899 ibpsn); 2900 goto r_unlock; 2901 } 2902 2903 /* 2904 * qp->s_tail_ack_queue points to the rvt_ack_entry currently being 2905 * processed. These a completed sequentially so we can be sure that 2906 * the pointer will not change until the entire request has completed. 2907 */ 2908 spin_lock(&qp->s_lock); 2909 qpriv = qp->priv; 2910 if (qpriv->r_tid_tail == HFI1_QP_WQE_INVALID || 2911 qpriv->r_tid_tail == qpriv->r_tid_head) 2912 goto unlock; 2913 e = &qp->s_ack_queue[qpriv->r_tid_tail]; 2914 if (e->opcode != TID_OP(WRITE_REQ)) 2915 goto unlock; 2916 req = ack_to_tid_req(e); 2917 if (req->comp_seg == req->cur_seg) 2918 goto unlock; 2919 flow = &req->flows[req->clear_tail]; 2920 trace_hfi1_eflags_err_write(qp, rcv_type, rte, psn); 2921 trace_hfi1_rsp_handle_kdeth_eflags(qp, psn); 2922 trace_hfi1_tid_write_rsp_handle_kdeth_eflags(qp); 2923 trace_hfi1_tid_req_handle_kdeth_eflags(qp, 0, e->opcode, e->psn, 2924 e->lpsn, req); 2925 trace_hfi1_tid_flow_handle_kdeth_eflags(qp, req->clear_tail, flow); 2926 2927 switch (rcv_type) { 2928 case RHF_RCV_TYPE_EXPECTED: 2929 switch (rte) { 2930 case RHF_RTE_EXPECTED_FLOW_SEQ_ERR: 2931 if (!(qpriv->s_flags & HFI1_R_TID_SW_PSN)) { 2932 qpriv->s_flags |= HFI1_R_TID_SW_PSN; 2933 flow->flow_state.r_next_psn = 2934 read_r_next_psn(dd, rcd->ctxt, 2935 flow->idx); 2936 qpriv->r_next_psn_kdeth = 2937 flow->flow_state.r_next_psn; 2938 goto nak_psn; 2939 } else { 2940 /* 2941 * If the received PSN does not match the next 2942 * expected PSN, NAK the packet. 2943 * However, only do that if we know that the a 2944 * NAK has already been sent. Otherwise, this 2945 * mismatch could be due to packets that were 2946 * already in flight. 2947 */ 2948 diff = cmp_psn(psn, 2949 flow->flow_state.r_next_psn); 2950 if (diff > 0) 2951 goto nak_psn; 2952 else if (diff < 0) 2953 break; 2954 2955 qpriv->s_nak_state = 0; 2956 /* 2957 * If SW PSN verification is successful and this 2958 * is the last packet in the segment, tell the 2959 * caller to process it as a normal packet. 2960 */ 2961 if (psn == full_flow_psn(flow, 2962 flow->flow_state.lpsn)) 2963 ret = false; 2964 flow->flow_state.r_next_psn = 2965 mask_psn(psn + 1); 2966 qpriv->r_next_psn_kdeth = 2967 flow->flow_state.r_next_psn; 2968 } 2969 break; 2970 2971 case RHF_RTE_EXPECTED_FLOW_GEN_ERR: 2972 goto nak_psn; 2973 2974 default: 2975 break; 2976 } 2977 break; 2978 2979 case RHF_RCV_TYPE_ERROR: 2980 switch (rte) { 2981 case RHF_RTE_ERROR_OP_CODE_ERR: 2982 case RHF_RTE_ERROR_KHDR_MIN_LEN_ERR: 2983 case RHF_RTE_ERROR_KHDR_HCRC_ERR: 2984 case RHF_RTE_ERROR_KHDR_KVER_ERR: 2985 case RHF_RTE_ERROR_CONTEXT_ERR: 2986 case RHF_RTE_ERROR_KHDR_TID_ERR: 2987 default: 2988 break; 2989 } 2990 default: 2991 break; 2992 } 2993 2994 unlock: 2995 spin_unlock(&qp->s_lock); 2996 r_unlock: 2997 spin_unlock_irqrestore(&qp->r_lock, flags); 2998 rcu_unlock: 2999 rcu_read_unlock(); 3000 drop: 3001 return ret; 3002 nak_psn: 3003 ibp->rvp.n_rc_seqnak++; 3004 if (!qpriv->s_nak_state) { 3005 qpriv->s_nak_state = IB_NAK_PSN_ERROR; 3006 /* We are NAK'ing the next expected PSN */ 3007 qpriv->s_nak_psn = mask_psn(flow->flow_state.r_next_psn); 3008 qpriv->s_flags |= RVT_S_ACK_PENDING; 3009 if (qpriv->r_tid_ack == HFI1_QP_WQE_INVALID) 3010 qpriv->r_tid_ack = qpriv->r_tid_tail; 3011 hfi1_schedule_tid_send(qp); 3012 } 3013 goto unlock; 3014 } 3015 3016 /* 3017 * "Rewind" the TID request information. 3018 * This means that we reset the state back to ACTIVE, 3019 * find the proper flow, set the flow index to that flow, 3020 * and reset the flow information. 3021 */ 3022 void hfi1_tid_rdma_restart_req(struct rvt_qp *qp, struct rvt_swqe *wqe, 3023 u32 *bth2) 3024 { 3025 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 3026 struct tid_rdma_flow *flow; 3027 struct hfi1_qp_priv *qpriv = qp->priv; 3028 int diff, delta_pkts; 3029 u32 tididx = 0, i; 3030 u16 fidx; 3031 3032 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) { 3033 *bth2 = mask_psn(qp->s_psn); 3034 flow = find_flow_ib(req, *bth2, &fidx); 3035 if (!flow) { 3036 trace_hfi1_msg_tid_restart_req(/* msg */ 3037 qp, "!!!!!! Could not find flow to restart: bth2 ", 3038 (u64)*bth2); 3039 trace_hfi1_tid_req_restart_req(qp, 0, wqe->wr.opcode, 3040 wqe->psn, wqe->lpsn, 3041 req); 3042 return; 3043 } 3044 } else { 3045 fidx = req->acked_tail; 3046 flow = &req->flows[fidx]; 3047 *bth2 = mask_psn(req->r_ack_psn); 3048 } 3049 3050 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) 3051 delta_pkts = delta_psn(*bth2, flow->flow_state.ib_spsn); 3052 else 3053 delta_pkts = delta_psn(*bth2, 3054 full_flow_psn(flow, 3055 flow->flow_state.spsn)); 3056 3057 trace_hfi1_tid_flow_restart_req(qp, fidx, flow); 3058 diff = delta_pkts + flow->resync_npkts; 3059 3060 flow->sent = 0; 3061 flow->pkt = 0; 3062 flow->tid_idx = 0; 3063 flow->tid_offset = 0; 3064 if (diff) { 3065 for (tididx = 0; tididx < flow->tidcnt; tididx++) { 3066 u32 tidentry = flow->tid_entry[tididx], tidlen, 3067 tidnpkts, npkts; 3068 3069 flow->tid_offset = 0; 3070 tidlen = EXP_TID_GET(tidentry, LEN) * PAGE_SIZE; 3071 tidnpkts = rvt_div_round_up_mtu(qp, tidlen); 3072 npkts = min_t(u32, diff, tidnpkts); 3073 flow->pkt += npkts; 3074 flow->sent += (npkts == tidnpkts ? tidlen : 3075 npkts * qp->pmtu); 3076 flow->tid_offset += npkts * qp->pmtu; 3077 diff -= npkts; 3078 if (!diff) 3079 break; 3080 } 3081 } 3082 if (wqe->wr.opcode == IB_WR_TID_RDMA_WRITE) { 3083 rvt_skip_sge(&qpriv->tid_ss, (req->cur_seg * req->seg_len) + 3084 flow->sent, 0); 3085 /* 3086 * Packet PSN is based on flow_state.spsn + flow->pkt. However, 3087 * during a RESYNC, the generation is incremented and the 3088 * sequence is reset to 0. Since we've adjusted the npkts in the 3089 * flow and the SGE has been sufficiently advanced, we have to 3090 * adjust flow->pkt in order to calculate the correct PSN. 3091 */ 3092 flow->pkt -= flow->resync_npkts; 3093 } 3094 3095 if (flow->tid_offset == 3096 EXP_TID_GET(flow->tid_entry[tididx], LEN) * PAGE_SIZE) { 3097 tididx++; 3098 flow->tid_offset = 0; 3099 } 3100 flow->tid_idx = tididx; 3101 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) 3102 /* Move flow_idx to correct index */ 3103 req->flow_idx = fidx; 3104 else 3105 req->clear_tail = fidx; 3106 3107 trace_hfi1_tid_flow_restart_req(qp, fidx, flow); 3108 trace_hfi1_tid_req_restart_req(qp, 0, wqe->wr.opcode, wqe->psn, 3109 wqe->lpsn, req); 3110 req->state = TID_REQUEST_ACTIVE; 3111 if (wqe->wr.opcode == IB_WR_TID_RDMA_WRITE) { 3112 /* Reset all the flows that we are going to resend */ 3113 fidx = CIRC_NEXT(fidx, MAX_FLOWS); 3114 i = qpriv->s_tid_tail; 3115 do { 3116 for (; CIRC_CNT(req->setup_head, fidx, MAX_FLOWS); 3117 fidx = CIRC_NEXT(fidx, MAX_FLOWS)) { 3118 req->flows[fidx].sent = 0; 3119 req->flows[fidx].pkt = 0; 3120 req->flows[fidx].tid_idx = 0; 3121 req->flows[fidx].tid_offset = 0; 3122 req->flows[fidx].resync_npkts = 0; 3123 } 3124 if (i == qpriv->s_tid_cur) 3125 break; 3126 do { 3127 i = (++i == qp->s_size ? 0 : i); 3128 wqe = rvt_get_swqe_ptr(qp, i); 3129 } while (wqe->wr.opcode != IB_WR_TID_RDMA_WRITE); 3130 req = wqe_to_tid_req(wqe); 3131 req->cur_seg = req->ack_seg; 3132 fidx = req->acked_tail; 3133 /* Pull req->clear_tail back */ 3134 req->clear_tail = fidx; 3135 } while (1); 3136 } 3137 } 3138 3139 void hfi1_qp_kern_exp_rcv_clear_all(struct rvt_qp *qp) 3140 { 3141 int i, ret; 3142 struct hfi1_qp_priv *qpriv = qp->priv; 3143 struct tid_flow_state *fs; 3144 3145 if (qp->ibqp.qp_type != IB_QPT_RC || !HFI1_CAP_IS_KSET(TID_RDMA)) 3146 return; 3147 3148 /* 3149 * First, clear the flow to help prevent any delayed packets from 3150 * being delivered. 3151 */ 3152 fs = &qpriv->flow_state; 3153 if (fs->index != RXE_NUM_TID_FLOWS) 3154 hfi1_kern_clear_hw_flow(qpriv->rcd, qp); 3155 3156 for (i = qp->s_acked; i != qp->s_head;) { 3157 struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, i); 3158 3159 if (++i == qp->s_size) 3160 i = 0; 3161 /* Free only locally allocated TID entries */ 3162 if (wqe->wr.opcode != IB_WR_TID_RDMA_READ) 3163 continue; 3164 do { 3165 struct hfi1_swqe_priv *priv = wqe->priv; 3166 3167 ret = hfi1_kern_exp_rcv_clear(&priv->tid_req); 3168 } while (!ret); 3169 } 3170 for (i = qp->s_acked_ack_queue; i != qp->r_head_ack_queue;) { 3171 struct rvt_ack_entry *e = &qp->s_ack_queue[i]; 3172 3173 if (++i == rvt_max_atomic(ib_to_rvt(qp->ibqp.device))) 3174 i = 0; 3175 /* Free only locally allocated TID entries */ 3176 if (e->opcode != TID_OP(WRITE_REQ)) 3177 continue; 3178 do { 3179 struct hfi1_ack_priv *priv = e->priv; 3180 3181 ret = hfi1_kern_exp_rcv_clear(&priv->tid_req); 3182 } while (!ret); 3183 } 3184 } 3185 3186 bool hfi1_tid_rdma_wqe_interlock(struct rvt_qp *qp, struct rvt_swqe *wqe) 3187 { 3188 struct rvt_swqe *prev; 3189 struct hfi1_qp_priv *priv = qp->priv; 3190 u32 s_prev; 3191 struct tid_rdma_request *req; 3192 3193 s_prev = (qp->s_cur == 0 ? qp->s_size : qp->s_cur) - 1; 3194 prev = rvt_get_swqe_ptr(qp, s_prev); 3195 3196 switch (wqe->wr.opcode) { 3197 case IB_WR_SEND: 3198 case IB_WR_SEND_WITH_IMM: 3199 case IB_WR_SEND_WITH_INV: 3200 case IB_WR_ATOMIC_CMP_AND_SWP: 3201 case IB_WR_ATOMIC_FETCH_AND_ADD: 3202 case IB_WR_RDMA_WRITE: 3203 switch (prev->wr.opcode) { 3204 case IB_WR_TID_RDMA_WRITE: 3205 req = wqe_to_tid_req(prev); 3206 if (req->ack_seg != req->total_segs) 3207 goto interlock; 3208 default: 3209 break; 3210 } 3211 break; 3212 case IB_WR_RDMA_READ: 3213 if (prev->wr.opcode != IB_WR_TID_RDMA_WRITE) 3214 break; 3215 /* fall through */ 3216 case IB_WR_TID_RDMA_READ: 3217 switch (prev->wr.opcode) { 3218 case IB_WR_RDMA_READ: 3219 if (qp->s_acked != qp->s_cur) 3220 goto interlock; 3221 break; 3222 case IB_WR_TID_RDMA_WRITE: 3223 req = wqe_to_tid_req(prev); 3224 if (req->ack_seg != req->total_segs) 3225 goto interlock; 3226 default: 3227 break; 3228 } 3229 default: 3230 break; 3231 } 3232 return false; 3233 3234 interlock: 3235 priv->s_flags |= HFI1_S_TID_WAIT_INTERLCK; 3236 return true; 3237 } 3238 3239 /* Does @sge meet the alignment requirements for tid rdma? */ 3240 static inline bool hfi1_check_sge_align(struct rvt_qp *qp, 3241 struct rvt_sge *sge, int num_sge) 3242 { 3243 int i; 3244 3245 for (i = 0; i < num_sge; i++, sge++) { 3246 trace_hfi1_sge_check_align(qp, i, sge); 3247 if ((u64)sge->vaddr & ~PAGE_MASK || 3248 sge->sge_length & ~PAGE_MASK) 3249 return false; 3250 } 3251 return true; 3252 } 3253 3254 void setup_tid_rdma_wqe(struct rvt_qp *qp, struct rvt_swqe *wqe) 3255 { 3256 struct hfi1_qp_priv *qpriv = (struct hfi1_qp_priv *)qp->priv; 3257 struct hfi1_swqe_priv *priv = wqe->priv; 3258 struct tid_rdma_params *remote; 3259 enum ib_wr_opcode new_opcode; 3260 bool do_tid_rdma = false; 3261 struct hfi1_pportdata *ppd = qpriv->rcd->ppd; 3262 3263 if ((rdma_ah_get_dlid(&qp->remote_ah_attr) & ~((1 << ppd->lmc) - 1)) == 3264 ppd->lid) 3265 return; 3266 if (qpriv->hdr_type != HFI1_PKT_TYPE_9B) 3267 return; 3268 3269 rcu_read_lock(); 3270 remote = rcu_dereference(qpriv->tid_rdma.remote); 3271 /* 3272 * If TID RDMA is disabled by the negotiation, don't 3273 * use it. 3274 */ 3275 if (!remote) 3276 goto exit; 3277 3278 if (wqe->wr.opcode == IB_WR_RDMA_READ) { 3279 if (hfi1_check_sge_align(qp, &wqe->sg_list[0], 3280 wqe->wr.num_sge)) { 3281 new_opcode = IB_WR_TID_RDMA_READ; 3282 do_tid_rdma = true; 3283 } 3284 } else if (wqe->wr.opcode == IB_WR_RDMA_WRITE) { 3285 /* 3286 * TID RDMA is enabled for this RDMA WRITE request iff: 3287 * 1. The remote address is page-aligned, 3288 * 2. The length is larger than the minimum segment size, 3289 * 3. The length is page-multiple. 3290 */ 3291 if (!(wqe->rdma_wr.remote_addr & ~PAGE_MASK) && 3292 !(wqe->length & ~PAGE_MASK)) { 3293 new_opcode = IB_WR_TID_RDMA_WRITE; 3294 do_tid_rdma = true; 3295 } 3296 } 3297 3298 if (do_tid_rdma) { 3299 if (hfi1_kern_exp_rcv_alloc_flows(&priv->tid_req, GFP_ATOMIC)) 3300 goto exit; 3301 wqe->wr.opcode = new_opcode; 3302 priv->tid_req.seg_len = 3303 min_t(u32, remote->max_len, wqe->length); 3304 priv->tid_req.total_segs = 3305 DIV_ROUND_UP(wqe->length, priv->tid_req.seg_len); 3306 /* Compute the last PSN of the request */ 3307 wqe->lpsn = wqe->psn; 3308 if (wqe->wr.opcode == IB_WR_TID_RDMA_READ) { 3309 priv->tid_req.n_flows = remote->max_read; 3310 qpriv->tid_r_reqs++; 3311 wqe->lpsn += rvt_div_round_up_mtu(qp, wqe->length) - 1; 3312 } else { 3313 wqe->lpsn += priv->tid_req.total_segs - 1; 3314 atomic_inc(&qpriv->n_requests); 3315 } 3316 3317 priv->tid_req.cur_seg = 0; 3318 priv->tid_req.comp_seg = 0; 3319 priv->tid_req.ack_seg = 0; 3320 priv->tid_req.state = TID_REQUEST_INACTIVE; 3321 /* 3322 * Reset acked_tail. 3323 * TID RDMA READ does not have ACKs so it does not 3324 * update the pointer. We have to reset it so TID RDMA 3325 * WRITE does not get confused. 3326 */ 3327 priv->tid_req.acked_tail = priv->tid_req.setup_head; 3328 trace_hfi1_tid_req_setup_tid_wqe(qp, 1, wqe->wr.opcode, 3329 wqe->psn, wqe->lpsn, 3330 &priv->tid_req); 3331 } 3332 exit: 3333 rcu_read_unlock(); 3334 } 3335 3336 /* TID RDMA WRITE functions */ 3337 3338 u32 hfi1_build_tid_rdma_write_req(struct rvt_qp *qp, struct rvt_swqe *wqe, 3339 struct ib_other_headers *ohdr, 3340 u32 *bth1, u32 *bth2, u32 *len) 3341 { 3342 struct hfi1_qp_priv *qpriv = qp->priv; 3343 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 3344 struct tid_rdma_params *remote; 3345 3346 rcu_read_lock(); 3347 remote = rcu_dereference(qpriv->tid_rdma.remote); 3348 /* 3349 * Set the number of flow to be used based on negotiated 3350 * parameters. 3351 */ 3352 req->n_flows = remote->max_write; 3353 req->state = TID_REQUEST_ACTIVE; 3354 3355 KDETH_RESET(ohdr->u.tid_rdma.w_req.kdeth0, KVER, 0x1); 3356 KDETH_RESET(ohdr->u.tid_rdma.w_req.kdeth1, JKEY, remote->jkey); 3357 ohdr->u.tid_rdma.w_req.reth.vaddr = 3358 cpu_to_be64(wqe->rdma_wr.remote_addr + (wqe->length - *len)); 3359 ohdr->u.tid_rdma.w_req.reth.rkey = 3360 cpu_to_be32(wqe->rdma_wr.rkey); 3361 ohdr->u.tid_rdma.w_req.reth.length = cpu_to_be32(*len); 3362 ohdr->u.tid_rdma.w_req.verbs_qp = cpu_to_be32(qp->remote_qpn); 3363 *bth1 &= ~RVT_QPN_MASK; 3364 *bth1 |= remote->qp; 3365 qp->s_state = TID_OP(WRITE_REQ); 3366 qp->s_flags |= HFI1_S_WAIT_TID_RESP; 3367 *bth2 |= IB_BTH_REQ_ACK; 3368 *len = 0; 3369 3370 rcu_read_unlock(); 3371 return sizeof(ohdr->u.tid_rdma.w_req) / sizeof(u32); 3372 } 3373 3374 void hfi1_compute_tid_rdma_flow_wt(void) 3375 { 3376 /* 3377 * Heuristic for computing the RNR timeout when waiting on the flow 3378 * queue. Rather than a computationaly expensive exact estimate of when 3379 * a flow will be available, we assume that if a QP is at position N in 3380 * the flow queue it has to wait approximately (N + 1) * (number of 3381 * segments between two sync points), assuming PMTU of 4K. The rationale 3382 * for this is that flows are released and recycled at each sync point. 3383 */ 3384 tid_rdma_flow_wt = MAX_TID_FLOW_PSN * enum_to_mtu(OPA_MTU_4096) / 3385 TID_RDMA_MAX_SEGMENT_SIZE; 3386 } 3387 3388 static u32 position_in_queue(struct hfi1_qp_priv *qpriv, 3389 struct tid_queue *queue) 3390 { 3391 return qpriv->tid_enqueue - queue->dequeue; 3392 } 3393 3394 /* 3395 * @qp: points to rvt_qp context. 3396 * @to_seg: desired RNR timeout in segments. 3397 * Return: index of the next highest timeout in the ib_hfi1_rnr_table[] 3398 */ 3399 static u32 hfi1_compute_tid_rnr_timeout(struct rvt_qp *qp, u32 to_seg) 3400 { 3401 struct hfi1_qp_priv *qpriv = qp->priv; 3402 u64 timeout; 3403 u32 bytes_per_us; 3404 u8 i; 3405 3406 bytes_per_us = active_egress_rate(qpriv->rcd->ppd) / 8; 3407 timeout = (to_seg * TID_RDMA_MAX_SEGMENT_SIZE) / bytes_per_us; 3408 /* 3409 * Find the next highest value in the RNR table to the required 3410 * timeout. This gives the responder some padding. 3411 */ 3412 for (i = 1; i <= IB_AETH_CREDIT_MASK; i++) 3413 if (rvt_rnr_tbl_to_usec(i) >= timeout) 3414 return i; 3415 return 0; 3416 } 3417 3418 /** 3419 * Central place for resource allocation at TID write responder, 3420 * is called from write_req and write_data interrupt handlers as 3421 * well as the send thread when a queued QP is scheduled for 3422 * resource allocation. 3423 * 3424 * Iterates over (a) segments of a request and then (b) queued requests 3425 * themselves to allocate resources for up to local->max_write 3426 * segments across multiple requests. Stop allocating when we 3427 * hit a sync point, resume allocating after data packets at 3428 * sync point have been received. 3429 * 3430 * Resource allocation and sending of responses is decoupled. The 3431 * request/segment which are being allocated and sent are as follows. 3432 * Resources are allocated for: 3433 * [request: qpriv->r_tid_alloc, segment: req->alloc_seg] 3434 * The send thread sends: 3435 * [request: qp->s_tail_ack_queue, segment:req->cur_seg] 3436 */ 3437 static void hfi1_tid_write_alloc_resources(struct rvt_qp *qp, bool intr_ctx) 3438 { 3439 struct tid_rdma_request *req; 3440 struct hfi1_qp_priv *qpriv = qp->priv; 3441 struct hfi1_ctxtdata *rcd = qpriv->rcd; 3442 struct tid_rdma_params *local = &qpriv->tid_rdma.local; 3443 struct rvt_ack_entry *e; 3444 u32 npkts, to_seg; 3445 bool last; 3446 int ret = 0; 3447 3448 lockdep_assert_held(&qp->s_lock); 3449 3450 while (1) { 3451 trace_hfi1_rsp_tid_write_alloc_res(qp, 0); 3452 trace_hfi1_tid_write_rsp_alloc_res(qp); 3453 /* 3454 * Don't allocate more segments if a RNR NAK has already been 3455 * scheduled to avoid messing up qp->r_psn: the RNR NAK will 3456 * be sent only when all allocated segments have been sent. 3457 * However, if more segments are allocated before that, TID RDMA 3458 * WRITE RESP packets will be sent out for these new segments 3459 * before the RNR NAK packet. When the requester receives the 3460 * RNR NAK packet, it will restart with qp->s_last_psn + 1, 3461 * which does not match qp->r_psn and will be dropped. 3462 * Consequently, the requester will exhaust its retries and 3463 * put the qp into error state. 3464 */ 3465 if (qpriv->rnr_nak_state == TID_RNR_NAK_SEND) 3466 break; 3467 3468 /* No requests left to process */ 3469 if (qpriv->r_tid_alloc == qpriv->r_tid_head) { 3470 /* If all data has been received, clear the flow */ 3471 if (qpriv->flow_state.index < RXE_NUM_TID_FLOWS && 3472 !qpriv->alloc_w_segs) { 3473 hfi1_kern_clear_hw_flow(rcd, qp); 3474 qpriv->s_flags &= ~HFI1_R_TID_SW_PSN; 3475 } 3476 break; 3477 } 3478 3479 e = &qp->s_ack_queue[qpriv->r_tid_alloc]; 3480 if (e->opcode != TID_OP(WRITE_REQ)) 3481 goto next_req; 3482 req = ack_to_tid_req(e); 3483 trace_hfi1_tid_req_write_alloc_res(qp, 0, e->opcode, e->psn, 3484 e->lpsn, req); 3485 /* Finished allocating for all segments of this request */ 3486 if (req->alloc_seg >= req->total_segs) 3487 goto next_req; 3488 3489 /* Can allocate only a maximum of local->max_write for a QP */ 3490 if (qpriv->alloc_w_segs >= local->max_write) 3491 break; 3492 3493 /* Don't allocate at a sync point with data packets pending */ 3494 if (qpriv->sync_pt && qpriv->alloc_w_segs) 3495 break; 3496 3497 /* All data received at the sync point, continue */ 3498 if (qpriv->sync_pt && !qpriv->alloc_w_segs) { 3499 hfi1_kern_clear_hw_flow(rcd, qp); 3500 qpriv->sync_pt = false; 3501 qpriv->s_flags &= ~HFI1_R_TID_SW_PSN; 3502 } 3503 3504 /* Allocate flow if we don't have one */ 3505 if (qpriv->flow_state.index >= RXE_NUM_TID_FLOWS) { 3506 ret = hfi1_kern_setup_hw_flow(qpriv->rcd, qp); 3507 if (ret) { 3508 to_seg = tid_rdma_flow_wt * 3509 position_in_queue(qpriv, 3510 &rcd->flow_queue); 3511 break; 3512 } 3513 } 3514 3515 npkts = rvt_div_round_up_mtu(qp, req->seg_len); 3516 3517 /* 3518 * We are at a sync point if we run out of KDETH PSN space. 3519 * Last PSN of every generation is reserved for RESYNC. 3520 */ 3521 if (qpriv->flow_state.psn + npkts > MAX_TID_FLOW_PSN - 1) { 3522 qpriv->sync_pt = true; 3523 break; 3524 } 3525 3526 /* 3527 * If overtaking req->acked_tail, send an RNR NAK. Because the 3528 * QP is not queued in this case, and the issue can only be 3529 * caused due a delay in scheduling the second leg which we 3530 * cannot estimate, we use a rather arbitrary RNR timeout of 3531 * (MAX_FLOWS / 2) segments 3532 */ 3533 if (!CIRC_SPACE(req->setup_head, req->acked_tail, 3534 MAX_FLOWS)) { 3535 ret = -EAGAIN; 3536 to_seg = MAX_FLOWS >> 1; 3537 qpriv->s_flags |= RVT_S_ACK_PENDING; 3538 hfi1_schedule_tid_send(qp); 3539 break; 3540 } 3541 3542 /* Try to allocate rcv array / TID entries */ 3543 ret = hfi1_kern_exp_rcv_setup(req, &req->ss, &last); 3544 if (ret == -EAGAIN) 3545 to_seg = position_in_queue(qpriv, &rcd->rarr_queue); 3546 if (ret) 3547 break; 3548 3549 qpriv->alloc_w_segs++; 3550 req->alloc_seg++; 3551 continue; 3552 next_req: 3553 /* Begin processing the next request */ 3554 if (++qpriv->r_tid_alloc > 3555 rvt_size_atomic(ib_to_rvt(qp->ibqp.device))) 3556 qpriv->r_tid_alloc = 0; 3557 } 3558 3559 /* 3560 * Schedule an RNR NAK to be sent if (a) flow or rcv array allocation 3561 * has failed (b) we are called from the rcv handler interrupt context 3562 * (c) an RNR NAK has not already been scheduled 3563 */ 3564 if (ret == -EAGAIN && intr_ctx && !qp->r_nak_state) 3565 goto send_rnr_nak; 3566 3567 return; 3568 3569 send_rnr_nak: 3570 lockdep_assert_held(&qp->r_lock); 3571 3572 /* Set r_nak_state to prevent unrelated events from generating NAK's */ 3573 qp->r_nak_state = hfi1_compute_tid_rnr_timeout(qp, to_seg) | IB_RNR_NAK; 3574 3575 /* Pull back r_psn to the segment being RNR NAK'd */ 3576 qp->r_psn = e->psn + req->alloc_seg; 3577 qp->r_ack_psn = qp->r_psn; 3578 /* 3579 * Pull back r_head_ack_queue to the ack entry following the request 3580 * being RNR NAK'd. This allows resources to be allocated to the request 3581 * if the queued QP is scheduled. 3582 */ 3583 qp->r_head_ack_queue = qpriv->r_tid_alloc + 1; 3584 if (qp->r_head_ack_queue > rvt_size_atomic(ib_to_rvt(qp->ibqp.device))) 3585 qp->r_head_ack_queue = 0; 3586 qpriv->r_tid_head = qp->r_head_ack_queue; 3587 /* 3588 * These send side fields are used in make_rc_ack(). They are set in 3589 * hfi1_send_rc_ack() but must be set here before dropping qp->s_lock 3590 * for consistency 3591 */ 3592 qp->s_nak_state = qp->r_nak_state; 3593 qp->s_ack_psn = qp->r_ack_psn; 3594 /* 3595 * Clear the ACK PENDING flag to prevent unwanted ACK because we 3596 * have modified qp->s_ack_psn here. 3597 */ 3598 qp->s_flags &= ~(RVT_S_ACK_PENDING); 3599 3600 trace_hfi1_rsp_tid_write_alloc_res(qp, qp->r_psn); 3601 /* 3602 * qpriv->rnr_nak_state is used to determine when the scheduled RNR NAK 3603 * has actually been sent. qp->s_flags RVT_S_ACK_PENDING bit cannot be 3604 * used for this because qp->s_lock is dropped before calling 3605 * hfi1_send_rc_ack() leading to inconsistency between the receive 3606 * interrupt handlers and the send thread in make_rc_ack() 3607 */ 3608 qpriv->rnr_nak_state = TID_RNR_NAK_SEND; 3609 3610 /* 3611 * Schedule RNR NAK to be sent. RNR NAK's are scheduled from the receive 3612 * interrupt handlers but will be sent from the send engine behind any 3613 * previous responses that may have been scheduled 3614 */ 3615 rc_defered_ack(rcd, qp); 3616 } 3617 3618 void hfi1_rc_rcv_tid_rdma_write_req(struct hfi1_packet *packet) 3619 { 3620 /* HANDLER FOR TID RDMA WRITE REQUEST packet (Responder side)*/ 3621 3622 /* 3623 * 1. Verify TID RDMA WRITE REQ as per IB_OPCODE_RC_RDMA_WRITE_FIRST 3624 * (see hfi1_rc_rcv()) 3625 * - Don't allow 0-length requests. 3626 * 2. Put TID RDMA WRITE REQ into the response queueu (s_ack_queue) 3627 * - Setup struct tid_rdma_req with request info 3628 * - Prepare struct tid_rdma_flow array? 3629 * 3. Set the qp->s_ack_state as state diagram in design doc. 3630 * 4. Set RVT_S_RESP_PENDING in s_flags. 3631 * 5. Kick the send engine (hfi1_schedule_send()) 3632 */ 3633 struct hfi1_ctxtdata *rcd = packet->rcd; 3634 struct rvt_qp *qp = packet->qp; 3635 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num); 3636 struct ib_other_headers *ohdr = packet->ohdr; 3637 struct rvt_ack_entry *e; 3638 unsigned long flags; 3639 struct ib_reth *reth; 3640 struct hfi1_qp_priv *qpriv = qp->priv; 3641 struct tid_rdma_request *req; 3642 u32 bth0, psn, len, rkey, num_segs; 3643 bool fecn; 3644 u8 next; 3645 u64 vaddr; 3646 int diff; 3647 3648 bth0 = be32_to_cpu(ohdr->bth[0]); 3649 if (hfi1_ruc_check_hdr(ibp, packet)) 3650 return; 3651 3652 fecn = process_ecn(qp, packet); 3653 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 3654 trace_hfi1_rsp_rcv_tid_write_req(qp, psn); 3655 3656 if (qp->state == IB_QPS_RTR && !(qp->r_flags & RVT_R_COMM_EST)) 3657 rvt_comm_est(qp); 3658 3659 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE))) 3660 goto nack_inv; 3661 3662 reth = &ohdr->u.tid_rdma.w_req.reth; 3663 vaddr = be64_to_cpu(reth->vaddr); 3664 len = be32_to_cpu(reth->length); 3665 3666 num_segs = DIV_ROUND_UP(len, qpriv->tid_rdma.local.max_len); 3667 diff = delta_psn(psn, qp->r_psn); 3668 if (unlikely(diff)) { 3669 tid_rdma_rcv_err(packet, ohdr, qp, psn, diff, fecn); 3670 return; 3671 } 3672 3673 /* 3674 * The resent request which was previously RNR NAK'd is inserted at the 3675 * location of the original request, which is one entry behind 3676 * r_head_ack_queue 3677 */ 3678 if (qpriv->rnr_nak_state) 3679 qp->r_head_ack_queue = qp->r_head_ack_queue ? 3680 qp->r_head_ack_queue - 1 : 3681 rvt_size_atomic(ib_to_rvt(qp->ibqp.device)); 3682 3683 /* We've verified the request, insert it into the ack queue. */ 3684 next = qp->r_head_ack_queue + 1; 3685 if (next > rvt_size_atomic(ib_to_rvt(qp->ibqp.device))) 3686 next = 0; 3687 spin_lock_irqsave(&qp->s_lock, flags); 3688 if (unlikely(next == qp->s_acked_ack_queue)) { 3689 if (!qp->s_ack_queue[next].sent) 3690 goto nack_inv_unlock; 3691 update_ack_queue(qp, next); 3692 } 3693 e = &qp->s_ack_queue[qp->r_head_ack_queue]; 3694 req = ack_to_tid_req(e); 3695 3696 /* Bring previously RNR NAK'd request back to life */ 3697 if (qpriv->rnr_nak_state) { 3698 qp->r_nak_state = 0; 3699 qp->s_nak_state = 0; 3700 qpriv->rnr_nak_state = TID_RNR_NAK_INIT; 3701 qp->r_psn = e->lpsn + 1; 3702 req->state = TID_REQUEST_INIT; 3703 goto update_head; 3704 } 3705 3706 release_rdma_sge_mr(e); 3707 3708 /* The length needs to be in multiples of PAGE_SIZE */ 3709 if (!len || len & ~PAGE_MASK) 3710 goto nack_inv_unlock; 3711 3712 rkey = be32_to_cpu(reth->rkey); 3713 qp->r_len = len; 3714 3715 if (e->opcode == TID_OP(WRITE_REQ) && 3716 (req->setup_head != req->clear_tail || 3717 req->clear_tail != req->acked_tail)) 3718 goto nack_inv_unlock; 3719 3720 if (unlikely(!rvt_rkey_ok(qp, &e->rdma_sge, qp->r_len, vaddr, 3721 rkey, IB_ACCESS_REMOTE_WRITE))) 3722 goto nack_acc; 3723 3724 qp->r_psn += num_segs - 1; 3725 3726 e->opcode = (bth0 >> 24) & 0xff; 3727 e->psn = psn; 3728 e->lpsn = qp->r_psn; 3729 e->sent = 0; 3730 3731 req->n_flows = min_t(u16, num_segs, qpriv->tid_rdma.local.max_write); 3732 req->state = TID_REQUEST_INIT; 3733 req->cur_seg = 0; 3734 req->comp_seg = 0; 3735 req->ack_seg = 0; 3736 req->alloc_seg = 0; 3737 req->isge = 0; 3738 req->seg_len = qpriv->tid_rdma.local.max_len; 3739 req->total_len = len; 3740 req->total_segs = num_segs; 3741 req->r_flow_psn = e->psn; 3742 req->ss.sge = e->rdma_sge; 3743 req->ss.num_sge = 1; 3744 3745 req->flow_idx = req->setup_head; 3746 req->clear_tail = req->setup_head; 3747 req->acked_tail = req->setup_head; 3748 3749 qp->r_state = e->opcode; 3750 qp->r_nak_state = 0; 3751 /* 3752 * We need to increment the MSN here instead of when we 3753 * finish sending the result since a duplicate request would 3754 * increment it more than once. 3755 */ 3756 qp->r_msn++; 3757 qp->r_psn++; 3758 3759 trace_hfi1_tid_req_rcv_write_req(qp, 0, e->opcode, e->psn, e->lpsn, 3760 req); 3761 3762 if (qpriv->r_tid_tail == HFI1_QP_WQE_INVALID) { 3763 qpriv->r_tid_tail = qp->r_head_ack_queue; 3764 } else if (qpriv->r_tid_tail == qpriv->r_tid_head) { 3765 struct tid_rdma_request *ptr; 3766 3767 e = &qp->s_ack_queue[qpriv->r_tid_tail]; 3768 ptr = ack_to_tid_req(e); 3769 3770 if (e->opcode != TID_OP(WRITE_REQ) || 3771 ptr->comp_seg == ptr->total_segs) { 3772 if (qpriv->r_tid_tail == qpriv->r_tid_ack) 3773 qpriv->r_tid_ack = qp->r_head_ack_queue; 3774 qpriv->r_tid_tail = qp->r_head_ack_queue; 3775 } 3776 } 3777 update_head: 3778 qp->r_head_ack_queue = next; 3779 qpriv->r_tid_head = qp->r_head_ack_queue; 3780 3781 hfi1_tid_write_alloc_resources(qp, true); 3782 trace_hfi1_tid_write_rsp_rcv_req(qp); 3783 3784 /* Schedule the send tasklet. */ 3785 qp->s_flags |= RVT_S_RESP_PENDING; 3786 if (fecn) 3787 qp->s_flags |= RVT_S_ECN; 3788 hfi1_schedule_send(qp); 3789 3790 spin_unlock_irqrestore(&qp->s_lock, flags); 3791 return; 3792 3793 nack_inv_unlock: 3794 spin_unlock_irqrestore(&qp->s_lock, flags); 3795 nack_inv: 3796 rvt_rc_error(qp, IB_WC_LOC_QP_OP_ERR); 3797 qp->r_nak_state = IB_NAK_INVALID_REQUEST; 3798 qp->r_ack_psn = qp->r_psn; 3799 /* Queue NAK for later */ 3800 rc_defered_ack(rcd, qp); 3801 return; 3802 nack_acc: 3803 spin_unlock_irqrestore(&qp->s_lock, flags); 3804 rvt_rc_error(qp, IB_WC_LOC_PROT_ERR); 3805 qp->r_nak_state = IB_NAK_REMOTE_ACCESS_ERROR; 3806 qp->r_ack_psn = qp->r_psn; 3807 } 3808 3809 u32 hfi1_build_tid_rdma_write_resp(struct rvt_qp *qp, struct rvt_ack_entry *e, 3810 struct ib_other_headers *ohdr, u32 *bth1, 3811 u32 bth2, u32 *len, 3812 struct rvt_sge_state **ss) 3813 { 3814 struct hfi1_ack_priv *epriv = e->priv; 3815 struct tid_rdma_request *req = &epriv->tid_req; 3816 struct hfi1_qp_priv *qpriv = qp->priv; 3817 struct tid_rdma_flow *flow = NULL; 3818 u32 resp_len = 0, hdwords = 0; 3819 void *resp_addr = NULL; 3820 struct tid_rdma_params *remote; 3821 3822 trace_hfi1_tid_req_build_write_resp(qp, 0, e->opcode, e->psn, e->lpsn, 3823 req); 3824 trace_hfi1_tid_write_rsp_build_resp(qp); 3825 trace_hfi1_rsp_build_tid_write_resp(qp, bth2); 3826 flow = &req->flows[req->flow_idx]; 3827 switch (req->state) { 3828 default: 3829 /* 3830 * Try to allocate resources here in case QP was queued and was 3831 * later scheduled when resources became available 3832 */ 3833 hfi1_tid_write_alloc_resources(qp, false); 3834 3835 /* We've already sent everything which is ready */ 3836 if (req->cur_seg >= req->alloc_seg) 3837 goto done; 3838 3839 /* 3840 * Resources can be assigned but responses cannot be sent in 3841 * rnr_nak state, till the resent request is received 3842 */ 3843 if (qpriv->rnr_nak_state == TID_RNR_NAK_SENT) 3844 goto done; 3845 3846 req->state = TID_REQUEST_ACTIVE; 3847 trace_hfi1_tid_flow_build_write_resp(qp, req->flow_idx, flow); 3848 req->flow_idx = CIRC_NEXT(req->flow_idx, MAX_FLOWS); 3849 hfi1_add_tid_reap_timer(qp); 3850 break; 3851 3852 case TID_REQUEST_RESEND_ACTIVE: 3853 case TID_REQUEST_RESEND: 3854 trace_hfi1_tid_flow_build_write_resp(qp, req->flow_idx, flow); 3855 req->flow_idx = CIRC_NEXT(req->flow_idx, MAX_FLOWS); 3856 if (!CIRC_CNT(req->setup_head, req->flow_idx, MAX_FLOWS)) 3857 req->state = TID_REQUEST_ACTIVE; 3858 3859 hfi1_mod_tid_reap_timer(qp); 3860 break; 3861 } 3862 flow->flow_state.resp_ib_psn = bth2; 3863 resp_addr = (void *)flow->tid_entry; 3864 resp_len = sizeof(*flow->tid_entry) * flow->tidcnt; 3865 req->cur_seg++; 3866 3867 memset(&ohdr->u.tid_rdma.w_rsp, 0, sizeof(ohdr->u.tid_rdma.w_rsp)); 3868 epriv->ss.sge.vaddr = resp_addr; 3869 epriv->ss.sge.sge_length = resp_len; 3870 epriv->ss.sge.length = epriv->ss.sge.sge_length; 3871 /* 3872 * We can safely zero these out. Since the first SGE covers the 3873 * entire packet, nothing else should even look at the MR. 3874 */ 3875 epriv->ss.sge.mr = NULL; 3876 epriv->ss.sge.m = 0; 3877 epriv->ss.sge.n = 0; 3878 3879 epriv->ss.sg_list = NULL; 3880 epriv->ss.total_len = epriv->ss.sge.sge_length; 3881 epriv->ss.num_sge = 1; 3882 3883 *ss = &epriv->ss; 3884 *len = epriv->ss.total_len; 3885 3886 /* Construct the TID RDMA WRITE RESP packet header */ 3887 rcu_read_lock(); 3888 remote = rcu_dereference(qpriv->tid_rdma.remote); 3889 3890 KDETH_RESET(ohdr->u.tid_rdma.w_rsp.kdeth0, KVER, 0x1); 3891 KDETH_RESET(ohdr->u.tid_rdma.w_rsp.kdeth1, JKEY, remote->jkey); 3892 ohdr->u.tid_rdma.w_rsp.aeth = rvt_compute_aeth(qp); 3893 ohdr->u.tid_rdma.w_rsp.tid_flow_psn = 3894 cpu_to_be32((flow->flow_state.generation << 3895 HFI1_KDETH_BTH_SEQ_SHIFT) | 3896 (flow->flow_state.spsn & 3897 HFI1_KDETH_BTH_SEQ_MASK)); 3898 ohdr->u.tid_rdma.w_rsp.tid_flow_qp = 3899 cpu_to_be32(qpriv->tid_rdma.local.qp | 3900 ((flow->idx & TID_RDMA_DESTQP_FLOW_MASK) << 3901 TID_RDMA_DESTQP_FLOW_SHIFT) | 3902 qpriv->rcd->ctxt); 3903 ohdr->u.tid_rdma.w_rsp.verbs_qp = cpu_to_be32(qp->remote_qpn); 3904 *bth1 = remote->qp; 3905 rcu_read_unlock(); 3906 hdwords = sizeof(ohdr->u.tid_rdma.w_rsp) / sizeof(u32); 3907 qpriv->pending_tid_w_segs++; 3908 done: 3909 return hdwords; 3910 } 3911 3912 static void hfi1_add_tid_reap_timer(struct rvt_qp *qp) 3913 { 3914 struct hfi1_qp_priv *qpriv = qp->priv; 3915 3916 lockdep_assert_held(&qp->s_lock); 3917 if (!(qpriv->s_flags & HFI1_R_TID_RSC_TIMER)) { 3918 qpriv->s_flags |= HFI1_R_TID_RSC_TIMER; 3919 qpriv->s_tid_timer.expires = jiffies + 3920 qpriv->tid_timer_timeout_jiffies; 3921 add_timer(&qpriv->s_tid_timer); 3922 } 3923 } 3924 3925 static void hfi1_mod_tid_reap_timer(struct rvt_qp *qp) 3926 { 3927 struct hfi1_qp_priv *qpriv = qp->priv; 3928 3929 lockdep_assert_held(&qp->s_lock); 3930 qpriv->s_flags |= HFI1_R_TID_RSC_TIMER; 3931 mod_timer(&qpriv->s_tid_timer, jiffies + 3932 qpriv->tid_timer_timeout_jiffies); 3933 } 3934 3935 static int hfi1_stop_tid_reap_timer(struct rvt_qp *qp) 3936 { 3937 struct hfi1_qp_priv *qpriv = qp->priv; 3938 int rval = 0; 3939 3940 lockdep_assert_held(&qp->s_lock); 3941 if (qpriv->s_flags & HFI1_R_TID_RSC_TIMER) { 3942 rval = del_timer(&qpriv->s_tid_timer); 3943 qpriv->s_flags &= ~HFI1_R_TID_RSC_TIMER; 3944 } 3945 return rval; 3946 } 3947 3948 void hfi1_del_tid_reap_timer(struct rvt_qp *qp) 3949 { 3950 struct hfi1_qp_priv *qpriv = qp->priv; 3951 3952 del_timer_sync(&qpriv->s_tid_timer); 3953 qpriv->s_flags &= ~HFI1_R_TID_RSC_TIMER; 3954 } 3955 3956 static void hfi1_tid_timeout(struct timer_list *t) 3957 { 3958 struct hfi1_qp_priv *qpriv = from_timer(qpriv, t, s_tid_timer); 3959 struct rvt_qp *qp = qpriv->owner; 3960 struct rvt_dev_info *rdi = ib_to_rvt(qp->ibqp.device); 3961 unsigned long flags; 3962 u32 i; 3963 3964 spin_lock_irqsave(&qp->r_lock, flags); 3965 spin_lock(&qp->s_lock); 3966 if (qpriv->s_flags & HFI1_R_TID_RSC_TIMER) { 3967 dd_dev_warn(dd_from_ibdev(qp->ibqp.device), "[QP%u] %s %d\n", 3968 qp->ibqp.qp_num, __func__, __LINE__); 3969 trace_hfi1_msg_tid_timeout(/* msg */ 3970 qp, "resource timeout = ", 3971 (u64)qpriv->tid_timer_timeout_jiffies); 3972 hfi1_stop_tid_reap_timer(qp); 3973 /* 3974 * Go though the entire ack queue and clear any outstanding 3975 * HW flow and RcvArray resources. 3976 */ 3977 hfi1_kern_clear_hw_flow(qpriv->rcd, qp); 3978 for (i = 0; i < rvt_max_atomic(rdi); i++) { 3979 struct tid_rdma_request *req = 3980 ack_to_tid_req(&qp->s_ack_queue[i]); 3981 3982 hfi1_kern_exp_rcv_clear_all(req); 3983 } 3984 spin_unlock(&qp->s_lock); 3985 if (qp->ibqp.event_handler) { 3986 struct ib_event ev; 3987 3988 ev.device = qp->ibqp.device; 3989 ev.element.qp = &qp->ibqp; 3990 ev.event = IB_EVENT_QP_FATAL; 3991 qp->ibqp.event_handler(&ev, qp->ibqp.qp_context); 3992 } 3993 rvt_rc_error(qp, IB_WC_RESP_TIMEOUT_ERR); 3994 goto unlock_r_lock; 3995 } 3996 spin_unlock(&qp->s_lock); 3997 unlock_r_lock: 3998 spin_unlock_irqrestore(&qp->r_lock, flags); 3999 } 4000 4001 void hfi1_rc_rcv_tid_rdma_write_resp(struct hfi1_packet *packet) 4002 { 4003 /* HANDLER FOR TID RDMA WRITE RESPONSE packet (Requestor side */ 4004 4005 /* 4006 * 1. Find matching SWQE 4007 * 2. Check that TIDENTRY array has enough space for a complete 4008 * segment. If not, put QP in error state. 4009 * 3. Save response data in struct tid_rdma_req and struct tid_rdma_flow 4010 * 4. Remove HFI1_S_WAIT_TID_RESP from s_flags. 4011 * 5. Set qp->s_state 4012 * 6. Kick the send engine (hfi1_schedule_send()) 4013 */ 4014 struct ib_other_headers *ohdr = packet->ohdr; 4015 struct rvt_qp *qp = packet->qp; 4016 struct hfi1_qp_priv *qpriv = qp->priv; 4017 struct hfi1_ctxtdata *rcd = packet->rcd; 4018 struct rvt_swqe *wqe; 4019 struct tid_rdma_request *req; 4020 struct tid_rdma_flow *flow; 4021 enum ib_wc_status status; 4022 u32 opcode, aeth, psn, flow_psn, i, tidlen = 0, pktlen; 4023 bool fecn; 4024 unsigned long flags; 4025 4026 fecn = process_ecn(qp, packet); 4027 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 4028 aeth = be32_to_cpu(ohdr->u.tid_rdma.w_rsp.aeth); 4029 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0xff; 4030 4031 spin_lock_irqsave(&qp->s_lock, flags); 4032 4033 /* Ignore invalid responses */ 4034 if (cmp_psn(psn, qp->s_next_psn) >= 0) 4035 goto ack_done; 4036 4037 /* Ignore duplicate responses. */ 4038 if (unlikely(cmp_psn(psn, qp->s_last_psn) <= 0)) 4039 goto ack_done; 4040 4041 if (unlikely(qp->s_acked == qp->s_tail)) 4042 goto ack_done; 4043 4044 /* 4045 * If we are waiting for a particular packet sequence number 4046 * due to a request being resent, check for it. Otherwise, 4047 * ensure that we haven't missed anything. 4048 */ 4049 if (qp->r_flags & RVT_R_RDMAR_SEQ) { 4050 if (cmp_psn(psn, qp->s_last_psn + 1) != 0) 4051 goto ack_done; 4052 qp->r_flags &= ~RVT_R_RDMAR_SEQ; 4053 } 4054 4055 wqe = rvt_get_swqe_ptr(qp, qpriv->s_tid_cur); 4056 if (unlikely(wqe->wr.opcode != IB_WR_TID_RDMA_WRITE)) 4057 goto ack_op_err; 4058 4059 req = wqe_to_tid_req(wqe); 4060 /* 4061 * If we've lost ACKs and our acked_tail pointer is too far 4062 * behind, don't overwrite segments. Just drop the packet and 4063 * let the reliability protocol take care of it. 4064 */ 4065 if (!CIRC_SPACE(req->setup_head, req->acked_tail, MAX_FLOWS)) 4066 goto ack_done; 4067 4068 /* 4069 * The call to do_rc_ack() should be last in the chain of 4070 * packet checks because it will end up updating the QP state. 4071 * Therefore, anything that would prevent the packet from 4072 * being accepted as a successful response should be prior 4073 * to it. 4074 */ 4075 if (!do_rc_ack(qp, aeth, psn, opcode, 0, rcd)) 4076 goto ack_done; 4077 4078 trace_hfi1_ack(qp, psn); 4079 4080 flow = &req->flows[req->setup_head]; 4081 flow->pkt = 0; 4082 flow->tid_idx = 0; 4083 flow->tid_offset = 0; 4084 flow->sent = 0; 4085 flow->resync_npkts = 0; 4086 flow->tid_qpn = be32_to_cpu(ohdr->u.tid_rdma.w_rsp.tid_flow_qp); 4087 flow->idx = (flow->tid_qpn >> TID_RDMA_DESTQP_FLOW_SHIFT) & 4088 TID_RDMA_DESTQP_FLOW_MASK; 4089 flow_psn = mask_psn(be32_to_cpu(ohdr->u.tid_rdma.w_rsp.tid_flow_psn)); 4090 flow->flow_state.generation = flow_psn >> HFI1_KDETH_BTH_SEQ_SHIFT; 4091 flow->flow_state.spsn = flow_psn & HFI1_KDETH_BTH_SEQ_MASK; 4092 flow->flow_state.resp_ib_psn = psn; 4093 flow->length = min_t(u32, req->seg_len, 4094 (wqe->length - (req->comp_seg * req->seg_len))); 4095 4096 flow->npkts = rvt_div_round_up_mtu(qp, flow->length); 4097 flow->flow_state.lpsn = flow->flow_state.spsn + 4098 flow->npkts - 1; 4099 /* payload length = packet length - (header length + ICRC length) */ 4100 pktlen = packet->tlen - (packet->hlen + 4); 4101 if (pktlen > sizeof(flow->tid_entry)) { 4102 status = IB_WC_LOC_LEN_ERR; 4103 goto ack_err; 4104 } 4105 memcpy(flow->tid_entry, packet->ebuf, pktlen); 4106 flow->tidcnt = pktlen / sizeof(*flow->tid_entry); 4107 trace_hfi1_tid_flow_rcv_write_resp(qp, req->setup_head, flow); 4108 4109 req->comp_seg++; 4110 trace_hfi1_tid_write_sender_rcv_resp(qp, 0); 4111 /* 4112 * Walk the TID_ENTRY list to make sure we have enough space for a 4113 * complete segment. 4114 */ 4115 for (i = 0; i < flow->tidcnt; i++) { 4116 trace_hfi1_tid_entry_rcv_write_resp(/* entry */ 4117 qp, i, flow->tid_entry[i]); 4118 if (!EXP_TID_GET(flow->tid_entry[i], LEN)) { 4119 status = IB_WC_LOC_LEN_ERR; 4120 goto ack_err; 4121 } 4122 tidlen += EXP_TID_GET(flow->tid_entry[i], LEN); 4123 } 4124 if (tidlen * PAGE_SIZE < flow->length) { 4125 status = IB_WC_LOC_LEN_ERR; 4126 goto ack_err; 4127 } 4128 4129 trace_hfi1_tid_req_rcv_write_resp(qp, 0, wqe->wr.opcode, wqe->psn, 4130 wqe->lpsn, req); 4131 /* 4132 * If this is the first response for this request, set the initial 4133 * flow index to the current flow. 4134 */ 4135 if (!cmp_psn(psn, wqe->psn)) { 4136 req->r_last_acked = mask_psn(wqe->psn - 1); 4137 /* Set acked flow index to head index */ 4138 req->acked_tail = req->setup_head; 4139 } 4140 4141 /* advance circular buffer head */ 4142 req->setup_head = CIRC_NEXT(req->setup_head, MAX_FLOWS); 4143 req->state = TID_REQUEST_ACTIVE; 4144 4145 /* 4146 * If all responses for this TID RDMA WRITE request have been received 4147 * advance the pointer to the next one. 4148 * Since TID RDMA requests could be mixed in with regular IB requests, 4149 * they might not appear sequentially in the queue. Therefore, the 4150 * next request needs to be "found". 4151 */ 4152 if (qpriv->s_tid_cur != qpriv->s_tid_head && 4153 req->comp_seg == req->total_segs) { 4154 for (i = qpriv->s_tid_cur + 1; ; i++) { 4155 if (i == qp->s_size) 4156 i = 0; 4157 wqe = rvt_get_swqe_ptr(qp, i); 4158 if (i == qpriv->s_tid_head) 4159 break; 4160 if (wqe->wr.opcode == IB_WR_TID_RDMA_WRITE) 4161 break; 4162 } 4163 qpriv->s_tid_cur = i; 4164 } 4165 qp->s_flags &= ~HFI1_S_WAIT_TID_RESP; 4166 hfi1_schedule_tid_send(qp); 4167 goto ack_done; 4168 4169 ack_op_err: 4170 status = IB_WC_LOC_QP_OP_ERR; 4171 ack_err: 4172 rvt_error_qp(qp, status); 4173 ack_done: 4174 if (fecn) 4175 qp->s_flags |= RVT_S_ECN; 4176 spin_unlock_irqrestore(&qp->s_lock, flags); 4177 } 4178 4179 bool hfi1_build_tid_rdma_packet(struct rvt_swqe *wqe, 4180 struct ib_other_headers *ohdr, 4181 u32 *bth1, u32 *bth2, u32 *len) 4182 { 4183 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 4184 struct tid_rdma_flow *flow = &req->flows[req->clear_tail]; 4185 struct tid_rdma_params *remote; 4186 struct rvt_qp *qp = req->qp; 4187 struct hfi1_qp_priv *qpriv = qp->priv; 4188 u32 tidentry = flow->tid_entry[flow->tid_idx]; 4189 u32 tidlen = EXP_TID_GET(tidentry, LEN) << PAGE_SHIFT; 4190 struct tid_rdma_write_data *wd = &ohdr->u.tid_rdma.w_data; 4191 u32 next_offset, om = KDETH_OM_LARGE; 4192 bool last_pkt; 4193 4194 if (!tidlen) { 4195 hfi1_trdma_send_complete(qp, wqe, IB_WC_REM_INV_RD_REQ_ERR); 4196 rvt_error_qp(qp, IB_WC_REM_INV_RD_REQ_ERR); 4197 } 4198 4199 *len = min_t(u32, qp->pmtu, tidlen - flow->tid_offset); 4200 flow->sent += *len; 4201 next_offset = flow->tid_offset + *len; 4202 last_pkt = (flow->tid_idx == (flow->tidcnt - 1) && 4203 next_offset >= tidlen) || (flow->sent >= flow->length); 4204 trace_hfi1_tid_entry_build_write_data(qp, flow->tid_idx, tidentry); 4205 trace_hfi1_tid_flow_build_write_data(qp, req->clear_tail, flow); 4206 4207 rcu_read_lock(); 4208 remote = rcu_dereference(qpriv->tid_rdma.remote); 4209 KDETH_RESET(wd->kdeth0, KVER, 0x1); 4210 KDETH_SET(wd->kdeth0, SH, !last_pkt); 4211 KDETH_SET(wd->kdeth0, INTR, !!(!last_pkt && remote->urg)); 4212 KDETH_SET(wd->kdeth0, TIDCTRL, EXP_TID_GET(tidentry, CTRL)); 4213 KDETH_SET(wd->kdeth0, TID, EXP_TID_GET(tidentry, IDX)); 4214 KDETH_SET(wd->kdeth0, OM, om == KDETH_OM_LARGE); 4215 KDETH_SET(wd->kdeth0, OFFSET, flow->tid_offset / om); 4216 KDETH_RESET(wd->kdeth1, JKEY, remote->jkey); 4217 wd->verbs_qp = cpu_to_be32(qp->remote_qpn); 4218 rcu_read_unlock(); 4219 4220 *bth1 = flow->tid_qpn; 4221 *bth2 = mask_psn(((flow->flow_state.spsn + flow->pkt++) & 4222 HFI1_KDETH_BTH_SEQ_MASK) | 4223 (flow->flow_state.generation << 4224 HFI1_KDETH_BTH_SEQ_SHIFT)); 4225 if (last_pkt) { 4226 /* PSNs are zero-based, so +1 to count number of packets */ 4227 if (flow->flow_state.lpsn + 1 + 4228 rvt_div_round_up_mtu(qp, req->seg_len) > 4229 MAX_TID_FLOW_PSN) 4230 req->state = TID_REQUEST_SYNC; 4231 *bth2 |= IB_BTH_REQ_ACK; 4232 } 4233 4234 if (next_offset >= tidlen) { 4235 flow->tid_offset = 0; 4236 flow->tid_idx++; 4237 } else { 4238 flow->tid_offset = next_offset; 4239 } 4240 return last_pkt; 4241 } 4242 4243 void hfi1_rc_rcv_tid_rdma_write_data(struct hfi1_packet *packet) 4244 { 4245 struct rvt_qp *qp = packet->qp; 4246 struct hfi1_qp_priv *priv = qp->priv; 4247 struct hfi1_ctxtdata *rcd = priv->rcd; 4248 struct ib_other_headers *ohdr = packet->ohdr; 4249 struct rvt_ack_entry *e; 4250 struct tid_rdma_request *req; 4251 struct tid_rdma_flow *flow; 4252 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device); 4253 unsigned long flags; 4254 u32 psn, next; 4255 u8 opcode; 4256 bool fecn; 4257 4258 fecn = process_ecn(qp, packet); 4259 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 4260 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0xff; 4261 4262 /* 4263 * All error handling should be done by now. If we are here, the packet 4264 * is either good or been accepted by the error handler. 4265 */ 4266 spin_lock_irqsave(&qp->s_lock, flags); 4267 e = &qp->s_ack_queue[priv->r_tid_tail]; 4268 req = ack_to_tid_req(e); 4269 flow = &req->flows[req->clear_tail]; 4270 if (cmp_psn(psn, full_flow_psn(flow, flow->flow_state.lpsn))) { 4271 update_r_next_psn_fecn(packet, priv, rcd, flow, fecn); 4272 4273 if (cmp_psn(psn, flow->flow_state.r_next_psn)) 4274 goto send_nak; 4275 4276 flow->flow_state.r_next_psn = mask_psn(psn + 1); 4277 /* 4278 * Copy the payload to destination buffer if this packet is 4279 * delivered as an eager packet due to RSM rule and FECN. 4280 * The RSM rule selects FECN bit in BTH and SH bit in 4281 * KDETH header and therefore will not match the last 4282 * packet of each segment that has SH bit cleared. 4283 */ 4284 if (fecn && packet->etype == RHF_RCV_TYPE_EAGER) { 4285 struct rvt_sge_state ss; 4286 u32 len; 4287 u32 tlen = packet->tlen; 4288 u16 hdrsize = packet->hlen; 4289 u8 pad = packet->pad; 4290 u8 extra_bytes = pad + packet->extra_byte + 4291 (SIZE_OF_CRC << 2); 4292 u32 pmtu = qp->pmtu; 4293 4294 if (unlikely(tlen != (hdrsize + pmtu + extra_bytes))) 4295 goto send_nak; 4296 len = req->comp_seg * req->seg_len; 4297 len += delta_psn(psn, 4298 full_flow_psn(flow, flow->flow_state.spsn)) * 4299 pmtu; 4300 if (unlikely(req->total_len - len < pmtu)) 4301 goto send_nak; 4302 4303 /* 4304 * The e->rdma_sge field is set when TID RDMA WRITE REQ 4305 * is first received and is never modified thereafter. 4306 */ 4307 ss.sge = e->rdma_sge; 4308 ss.sg_list = NULL; 4309 ss.num_sge = 1; 4310 ss.total_len = req->total_len; 4311 rvt_skip_sge(&ss, len, false); 4312 rvt_copy_sge(qp, &ss, packet->payload, pmtu, false, 4313 false); 4314 /* Raise the sw sequence check flag for next packet */ 4315 priv->r_next_psn_kdeth = mask_psn(psn + 1); 4316 priv->s_flags |= HFI1_R_TID_SW_PSN; 4317 } 4318 goto exit; 4319 } 4320 flow->flow_state.r_next_psn = mask_psn(psn + 1); 4321 hfi1_kern_exp_rcv_clear(req); 4322 priv->alloc_w_segs--; 4323 rcd->flows[flow->idx].psn = psn & HFI1_KDETH_BTH_SEQ_MASK; 4324 req->comp_seg++; 4325 priv->s_nak_state = 0; 4326 4327 /* 4328 * Release the flow if one of the following conditions has been met: 4329 * - The request has reached a sync point AND all outstanding 4330 * segments have been completed, or 4331 * - The entire request is complete and there are no more requests 4332 * (of any kind) in the queue. 4333 */ 4334 trace_hfi1_rsp_rcv_tid_write_data(qp, psn); 4335 trace_hfi1_tid_req_rcv_write_data(qp, 0, e->opcode, e->psn, e->lpsn, 4336 req); 4337 trace_hfi1_tid_write_rsp_rcv_data(qp); 4338 if (priv->r_tid_ack == HFI1_QP_WQE_INVALID) 4339 priv->r_tid_ack = priv->r_tid_tail; 4340 4341 if (opcode == TID_OP(WRITE_DATA_LAST)) { 4342 release_rdma_sge_mr(e); 4343 for (next = priv->r_tid_tail + 1; ; next++) { 4344 if (next > rvt_size_atomic(&dev->rdi)) 4345 next = 0; 4346 if (next == priv->r_tid_head) 4347 break; 4348 e = &qp->s_ack_queue[next]; 4349 if (e->opcode == TID_OP(WRITE_REQ)) 4350 break; 4351 } 4352 priv->r_tid_tail = next; 4353 if (++qp->s_acked_ack_queue > rvt_size_atomic(&dev->rdi)) 4354 qp->s_acked_ack_queue = 0; 4355 } 4356 4357 hfi1_tid_write_alloc_resources(qp, true); 4358 4359 /* 4360 * If we need to generate more responses, schedule the 4361 * send engine. 4362 */ 4363 if (req->cur_seg < req->total_segs || 4364 qp->s_tail_ack_queue != qp->r_head_ack_queue) { 4365 qp->s_flags |= RVT_S_RESP_PENDING; 4366 hfi1_schedule_send(qp); 4367 } 4368 4369 priv->pending_tid_w_segs--; 4370 if (priv->s_flags & HFI1_R_TID_RSC_TIMER) { 4371 if (priv->pending_tid_w_segs) 4372 hfi1_mod_tid_reap_timer(req->qp); 4373 else 4374 hfi1_stop_tid_reap_timer(req->qp); 4375 } 4376 4377 done: 4378 priv->s_flags |= RVT_S_ACK_PENDING; 4379 hfi1_schedule_tid_send(qp); 4380 exit: 4381 priv->r_next_psn_kdeth = flow->flow_state.r_next_psn; 4382 if (fecn) 4383 qp->s_flags |= RVT_S_ECN; 4384 spin_unlock_irqrestore(&qp->s_lock, flags); 4385 return; 4386 4387 send_nak: 4388 if (!priv->s_nak_state) { 4389 priv->s_nak_state = IB_NAK_PSN_ERROR; 4390 priv->s_nak_psn = flow->flow_state.r_next_psn; 4391 priv->s_flags |= RVT_S_ACK_PENDING; 4392 if (priv->r_tid_ack == HFI1_QP_WQE_INVALID) 4393 priv->r_tid_ack = priv->r_tid_tail; 4394 hfi1_schedule_tid_send(qp); 4395 } 4396 goto done; 4397 } 4398 4399 static bool hfi1_tid_rdma_is_resync_psn(u32 psn) 4400 { 4401 return (bool)((psn & HFI1_KDETH_BTH_SEQ_MASK) == 4402 HFI1_KDETH_BTH_SEQ_MASK); 4403 } 4404 4405 u32 hfi1_build_tid_rdma_write_ack(struct rvt_qp *qp, struct rvt_ack_entry *e, 4406 struct ib_other_headers *ohdr, u16 iflow, 4407 u32 *bth1, u32 *bth2) 4408 { 4409 struct hfi1_qp_priv *qpriv = qp->priv; 4410 struct tid_flow_state *fs = &qpriv->flow_state; 4411 struct tid_rdma_request *req = ack_to_tid_req(e); 4412 struct tid_rdma_flow *flow = &req->flows[iflow]; 4413 struct tid_rdma_params *remote; 4414 4415 rcu_read_lock(); 4416 remote = rcu_dereference(qpriv->tid_rdma.remote); 4417 KDETH_RESET(ohdr->u.tid_rdma.ack.kdeth1, JKEY, remote->jkey); 4418 ohdr->u.tid_rdma.ack.verbs_qp = cpu_to_be32(qp->remote_qpn); 4419 *bth1 = remote->qp; 4420 rcu_read_unlock(); 4421 4422 if (qpriv->resync) { 4423 *bth2 = mask_psn((fs->generation << 4424 HFI1_KDETH_BTH_SEQ_SHIFT) - 1); 4425 ohdr->u.tid_rdma.ack.aeth = rvt_compute_aeth(qp); 4426 } else if (qpriv->s_nak_state) { 4427 *bth2 = mask_psn(qpriv->s_nak_psn); 4428 ohdr->u.tid_rdma.ack.aeth = 4429 cpu_to_be32((qp->r_msn & IB_MSN_MASK) | 4430 (qpriv->s_nak_state << 4431 IB_AETH_CREDIT_SHIFT)); 4432 } else { 4433 *bth2 = full_flow_psn(flow, flow->flow_state.lpsn); 4434 ohdr->u.tid_rdma.ack.aeth = rvt_compute_aeth(qp); 4435 } 4436 KDETH_RESET(ohdr->u.tid_rdma.ack.kdeth0, KVER, 0x1); 4437 ohdr->u.tid_rdma.ack.tid_flow_qp = 4438 cpu_to_be32(qpriv->tid_rdma.local.qp | 4439 ((flow->idx & TID_RDMA_DESTQP_FLOW_MASK) << 4440 TID_RDMA_DESTQP_FLOW_SHIFT) | 4441 qpriv->rcd->ctxt); 4442 4443 ohdr->u.tid_rdma.ack.tid_flow_psn = 0; 4444 ohdr->u.tid_rdma.ack.verbs_psn = 4445 cpu_to_be32(flow->flow_state.resp_ib_psn); 4446 4447 if (qpriv->resync) { 4448 /* 4449 * If the PSN before the current expect KDETH PSN is the 4450 * RESYNC PSN, then we never received a good TID RDMA WRITE 4451 * DATA packet after a previous RESYNC. 4452 * In this case, the next expected KDETH PSN stays the same. 4453 */ 4454 if (hfi1_tid_rdma_is_resync_psn(qpriv->r_next_psn_kdeth - 1)) { 4455 ohdr->u.tid_rdma.ack.tid_flow_psn = 4456 cpu_to_be32(qpriv->r_next_psn_kdeth_save); 4457 } else { 4458 /* 4459 * Because the KDETH PSNs jump during a RESYNC, it's 4460 * not possible to infer (or compute) the previous value 4461 * of r_next_psn_kdeth in the case of back-to-back 4462 * RESYNC packets. Therefore, we save it. 4463 */ 4464 qpriv->r_next_psn_kdeth_save = 4465 qpriv->r_next_psn_kdeth - 1; 4466 ohdr->u.tid_rdma.ack.tid_flow_psn = 4467 cpu_to_be32(qpriv->r_next_psn_kdeth_save); 4468 qpriv->r_next_psn_kdeth = mask_psn(*bth2 + 1); 4469 } 4470 qpriv->resync = false; 4471 } 4472 4473 return sizeof(ohdr->u.tid_rdma.ack) / sizeof(u32); 4474 } 4475 4476 void hfi1_rc_rcv_tid_rdma_ack(struct hfi1_packet *packet) 4477 { 4478 struct ib_other_headers *ohdr = packet->ohdr; 4479 struct rvt_qp *qp = packet->qp; 4480 struct hfi1_qp_priv *qpriv = qp->priv; 4481 struct rvt_swqe *wqe; 4482 struct tid_rdma_request *req; 4483 struct tid_rdma_flow *flow; 4484 u32 aeth, psn, req_psn, ack_psn, flpsn, resync_psn, ack_kpsn; 4485 unsigned long flags; 4486 u16 fidx; 4487 4488 trace_hfi1_tid_write_sender_rcv_tid_ack(qp, 0); 4489 process_ecn(qp, packet); 4490 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 4491 aeth = be32_to_cpu(ohdr->u.tid_rdma.ack.aeth); 4492 req_psn = mask_psn(be32_to_cpu(ohdr->u.tid_rdma.ack.verbs_psn)); 4493 resync_psn = mask_psn(be32_to_cpu(ohdr->u.tid_rdma.ack.tid_flow_psn)); 4494 4495 spin_lock_irqsave(&qp->s_lock, flags); 4496 trace_hfi1_rcv_tid_ack(qp, aeth, psn, req_psn, resync_psn); 4497 4498 /* If we are waiting for an ACK to RESYNC, drop any other packets */ 4499 if ((qp->s_flags & HFI1_S_WAIT_HALT) && 4500 cmp_psn(psn, qpriv->s_resync_psn)) 4501 goto ack_op_err; 4502 4503 ack_psn = req_psn; 4504 if (hfi1_tid_rdma_is_resync_psn(psn)) 4505 ack_kpsn = resync_psn; 4506 else 4507 ack_kpsn = psn; 4508 if (aeth >> 29) { 4509 ack_psn--; 4510 ack_kpsn--; 4511 } 4512 4513 if (unlikely(qp->s_acked == qp->s_tail)) 4514 goto ack_op_err; 4515 4516 wqe = rvt_get_swqe_ptr(qp, qp->s_acked); 4517 4518 if (wqe->wr.opcode != IB_WR_TID_RDMA_WRITE) 4519 goto ack_op_err; 4520 4521 req = wqe_to_tid_req(wqe); 4522 trace_hfi1_tid_req_rcv_tid_ack(qp, 0, wqe->wr.opcode, wqe->psn, 4523 wqe->lpsn, req); 4524 flow = &req->flows[req->acked_tail]; 4525 trace_hfi1_tid_flow_rcv_tid_ack(qp, req->acked_tail, flow); 4526 4527 /* Drop stale ACK/NAK */ 4528 if (cmp_psn(psn, full_flow_psn(flow, flow->flow_state.spsn)) < 0 || 4529 cmp_psn(req_psn, flow->flow_state.resp_ib_psn) < 0) 4530 goto ack_op_err; 4531 4532 while (cmp_psn(ack_kpsn, 4533 full_flow_psn(flow, flow->flow_state.lpsn)) >= 0 && 4534 req->ack_seg < req->cur_seg) { 4535 req->ack_seg++; 4536 /* advance acked segment pointer */ 4537 req->acked_tail = CIRC_NEXT(req->acked_tail, MAX_FLOWS); 4538 req->r_last_acked = flow->flow_state.resp_ib_psn; 4539 trace_hfi1_tid_req_rcv_tid_ack(qp, 0, wqe->wr.opcode, wqe->psn, 4540 wqe->lpsn, req); 4541 if (req->ack_seg == req->total_segs) { 4542 req->state = TID_REQUEST_COMPLETE; 4543 wqe = do_rc_completion(qp, wqe, 4544 to_iport(qp->ibqp.device, 4545 qp->port_num)); 4546 trace_hfi1_sender_rcv_tid_ack(qp); 4547 atomic_dec(&qpriv->n_tid_requests); 4548 if (qp->s_acked == qp->s_tail) 4549 break; 4550 if (wqe->wr.opcode != IB_WR_TID_RDMA_WRITE) 4551 break; 4552 req = wqe_to_tid_req(wqe); 4553 } 4554 flow = &req->flows[req->acked_tail]; 4555 trace_hfi1_tid_flow_rcv_tid_ack(qp, req->acked_tail, flow); 4556 } 4557 4558 trace_hfi1_tid_req_rcv_tid_ack(qp, 0, wqe->wr.opcode, wqe->psn, 4559 wqe->lpsn, req); 4560 switch (aeth >> 29) { 4561 case 0: /* ACK */ 4562 if (qpriv->s_flags & RVT_S_WAIT_ACK) 4563 qpriv->s_flags &= ~RVT_S_WAIT_ACK; 4564 if (!hfi1_tid_rdma_is_resync_psn(psn)) { 4565 /* Check if there is any pending TID ACK */ 4566 if (wqe->wr.opcode == IB_WR_TID_RDMA_WRITE && 4567 req->ack_seg < req->cur_seg) 4568 hfi1_mod_tid_retry_timer(qp); 4569 else 4570 hfi1_stop_tid_retry_timer(qp); 4571 hfi1_schedule_send(qp); 4572 } else { 4573 u32 spsn, fpsn, last_acked, generation; 4574 struct tid_rdma_request *rptr; 4575 4576 /* ACK(RESYNC) */ 4577 hfi1_stop_tid_retry_timer(qp); 4578 /* Allow new requests (see hfi1_make_tid_rdma_pkt) */ 4579 qp->s_flags &= ~HFI1_S_WAIT_HALT; 4580 /* 4581 * Clear RVT_S_SEND_ONE flag in case that the TID RDMA 4582 * ACK is received after the TID retry timer is fired 4583 * again. In this case, do not send any more TID 4584 * RESYNC request or wait for any more TID ACK packet. 4585 */ 4586 qpriv->s_flags &= ~RVT_S_SEND_ONE; 4587 hfi1_schedule_send(qp); 4588 4589 if ((qp->s_acked == qpriv->s_tid_tail && 4590 req->ack_seg == req->total_segs) || 4591 qp->s_acked == qp->s_tail) { 4592 qpriv->s_state = TID_OP(WRITE_DATA_LAST); 4593 goto done; 4594 } 4595 4596 if (req->ack_seg == req->comp_seg) { 4597 qpriv->s_state = TID_OP(WRITE_DATA); 4598 goto done; 4599 } 4600 4601 /* 4602 * The PSN to start with is the next PSN after the 4603 * RESYNC PSN. 4604 */ 4605 psn = mask_psn(psn + 1); 4606 generation = psn >> HFI1_KDETH_BTH_SEQ_SHIFT; 4607 spsn = 0; 4608 4609 /* 4610 * Update to the correct WQE when we get an ACK(RESYNC) 4611 * in the middle of a request. 4612 */ 4613 if (delta_psn(ack_psn, wqe->lpsn)) 4614 wqe = rvt_get_swqe_ptr(qp, qp->s_acked); 4615 req = wqe_to_tid_req(wqe); 4616 flow = &req->flows[req->acked_tail]; 4617 /* 4618 * RESYNC re-numbers the PSN ranges of all remaining 4619 * segments. Also, PSN's start from 0 in the middle of a 4620 * segment and the first segment size is less than the 4621 * default number of packets. flow->resync_npkts is used 4622 * to track the number of packets from the start of the 4623 * real segment to the point of 0 PSN after the RESYNC 4624 * in order to later correctly rewind the SGE. 4625 */ 4626 fpsn = full_flow_psn(flow, flow->flow_state.spsn); 4627 req->r_ack_psn = psn; 4628 flow->resync_npkts += 4629 delta_psn(mask_psn(resync_psn + 1), fpsn); 4630 /* 4631 * Renumber all packet sequence number ranges 4632 * based on the new generation. 4633 */ 4634 last_acked = qp->s_acked; 4635 rptr = req; 4636 while (1) { 4637 /* start from last acked segment */ 4638 for (fidx = rptr->acked_tail; 4639 CIRC_CNT(rptr->setup_head, fidx, 4640 MAX_FLOWS); 4641 fidx = CIRC_NEXT(fidx, MAX_FLOWS)) { 4642 u32 lpsn; 4643 u32 gen; 4644 4645 flow = &rptr->flows[fidx]; 4646 gen = flow->flow_state.generation; 4647 if (WARN_ON(gen == generation && 4648 flow->flow_state.spsn != 4649 spsn)) 4650 continue; 4651 lpsn = flow->flow_state.lpsn; 4652 lpsn = full_flow_psn(flow, lpsn); 4653 flow->npkts = 4654 delta_psn(lpsn, 4655 mask_psn(resync_psn) 4656 ); 4657 flow->flow_state.generation = 4658 generation; 4659 flow->flow_state.spsn = spsn; 4660 flow->flow_state.lpsn = 4661 flow->flow_state.spsn + 4662 flow->npkts - 1; 4663 flow->pkt = 0; 4664 spsn += flow->npkts; 4665 resync_psn += flow->npkts; 4666 trace_hfi1_tid_flow_rcv_tid_ack(qp, 4667 fidx, 4668 flow); 4669 } 4670 if (++last_acked == qpriv->s_tid_cur + 1) 4671 break; 4672 if (last_acked == qp->s_size) 4673 last_acked = 0; 4674 wqe = rvt_get_swqe_ptr(qp, last_acked); 4675 rptr = wqe_to_tid_req(wqe); 4676 } 4677 req->cur_seg = req->ack_seg; 4678 qpriv->s_tid_tail = qp->s_acked; 4679 qpriv->s_state = TID_OP(WRITE_REQ); 4680 hfi1_schedule_tid_send(qp); 4681 } 4682 done: 4683 qpriv->s_retry = qp->s_retry_cnt; 4684 break; 4685 4686 case 3: /* NAK */ 4687 hfi1_stop_tid_retry_timer(qp); 4688 switch ((aeth >> IB_AETH_CREDIT_SHIFT) & 4689 IB_AETH_CREDIT_MASK) { 4690 case 0: /* PSN sequence error */ 4691 if (!req->flows) 4692 break; 4693 flow = &req->flows[req->acked_tail]; 4694 flpsn = full_flow_psn(flow, flow->flow_state.lpsn); 4695 if (cmp_psn(psn, flpsn) > 0) 4696 break; 4697 trace_hfi1_tid_flow_rcv_tid_ack(qp, req->acked_tail, 4698 flow); 4699 req->r_ack_psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 4700 req->cur_seg = req->ack_seg; 4701 qpriv->s_tid_tail = qp->s_acked; 4702 qpriv->s_state = TID_OP(WRITE_REQ); 4703 qpriv->s_retry = qp->s_retry_cnt; 4704 hfi1_schedule_tid_send(qp); 4705 break; 4706 4707 default: 4708 break; 4709 } 4710 break; 4711 4712 default: 4713 break; 4714 } 4715 4716 ack_op_err: 4717 spin_unlock_irqrestore(&qp->s_lock, flags); 4718 } 4719 4720 void hfi1_add_tid_retry_timer(struct rvt_qp *qp) 4721 { 4722 struct hfi1_qp_priv *priv = qp->priv; 4723 struct ib_qp *ibqp = &qp->ibqp; 4724 struct rvt_dev_info *rdi = ib_to_rvt(ibqp->device); 4725 4726 lockdep_assert_held(&qp->s_lock); 4727 if (!(priv->s_flags & HFI1_S_TID_RETRY_TIMER)) { 4728 priv->s_flags |= HFI1_S_TID_RETRY_TIMER; 4729 priv->s_tid_retry_timer.expires = jiffies + 4730 priv->tid_retry_timeout_jiffies + rdi->busy_jiffies; 4731 add_timer(&priv->s_tid_retry_timer); 4732 } 4733 } 4734 4735 static void hfi1_mod_tid_retry_timer(struct rvt_qp *qp) 4736 { 4737 struct hfi1_qp_priv *priv = qp->priv; 4738 struct ib_qp *ibqp = &qp->ibqp; 4739 struct rvt_dev_info *rdi = ib_to_rvt(ibqp->device); 4740 4741 lockdep_assert_held(&qp->s_lock); 4742 priv->s_flags |= HFI1_S_TID_RETRY_TIMER; 4743 mod_timer(&priv->s_tid_retry_timer, jiffies + 4744 priv->tid_retry_timeout_jiffies + rdi->busy_jiffies); 4745 } 4746 4747 static int hfi1_stop_tid_retry_timer(struct rvt_qp *qp) 4748 { 4749 struct hfi1_qp_priv *priv = qp->priv; 4750 int rval = 0; 4751 4752 lockdep_assert_held(&qp->s_lock); 4753 if (priv->s_flags & HFI1_S_TID_RETRY_TIMER) { 4754 rval = del_timer(&priv->s_tid_retry_timer); 4755 priv->s_flags &= ~HFI1_S_TID_RETRY_TIMER; 4756 } 4757 return rval; 4758 } 4759 4760 void hfi1_del_tid_retry_timer(struct rvt_qp *qp) 4761 { 4762 struct hfi1_qp_priv *priv = qp->priv; 4763 4764 del_timer_sync(&priv->s_tid_retry_timer); 4765 priv->s_flags &= ~HFI1_S_TID_RETRY_TIMER; 4766 } 4767 4768 static void hfi1_tid_retry_timeout(struct timer_list *t) 4769 { 4770 struct hfi1_qp_priv *priv = from_timer(priv, t, s_tid_retry_timer); 4771 struct rvt_qp *qp = priv->owner; 4772 struct rvt_swqe *wqe; 4773 unsigned long flags; 4774 struct tid_rdma_request *req; 4775 4776 spin_lock_irqsave(&qp->r_lock, flags); 4777 spin_lock(&qp->s_lock); 4778 trace_hfi1_tid_write_sender_retry_timeout(qp, 0); 4779 if (priv->s_flags & HFI1_S_TID_RETRY_TIMER) { 4780 hfi1_stop_tid_retry_timer(qp); 4781 if (!priv->s_retry) { 4782 trace_hfi1_msg_tid_retry_timeout(/* msg */ 4783 qp, 4784 "Exhausted retries. Tid retry timeout = ", 4785 (u64)priv->tid_retry_timeout_jiffies); 4786 4787 wqe = rvt_get_swqe_ptr(qp, qp->s_acked); 4788 hfi1_trdma_send_complete(qp, wqe, IB_WC_RETRY_EXC_ERR); 4789 rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR); 4790 } else { 4791 wqe = rvt_get_swqe_ptr(qp, qp->s_acked); 4792 req = wqe_to_tid_req(wqe); 4793 trace_hfi1_tid_req_tid_retry_timeout(/* req */ 4794 qp, 0, wqe->wr.opcode, wqe->psn, wqe->lpsn, req); 4795 4796 priv->s_flags &= ~RVT_S_WAIT_ACK; 4797 /* Only send one packet (the RESYNC) */ 4798 priv->s_flags |= RVT_S_SEND_ONE; 4799 /* 4800 * No additional request shall be made by this QP until 4801 * the RESYNC has been complete. 4802 */ 4803 qp->s_flags |= HFI1_S_WAIT_HALT; 4804 priv->s_state = TID_OP(RESYNC); 4805 priv->s_retry--; 4806 hfi1_schedule_tid_send(qp); 4807 } 4808 } 4809 spin_unlock(&qp->s_lock); 4810 spin_unlock_irqrestore(&qp->r_lock, flags); 4811 } 4812 4813 u32 hfi1_build_tid_rdma_resync(struct rvt_qp *qp, struct rvt_swqe *wqe, 4814 struct ib_other_headers *ohdr, u32 *bth1, 4815 u32 *bth2, u16 fidx) 4816 { 4817 struct hfi1_qp_priv *qpriv = qp->priv; 4818 struct tid_rdma_params *remote; 4819 struct tid_rdma_request *req = wqe_to_tid_req(wqe); 4820 struct tid_rdma_flow *flow = &req->flows[fidx]; 4821 u32 generation; 4822 4823 rcu_read_lock(); 4824 remote = rcu_dereference(qpriv->tid_rdma.remote); 4825 KDETH_RESET(ohdr->u.tid_rdma.ack.kdeth1, JKEY, remote->jkey); 4826 ohdr->u.tid_rdma.ack.verbs_qp = cpu_to_be32(qp->remote_qpn); 4827 *bth1 = remote->qp; 4828 rcu_read_unlock(); 4829 4830 generation = kern_flow_generation_next(flow->flow_state.generation); 4831 *bth2 = mask_psn((generation << HFI1_KDETH_BTH_SEQ_SHIFT) - 1); 4832 qpriv->s_resync_psn = *bth2; 4833 *bth2 |= IB_BTH_REQ_ACK; 4834 KDETH_RESET(ohdr->u.tid_rdma.ack.kdeth0, KVER, 0x1); 4835 4836 return sizeof(ohdr->u.tid_rdma.resync) / sizeof(u32); 4837 } 4838 4839 void hfi1_rc_rcv_tid_rdma_resync(struct hfi1_packet *packet) 4840 { 4841 struct ib_other_headers *ohdr = packet->ohdr; 4842 struct rvt_qp *qp = packet->qp; 4843 struct hfi1_qp_priv *qpriv = qp->priv; 4844 struct hfi1_ctxtdata *rcd = qpriv->rcd; 4845 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device); 4846 struct rvt_ack_entry *e; 4847 struct tid_rdma_request *req; 4848 struct tid_rdma_flow *flow; 4849 struct tid_flow_state *fs = &qpriv->flow_state; 4850 u32 psn, generation, idx, gen_next; 4851 bool fecn; 4852 unsigned long flags; 4853 4854 fecn = process_ecn(qp, packet); 4855 psn = mask_psn(be32_to_cpu(ohdr->bth[2])); 4856 4857 generation = mask_psn(psn + 1) >> HFI1_KDETH_BTH_SEQ_SHIFT; 4858 spin_lock_irqsave(&qp->s_lock, flags); 4859 4860 gen_next = (fs->generation == KERN_GENERATION_RESERVED) ? 4861 generation : kern_flow_generation_next(fs->generation); 4862 /* 4863 * RESYNC packet contains the "next" generation and can only be 4864 * from the current or previous generations 4865 */ 4866 if (generation != mask_generation(gen_next - 1) && 4867 generation != gen_next) 4868 goto bail; 4869 /* Already processing a resync */ 4870 if (qpriv->resync) 4871 goto bail; 4872 4873 spin_lock(&rcd->exp_lock); 4874 if (fs->index >= RXE_NUM_TID_FLOWS) { 4875 /* 4876 * If we don't have a flow, save the generation so it can be 4877 * applied when a new flow is allocated 4878 */ 4879 fs->generation = generation; 4880 } else { 4881 /* Reprogram the QP flow with new generation */ 4882 rcd->flows[fs->index].generation = generation; 4883 fs->generation = kern_setup_hw_flow(rcd, fs->index); 4884 } 4885 fs->psn = 0; 4886 /* 4887 * Disable SW PSN checking since a RESYNC is equivalent to a 4888 * sync point and the flow has/will be reprogrammed 4889 */ 4890 qpriv->s_flags &= ~HFI1_R_TID_SW_PSN; 4891 trace_hfi1_tid_write_rsp_rcv_resync(qp); 4892 4893 /* 4894 * Reset all TID flow information with the new generation. 4895 * This is done for all requests and segments after the 4896 * last received segment 4897 */ 4898 for (idx = qpriv->r_tid_tail; ; idx++) { 4899 u16 flow_idx; 4900 4901 if (idx > rvt_size_atomic(&dev->rdi)) 4902 idx = 0; 4903 e = &qp->s_ack_queue[idx]; 4904 if (e->opcode == TID_OP(WRITE_REQ)) { 4905 req = ack_to_tid_req(e); 4906 trace_hfi1_tid_req_rcv_resync(qp, 0, e->opcode, e->psn, 4907 e->lpsn, req); 4908 4909 /* start from last unacked segment */ 4910 for (flow_idx = req->clear_tail; 4911 CIRC_CNT(req->setup_head, flow_idx, 4912 MAX_FLOWS); 4913 flow_idx = CIRC_NEXT(flow_idx, MAX_FLOWS)) { 4914 u32 lpsn; 4915 u32 next; 4916 4917 flow = &req->flows[flow_idx]; 4918 lpsn = full_flow_psn(flow, 4919 flow->flow_state.lpsn); 4920 next = flow->flow_state.r_next_psn; 4921 flow->npkts = delta_psn(lpsn, next - 1); 4922 flow->flow_state.generation = fs->generation; 4923 flow->flow_state.spsn = fs->psn; 4924 flow->flow_state.lpsn = 4925 flow->flow_state.spsn + flow->npkts - 1; 4926 flow->flow_state.r_next_psn = 4927 full_flow_psn(flow, 4928 flow->flow_state.spsn); 4929 fs->psn += flow->npkts; 4930 trace_hfi1_tid_flow_rcv_resync(qp, flow_idx, 4931 flow); 4932 } 4933 } 4934 if (idx == qp->s_tail_ack_queue) 4935 break; 4936 } 4937 4938 spin_unlock(&rcd->exp_lock); 4939 qpriv->resync = true; 4940 /* RESYNC request always gets a TID RDMA ACK. */ 4941 qpriv->s_nak_state = 0; 4942 qpriv->s_flags |= RVT_S_ACK_PENDING; 4943 hfi1_schedule_tid_send(qp); 4944 bail: 4945 if (fecn) 4946 qp->s_flags |= RVT_S_ECN; 4947 spin_unlock_irqrestore(&qp->s_lock, flags); 4948 } 4949 4950 /* 4951 * Call this function when the last TID RDMA WRITE DATA packet for a request 4952 * is built. 4953 */ 4954 static void update_tid_tail(struct rvt_qp *qp) 4955 __must_hold(&qp->s_lock) 4956 { 4957 struct hfi1_qp_priv *priv = qp->priv; 4958 u32 i; 4959 struct rvt_swqe *wqe; 4960 4961 lockdep_assert_held(&qp->s_lock); 4962 /* Can't move beyond s_tid_cur */ 4963 if (priv->s_tid_tail == priv->s_tid_cur) 4964 return; 4965 for (i = priv->s_tid_tail + 1; ; i++) { 4966 if (i == qp->s_size) 4967 i = 0; 4968 4969 if (i == priv->s_tid_cur) 4970 break; 4971 wqe = rvt_get_swqe_ptr(qp, i); 4972 if (wqe->wr.opcode == IB_WR_TID_RDMA_WRITE) 4973 break; 4974 } 4975 priv->s_tid_tail = i; 4976 priv->s_state = TID_OP(WRITE_RESP); 4977 } 4978 4979 int hfi1_make_tid_rdma_pkt(struct rvt_qp *qp, struct hfi1_pkt_state *ps) 4980 __must_hold(&qp->s_lock) 4981 { 4982 struct hfi1_qp_priv *priv = qp->priv; 4983 struct rvt_swqe *wqe; 4984 u32 bth1 = 0, bth2 = 0, hwords = 5, len, middle = 0; 4985 struct ib_other_headers *ohdr; 4986 struct rvt_sge_state *ss = &qp->s_sge; 4987 struct rvt_ack_entry *e = &qp->s_ack_queue[qp->s_tail_ack_queue]; 4988 struct tid_rdma_request *req = ack_to_tid_req(e); 4989 bool last = false; 4990 u8 opcode = TID_OP(WRITE_DATA); 4991 4992 lockdep_assert_held(&qp->s_lock); 4993 trace_hfi1_tid_write_sender_make_tid_pkt(qp, 0); 4994 /* 4995 * Prioritize the sending of the requests and responses over the 4996 * sending of the TID RDMA data packets. 4997 */ 4998 if (((atomic_read(&priv->n_tid_requests) < HFI1_TID_RDMA_WRITE_CNT) && 4999 atomic_read(&priv->n_requests) && 5000 !(qp->s_flags & (RVT_S_BUSY | RVT_S_WAIT_ACK | 5001 HFI1_S_ANY_WAIT_IO))) || 5002 (e->opcode == TID_OP(WRITE_REQ) && req->cur_seg < req->alloc_seg && 5003 !(qp->s_flags & (RVT_S_BUSY | HFI1_S_ANY_WAIT_IO)))) { 5004 struct iowait_work *iowork; 5005 5006 iowork = iowait_get_ib_work(&priv->s_iowait); 5007 ps->s_txreq = get_waiting_verbs_txreq(iowork); 5008 if (ps->s_txreq || hfi1_make_rc_req(qp, ps)) { 5009 priv->s_flags |= HFI1_S_TID_BUSY_SET; 5010 return 1; 5011 } 5012 } 5013 5014 ps->s_txreq = get_txreq(ps->dev, qp); 5015 if (!ps->s_txreq) 5016 goto bail_no_tx; 5017 5018 ohdr = &ps->s_txreq->phdr.hdr.ibh.u.oth; 5019 5020 if ((priv->s_flags & RVT_S_ACK_PENDING) && 5021 make_tid_rdma_ack(qp, ohdr, ps)) 5022 return 1; 5023 5024 /* 5025 * Bail out if we can't send data. 5026 * Be reminded that this check must been done after the call to 5027 * make_tid_rdma_ack() because the responding QP could be in 5028 * RTR state where it can send TID RDMA ACK, not TID RDMA WRITE DATA. 5029 */ 5030 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_SEND_OK)) 5031 goto bail; 5032 5033 if (priv->s_flags & RVT_S_WAIT_ACK) 5034 goto bail; 5035 5036 /* Check whether there is anything to do. */ 5037 if (priv->s_tid_tail == HFI1_QP_WQE_INVALID) 5038 goto bail; 5039 wqe = rvt_get_swqe_ptr(qp, priv->s_tid_tail); 5040 req = wqe_to_tid_req(wqe); 5041 trace_hfi1_tid_req_make_tid_pkt(qp, 0, wqe->wr.opcode, wqe->psn, 5042 wqe->lpsn, req); 5043 switch (priv->s_state) { 5044 case TID_OP(WRITE_REQ): 5045 case TID_OP(WRITE_RESP): 5046 priv->tid_ss.sge = wqe->sg_list[0]; 5047 priv->tid_ss.sg_list = wqe->sg_list + 1; 5048 priv->tid_ss.num_sge = wqe->wr.num_sge; 5049 priv->tid_ss.total_len = wqe->length; 5050 5051 if (priv->s_state == TID_OP(WRITE_REQ)) 5052 hfi1_tid_rdma_restart_req(qp, wqe, &bth2); 5053 priv->s_state = TID_OP(WRITE_DATA); 5054 /* fall through */ 5055 5056 case TID_OP(WRITE_DATA): 5057 /* 5058 * 1. Check whether TID RDMA WRITE RESP available. 5059 * 2. If no: 5060 * 2.1 If have more segments and no TID RDMA WRITE RESP, 5061 * set HFI1_S_WAIT_TID_RESP 5062 * 2.2 Return indicating no progress made. 5063 * 3. If yes: 5064 * 3.1 Build TID RDMA WRITE DATA packet. 5065 * 3.2 If last packet in segment: 5066 * 3.2.1 Change KDETH header bits 5067 * 3.2.2 Advance RESP pointers. 5068 * 3.3 Return indicating progress made. 5069 */ 5070 trace_hfi1_sender_make_tid_pkt(qp); 5071 trace_hfi1_tid_write_sender_make_tid_pkt(qp, 0); 5072 wqe = rvt_get_swqe_ptr(qp, priv->s_tid_tail); 5073 req = wqe_to_tid_req(wqe); 5074 len = wqe->length; 5075 5076 if (!req->comp_seg || req->cur_seg == req->comp_seg) 5077 goto bail; 5078 5079 trace_hfi1_tid_req_make_tid_pkt(qp, 0, wqe->wr.opcode, 5080 wqe->psn, wqe->lpsn, req); 5081 last = hfi1_build_tid_rdma_packet(wqe, ohdr, &bth1, &bth2, 5082 &len); 5083 5084 if (last) { 5085 /* move pointer to next flow */ 5086 req->clear_tail = CIRC_NEXT(req->clear_tail, 5087 MAX_FLOWS); 5088 if (++req->cur_seg < req->total_segs) { 5089 if (!CIRC_CNT(req->setup_head, req->clear_tail, 5090 MAX_FLOWS)) 5091 qp->s_flags |= HFI1_S_WAIT_TID_RESP; 5092 } else { 5093 priv->s_state = TID_OP(WRITE_DATA_LAST); 5094 opcode = TID_OP(WRITE_DATA_LAST); 5095 5096 /* Advance the s_tid_tail now */ 5097 update_tid_tail(qp); 5098 } 5099 } 5100 hwords += sizeof(ohdr->u.tid_rdma.w_data) / sizeof(u32); 5101 ss = &priv->tid_ss; 5102 break; 5103 5104 case TID_OP(RESYNC): 5105 trace_hfi1_sender_make_tid_pkt(qp); 5106 /* Use generation from the most recently received response */ 5107 wqe = rvt_get_swqe_ptr(qp, priv->s_tid_cur); 5108 req = wqe_to_tid_req(wqe); 5109 /* If no responses for this WQE look at the previous one */ 5110 if (!req->comp_seg) { 5111 wqe = rvt_get_swqe_ptr(qp, 5112 (!priv->s_tid_cur ? qp->s_size : 5113 priv->s_tid_cur) - 1); 5114 req = wqe_to_tid_req(wqe); 5115 } 5116 hwords += hfi1_build_tid_rdma_resync(qp, wqe, ohdr, &bth1, 5117 &bth2, 5118 CIRC_PREV(req->setup_head, 5119 MAX_FLOWS)); 5120 ss = NULL; 5121 len = 0; 5122 opcode = TID_OP(RESYNC); 5123 break; 5124 5125 default: 5126 goto bail; 5127 } 5128 if (priv->s_flags & RVT_S_SEND_ONE) { 5129 priv->s_flags &= ~RVT_S_SEND_ONE; 5130 priv->s_flags |= RVT_S_WAIT_ACK; 5131 bth2 |= IB_BTH_REQ_ACK; 5132 } 5133 qp->s_len -= len; 5134 ps->s_txreq->hdr_dwords = hwords; 5135 ps->s_txreq->sde = priv->s_sde; 5136 ps->s_txreq->ss = ss; 5137 ps->s_txreq->s_cur_size = len; 5138 hfi1_make_ruc_header(qp, ohdr, (opcode << 24), bth1, bth2, 5139 middle, ps); 5140 return 1; 5141 bail: 5142 hfi1_put_txreq(ps->s_txreq); 5143 bail_no_tx: 5144 ps->s_txreq = NULL; 5145 priv->s_flags &= ~RVT_S_BUSY; 5146 /* 5147 * If we didn't get a txreq, the QP will be woken up later to try 5148 * again, set the flags to the the wake up which work item to wake 5149 * up. 5150 * (A better algorithm should be found to do this and generalize the 5151 * sleep/wakeup flags.) 5152 */ 5153 iowait_set_flag(&priv->s_iowait, IOWAIT_PENDING_TID); 5154 return 0; 5155 } 5156 5157 static int make_tid_rdma_ack(struct rvt_qp *qp, 5158 struct ib_other_headers *ohdr, 5159 struct hfi1_pkt_state *ps) 5160 { 5161 struct rvt_ack_entry *e; 5162 struct hfi1_qp_priv *qpriv = qp->priv; 5163 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device); 5164 u32 hwords, next; 5165 u32 len = 0; 5166 u32 bth1 = 0, bth2 = 0; 5167 int middle = 0; 5168 u16 flow; 5169 struct tid_rdma_request *req, *nreq; 5170 5171 trace_hfi1_tid_write_rsp_make_tid_ack(qp); 5172 /* Don't send an ACK if we aren't supposed to. */ 5173 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK)) 5174 goto bail; 5175 5176 /* header size in 32-bit words LRH+BTH = (8+12)/4. */ 5177 hwords = 5; 5178 5179 e = &qp->s_ack_queue[qpriv->r_tid_ack]; 5180 req = ack_to_tid_req(e); 5181 /* 5182 * In the RESYNC case, we are exactly one segment past the 5183 * previously sent ack or at the previously sent NAK. So to send 5184 * the resync ack, we go back one segment (which might be part of 5185 * the previous request) and let the do-while loop execute again. 5186 * The advantage of executing the do-while loop is that any data 5187 * received after the previous ack is automatically acked in the 5188 * RESYNC ack. It turns out that for the do-while loop we only need 5189 * to pull back qpriv->r_tid_ack, not the segment 5190 * indices/counters. The scheme works even if the previous request 5191 * was not a TID WRITE request. 5192 */ 5193 if (qpriv->resync) { 5194 if (!req->ack_seg || req->ack_seg == req->total_segs) 5195 qpriv->r_tid_ack = !qpriv->r_tid_ack ? 5196 rvt_size_atomic(&dev->rdi) : 5197 qpriv->r_tid_ack - 1; 5198 e = &qp->s_ack_queue[qpriv->r_tid_ack]; 5199 req = ack_to_tid_req(e); 5200 } 5201 5202 trace_hfi1_rsp_make_tid_ack(qp, e->psn); 5203 trace_hfi1_tid_req_make_tid_ack(qp, 0, e->opcode, e->psn, e->lpsn, 5204 req); 5205 /* 5206 * If we've sent all the ACKs that we can, we are done 5207 * until we get more segments... 5208 */ 5209 if (!qpriv->s_nak_state && !qpriv->resync && 5210 req->ack_seg == req->comp_seg) 5211 goto bail; 5212 5213 do { 5214 /* 5215 * To deal with coalesced ACKs, the acked_tail pointer 5216 * into the flow array is used. The distance between it 5217 * and the clear_tail is the number of flows that are 5218 * being ACK'ed. 5219 */ 5220 req->ack_seg += 5221 /* Get up-to-date value */ 5222 CIRC_CNT(req->clear_tail, req->acked_tail, 5223 MAX_FLOWS); 5224 /* Advance acked index */ 5225 req->acked_tail = req->clear_tail; 5226 5227 /* 5228 * req->clear_tail points to the segment currently being 5229 * received. So, when sending an ACK, the previous 5230 * segment is being ACK'ed. 5231 */ 5232 flow = CIRC_PREV(req->acked_tail, MAX_FLOWS); 5233 if (req->ack_seg != req->total_segs) 5234 break; 5235 req->state = TID_REQUEST_COMPLETE; 5236 5237 next = qpriv->r_tid_ack + 1; 5238 if (next > rvt_size_atomic(&dev->rdi)) 5239 next = 0; 5240 qpriv->r_tid_ack = next; 5241 if (qp->s_ack_queue[next].opcode != TID_OP(WRITE_REQ)) 5242 break; 5243 nreq = ack_to_tid_req(&qp->s_ack_queue[next]); 5244 if (!nreq->comp_seg || nreq->ack_seg == nreq->comp_seg) 5245 break; 5246 5247 /* Move to the next ack entry now */ 5248 e = &qp->s_ack_queue[qpriv->r_tid_ack]; 5249 req = ack_to_tid_req(e); 5250 } while (1); 5251 5252 /* 5253 * At this point qpriv->r_tid_ack == qpriv->r_tid_tail but e and 5254 * req could be pointing at the previous ack queue entry 5255 */ 5256 if (qpriv->s_nak_state || 5257 (qpriv->resync && 5258 !hfi1_tid_rdma_is_resync_psn(qpriv->r_next_psn_kdeth - 1) && 5259 (cmp_psn(qpriv->r_next_psn_kdeth - 1, 5260 full_flow_psn(&req->flows[flow], 5261 req->flows[flow].flow_state.lpsn)) > 0))) { 5262 /* 5263 * A NAK will implicitly acknowledge all previous TID RDMA 5264 * requests. Therefore, we NAK with the req->acked_tail 5265 * segment for the request at qpriv->r_tid_ack (same at 5266 * this point as the req->clear_tail segment for the 5267 * qpriv->r_tid_tail request) 5268 */ 5269 e = &qp->s_ack_queue[qpriv->r_tid_ack]; 5270 req = ack_to_tid_req(e); 5271 flow = req->acked_tail; 5272 } else if (req->ack_seg == req->total_segs && 5273 qpriv->s_flags & HFI1_R_TID_WAIT_INTERLCK) 5274 qpriv->s_flags &= ~HFI1_R_TID_WAIT_INTERLCK; 5275 5276 trace_hfi1_tid_write_rsp_make_tid_ack(qp); 5277 trace_hfi1_tid_req_make_tid_ack(qp, 0, e->opcode, e->psn, e->lpsn, 5278 req); 5279 hwords += hfi1_build_tid_rdma_write_ack(qp, e, ohdr, flow, &bth1, 5280 &bth2); 5281 len = 0; 5282 qpriv->s_flags &= ~RVT_S_ACK_PENDING; 5283 ps->s_txreq->hdr_dwords = hwords; 5284 ps->s_txreq->sde = qpriv->s_sde; 5285 ps->s_txreq->s_cur_size = len; 5286 ps->s_txreq->ss = NULL; 5287 hfi1_make_ruc_header(qp, ohdr, (TID_OP(ACK) << 24), bth1, bth2, middle, 5288 ps); 5289 ps->s_txreq->txreq.flags |= SDMA_TXREQ_F_VIP; 5290 return 1; 5291 bail: 5292 /* 5293 * Ensure s_rdma_ack_cnt changes are committed prior to resetting 5294 * RVT_S_RESP_PENDING 5295 */ 5296 smp_wmb(); 5297 qpriv->s_flags &= ~RVT_S_ACK_PENDING; 5298 return 0; 5299 } 5300 5301 static int hfi1_send_tid_ok(struct rvt_qp *qp) 5302 { 5303 struct hfi1_qp_priv *priv = qp->priv; 5304 5305 return !(priv->s_flags & RVT_S_BUSY || 5306 qp->s_flags & HFI1_S_ANY_WAIT_IO) && 5307 (verbs_txreq_queued(iowait_get_tid_work(&priv->s_iowait)) || 5308 (priv->s_flags & RVT_S_RESP_PENDING) || 5309 !(qp->s_flags & HFI1_S_ANY_TID_WAIT_SEND)); 5310 } 5311 5312 void _hfi1_do_tid_send(struct work_struct *work) 5313 { 5314 struct iowait_work *w = container_of(work, struct iowait_work, iowork); 5315 struct rvt_qp *qp = iowait_to_qp(w->iow); 5316 5317 hfi1_do_tid_send(qp); 5318 } 5319 5320 static void hfi1_do_tid_send(struct rvt_qp *qp) 5321 { 5322 struct hfi1_pkt_state ps; 5323 struct hfi1_qp_priv *priv = qp->priv; 5324 5325 ps.dev = to_idev(qp->ibqp.device); 5326 ps.ibp = to_iport(qp->ibqp.device, qp->port_num); 5327 ps.ppd = ppd_from_ibp(ps.ibp); 5328 ps.wait = iowait_get_tid_work(&priv->s_iowait); 5329 ps.in_thread = false; 5330 ps.timeout_int = qp->timeout_jiffies / 8; 5331 5332 trace_hfi1_rc_do_tid_send(qp, false); 5333 spin_lock_irqsave(&qp->s_lock, ps.flags); 5334 5335 /* Return if we are already busy processing a work request. */ 5336 if (!hfi1_send_tid_ok(qp)) { 5337 if (qp->s_flags & HFI1_S_ANY_WAIT_IO) 5338 iowait_set_flag(&priv->s_iowait, IOWAIT_PENDING_TID); 5339 spin_unlock_irqrestore(&qp->s_lock, ps.flags); 5340 return; 5341 } 5342 5343 priv->s_flags |= RVT_S_BUSY; 5344 5345 ps.timeout = jiffies + ps.timeout_int; 5346 ps.cpu = priv->s_sde ? priv->s_sde->cpu : 5347 cpumask_first(cpumask_of_node(ps.ppd->dd->node)); 5348 ps.pkts_sent = false; 5349 5350 /* insure a pre-built packet is handled */ 5351 ps.s_txreq = get_waiting_verbs_txreq(ps.wait); 5352 do { 5353 /* Check for a constructed packet to be sent. */ 5354 if (ps.s_txreq) { 5355 if (priv->s_flags & HFI1_S_TID_BUSY_SET) { 5356 qp->s_flags |= RVT_S_BUSY; 5357 ps.wait = iowait_get_ib_work(&priv->s_iowait); 5358 } 5359 spin_unlock_irqrestore(&qp->s_lock, ps.flags); 5360 5361 /* 5362 * If the packet cannot be sent now, return and 5363 * the send tasklet will be woken up later. 5364 */ 5365 if (hfi1_verbs_send(qp, &ps)) 5366 return; 5367 5368 /* allow other tasks to run */ 5369 if (hfi1_schedule_send_yield(qp, &ps, true)) 5370 return; 5371 5372 spin_lock_irqsave(&qp->s_lock, ps.flags); 5373 if (priv->s_flags & HFI1_S_TID_BUSY_SET) { 5374 qp->s_flags &= ~RVT_S_BUSY; 5375 priv->s_flags &= ~HFI1_S_TID_BUSY_SET; 5376 ps.wait = iowait_get_tid_work(&priv->s_iowait); 5377 if (iowait_flag_set(&priv->s_iowait, 5378 IOWAIT_PENDING_IB)) 5379 hfi1_schedule_send(qp); 5380 } 5381 } 5382 } while (hfi1_make_tid_rdma_pkt(qp, &ps)); 5383 iowait_starve_clear(ps.pkts_sent, &priv->s_iowait); 5384 spin_unlock_irqrestore(&qp->s_lock, ps.flags); 5385 } 5386 5387 static bool _hfi1_schedule_tid_send(struct rvt_qp *qp) 5388 { 5389 struct hfi1_qp_priv *priv = qp->priv; 5390 struct hfi1_ibport *ibp = 5391 to_iport(qp->ibqp.device, qp->port_num); 5392 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp); 5393 struct hfi1_devdata *dd = dd_from_ibdev(qp->ibqp.device); 5394 5395 return iowait_tid_schedule(&priv->s_iowait, ppd->hfi1_wq, 5396 priv->s_sde ? 5397 priv->s_sde->cpu : 5398 cpumask_first(cpumask_of_node(dd->node))); 5399 } 5400 5401 /** 5402 * hfi1_schedule_tid_send - schedule progress on TID RDMA state machine 5403 * @qp: the QP 5404 * 5405 * This schedules qp progress on the TID RDMA state machine. Caller 5406 * should hold the s_lock. 5407 * Unlike hfi1_schedule_send(), this cannot use hfi1_send_ok() because 5408 * the two state machines can step on each other with respect to the 5409 * RVT_S_BUSY flag. 5410 * Therefore, a modified test is used. 5411 * @return true if the second leg is scheduled; 5412 * false if the second leg is not scheduled. 5413 */ 5414 bool hfi1_schedule_tid_send(struct rvt_qp *qp) 5415 { 5416 lockdep_assert_held(&qp->s_lock); 5417 if (hfi1_send_tid_ok(qp)) { 5418 /* 5419 * The following call returns true if the qp is not on the 5420 * queue and false if the qp is already on the queue before 5421 * this call. Either way, the qp will be on the queue when the 5422 * call returns. 5423 */ 5424 _hfi1_schedule_tid_send(qp); 5425 return true; 5426 } 5427 if (qp->s_flags & HFI1_S_ANY_WAIT_IO) 5428 iowait_set_flag(&((struct hfi1_qp_priv *)qp->priv)->s_iowait, 5429 IOWAIT_PENDING_TID); 5430 return false; 5431 } 5432 5433 bool hfi1_tid_rdma_ack_interlock(struct rvt_qp *qp, struct rvt_ack_entry *e) 5434 { 5435 struct rvt_ack_entry *prev; 5436 struct tid_rdma_request *req; 5437 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device); 5438 struct hfi1_qp_priv *priv = qp->priv; 5439 u32 s_prev; 5440 5441 s_prev = qp->s_tail_ack_queue == 0 ? rvt_size_atomic(&dev->rdi) : 5442 (qp->s_tail_ack_queue - 1); 5443 prev = &qp->s_ack_queue[s_prev]; 5444 5445 if ((e->opcode == TID_OP(READ_REQ) || 5446 e->opcode == OP(RDMA_READ_REQUEST)) && 5447 prev->opcode == TID_OP(WRITE_REQ)) { 5448 req = ack_to_tid_req(prev); 5449 if (req->ack_seg != req->total_segs) { 5450 priv->s_flags |= HFI1_R_TID_WAIT_INTERLCK; 5451 return true; 5452 } 5453 } 5454 return false; 5455 } 5456 5457 static u32 read_r_next_psn(struct hfi1_devdata *dd, u8 ctxt, u8 fidx) 5458 { 5459 u64 reg; 5460 5461 /* 5462 * The only sane way to get the amount of 5463 * progress is to read the HW flow state. 5464 */ 5465 reg = read_uctxt_csr(dd, ctxt, RCV_TID_FLOW_TABLE + (8 * fidx)); 5466 return mask_psn(reg); 5467 } 5468 5469 static void tid_rdma_rcv_err(struct hfi1_packet *packet, 5470 struct ib_other_headers *ohdr, 5471 struct rvt_qp *qp, u32 psn, int diff, bool fecn) 5472 { 5473 unsigned long flags; 5474 5475 tid_rdma_rcv_error(packet, ohdr, qp, psn, diff); 5476 if (fecn) { 5477 spin_lock_irqsave(&qp->s_lock, flags); 5478 qp->s_flags |= RVT_S_ECN; 5479 spin_unlock_irqrestore(&qp->s_lock, flags); 5480 } 5481 } 5482 5483 static void update_r_next_psn_fecn(struct hfi1_packet *packet, 5484 struct hfi1_qp_priv *priv, 5485 struct hfi1_ctxtdata *rcd, 5486 struct tid_rdma_flow *flow, 5487 bool fecn) 5488 { 5489 /* 5490 * If a start/middle packet is delivered here due to 5491 * RSM rule and FECN, we need to update the r_next_psn. 5492 */ 5493 if (fecn && packet->etype == RHF_RCV_TYPE_EAGER && 5494 !(priv->s_flags & HFI1_R_TID_SW_PSN)) { 5495 struct hfi1_devdata *dd = rcd->dd; 5496 5497 flow->flow_state.r_next_psn = 5498 read_r_next_psn(dd, rcd->ctxt, flow->idx); 5499 } 5500 } 5501