Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 1 | /* |
Mitko Haralanov | a74d530 | 2018-05-02 06:43:24 -0700 | [diff] [blame] | 2 | * Copyright(c) 2015 - 2018 Intel Corporation. |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 3 | * |
| 4 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 5 | * redistributing this file, you may do so under either license. |
| 6 | * |
| 7 | * GPL LICENSE SUMMARY |
| 8 | * |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of version 2 of the GNU General Public License as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * BSD LICENSE |
| 19 | * |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 20 | * Redistribution and use in source and binary forms, with or without |
| 21 | * modification, are permitted provided that the following conditions |
| 22 | * are met: |
| 23 | * |
| 24 | * - Redistributions of source code must retain the above copyright |
| 25 | * notice, this list of conditions and the following disclaimer. |
| 26 | * - Redistributions in binary form must reproduce the above copyright |
| 27 | * notice, this list of conditions and the following disclaimer in |
| 28 | * the documentation and/or other materials provided with the |
| 29 | * distribution. |
| 30 | * - Neither the name of Intel Corporation nor the names of its |
| 31 | * contributors may be used to endorse or promote products derived |
| 32 | * from this software without specific prior written permission. |
| 33 | * |
| 34 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 35 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 36 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 37 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 38 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 39 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 40 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 41 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 42 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 43 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 44 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 45 | * |
| 46 | */ |
| 47 | |
| 48 | #ifndef HFI1_VERBS_H |
| 49 | #define HFI1_VERBS_H |
| 50 | |
| 51 | #include <linux/types.h> |
| 52 | #include <linux/seqlock.h> |
| 53 | #include <linux/kernel.h> |
| 54 | #include <linux/interrupt.h> |
| 55 | #include <linux/kref.h> |
| 56 | #include <linux/workqueue.h> |
| 57 | #include <linux/kthread.h> |
| 58 | #include <linux/completion.h> |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 59 | #include <linux/slab.h> |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 60 | #include <rdma/ib_pack.h> |
| 61 | #include <rdma/ib_user_verbs.h> |
| 62 | #include <rdma/ib_mad.h> |
Mike Marciniszyn | 261a435 | 2016-09-06 04:35:05 -0700 | [diff] [blame] | 63 | #include <rdma/ib_hdrs.h> |
Dennis Dalessandro | ec3f2c1 | 2016-01-19 14:41:33 -0800 | [diff] [blame] | 64 | #include <rdma/rdma_vt.h> |
Dennis Dalessandro | 54d10c1 | 2016-01-19 14:43:01 -0800 | [diff] [blame] | 65 | #include <rdma/rdmavt_qp.h> |
Dennis Dalessandro | abd712d | 2016-01-19 14:43:22 -0800 | [diff] [blame] | 66 | #include <rdma/rdmavt_cq.h> |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 67 | |
| 68 | struct hfi1_ctxtdata; |
| 69 | struct hfi1_pportdata; |
| 70 | struct hfi1_devdata; |
| 71 | struct hfi1_packet; |
| 72 | |
| 73 | #include "iowait.h" |
Mike Marciniszyn | 5190f05 | 2018-11-28 10:22:31 -0800 | [diff] [blame] | 74 | #include "tid_rdma.h" |
Mitko Haralanov | 44e43d9 | 2019-01-24 06:09:46 -0800 | [diff] [blame] | 75 | #include "opfn.h" |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 76 | |
| 77 | #define HFI1_MAX_RDMA_ATOMIC 16 |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | * Increment this value if any changes that break userspace ABI |
| 81 | * compatibility are made. |
| 82 | */ |
| 83 | #define HFI1_UVERBS_ABI_VERSION 2 |
| 84 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 85 | /* IB Performance Manager status values */ |
| 86 | #define IB_PMA_SAMPLE_STATUS_DONE 0x00 |
| 87 | #define IB_PMA_SAMPLE_STATUS_STARTED 0x01 |
| 88 | #define IB_PMA_SAMPLE_STATUS_RUNNING 0x02 |
| 89 | |
| 90 | /* Mandatory IB performance counter select values. */ |
| 91 | #define IB_PMA_PORT_XMIT_DATA cpu_to_be16(0x0001) |
| 92 | #define IB_PMA_PORT_RCV_DATA cpu_to_be16(0x0002) |
| 93 | #define IB_PMA_PORT_XMIT_PKTS cpu_to_be16(0x0003) |
| 94 | #define IB_PMA_PORT_RCV_PKTS cpu_to_be16(0x0004) |
| 95 | #define IB_PMA_PORT_XMIT_WAIT cpu_to_be16(0x0005) |
| 96 | |
| 97 | #define HFI1_VENDOR_IPG cpu_to_be16(0xFFA0) |
| 98 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 99 | #define IB_DEFAULT_GID_PREFIX cpu_to_be64(0xfe80000000000000ULL) |
Don Hiatt | 5786adf3 | 2017-08-04 13:54:10 -0700 | [diff] [blame] | 100 | #define OPA_BTH_MIG_REQ BIT(31) |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 101 | |
Mike Marciniszyn | b374e06 | 2016-09-25 07:40:58 -0700 | [diff] [blame] | 102 | #define RC_OP(x) IB_OPCODE_RC_##x |
| 103 | #define UC_OP(x) IB_OPCODE_UC_##x |
| 104 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 105 | /* flags passed by hfi1_ib_rcv() */ |
| 106 | enum { |
| 107 | HFI1_HAS_GRH = (1 << 0), |
| 108 | }; |
| 109 | |
Mike Marciniszyn | 78d3633 | 2018-02-01 10:52:35 -0800 | [diff] [blame] | 110 | #define LRH_16B_BYTES (FIELD_SIZEOF(struct hfi1_16b_header, lrh)) |
| 111 | #define LRH_16B_DWORDS (LRH_16B_BYTES / sizeof(u32)) |
| 112 | #define LRH_9B_BYTES (FIELD_SIZEOF(struct ib_header, lrh)) |
| 113 | #define LRH_9B_DWORDS (LRH_9B_BYTES / sizeof(u32)) |
| 114 | |
Don Hiatt | 4171a69 | 2018-05-15 18:28:07 -0700 | [diff] [blame] | 115 | /* 24Bits for qpn, upper 8Bits reserved */ |
| 116 | struct opa_16b_mgmt { |
| 117 | __be32 dest_qpn; |
| 118 | __be32 src_qpn; |
| 119 | }; |
| 120 | |
Don Hiatt | 72c07e2 | 2017-08-04 13:53:58 -0700 | [diff] [blame] | 121 | struct hfi1_16b_header { |
| 122 | u32 lrh[4]; |
| 123 | union { |
| 124 | struct { |
| 125 | struct ib_grh grh; |
| 126 | struct ib_other_headers oth; |
| 127 | } l; |
| 128 | struct ib_other_headers oth; |
Don Hiatt | 4171a69 | 2018-05-15 18:28:07 -0700 | [diff] [blame] | 129 | struct opa_16b_mgmt mgmt; |
Don Hiatt | 72c07e2 | 2017-08-04 13:53:58 -0700 | [diff] [blame] | 130 | } u; |
| 131 | } __packed; |
| 132 | |
Don Hiatt | 30e0741 | 2017-08-04 13:54:04 -0700 | [diff] [blame] | 133 | struct hfi1_opa_header { |
| 134 | union { |
| 135 | struct ib_header ibh; /* 9B header */ |
| 136 | struct hfi1_16b_header opah; /* 16B header */ |
| 137 | }; |
| 138 | u8 hdr_type; /* 9B or 16B */ |
| 139 | } __packed; |
| 140 | |
Dasaratharaman Chandramouli | a9b6b3b | 2016-07-25 13:40:16 -0700 | [diff] [blame] | 141 | struct hfi1_ahg_info { |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 142 | u32 ahgdesc[2]; |
| 143 | u16 tx_flags; |
| 144 | u8 ahgcount; |
| 145 | u8 ahgidx; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 146 | }; |
| 147 | |
Don Hiatt | d4d602e | 2016-07-25 13:40:22 -0700 | [diff] [blame] | 148 | struct hfi1_sdma_header { |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 149 | __le64 pbc; |
Don Hiatt | 30e0741 | 2017-08-04 13:54:04 -0700 | [diff] [blame] | 150 | struct hfi1_opa_header hdr; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 151 | } __packed; |
| 152 | |
| 153 | /* |
Dennis Dalessandro | 4c6829c | 2016-01-19 14:42:00 -0800 | [diff] [blame] | 154 | * hfi1 specific data structures that will be hidden from rvt after the queue |
| 155 | * pair is made common |
| 156 | */ |
Dennis Dalessandro | 4c6829c | 2016-01-19 14:42:00 -0800 | [diff] [blame] | 157 | struct hfi1_qp_priv { |
Dasaratharaman Chandramouli | a9b6b3b | 2016-07-25 13:40:16 -0700 | [diff] [blame] | 158 | struct hfi1_ahg_info *s_ahg; /* ahg info for next header */ |
Jubin John | 721d042 | 2016-02-14 12:45:00 -0800 | [diff] [blame] | 159 | struct sdma_engine *s_sde; /* current sde */ |
| 160 | struct send_context *s_sendcontext; /* current sendcontext */ |
Mike Marciniszyn | 5190f05 | 2018-11-28 10:22:31 -0800 | [diff] [blame] | 161 | struct hfi1_ctxtdata *rcd; /* QP's receive context */ |
Kaike Wan | 838b6fd | 2019-01-23 19:30:07 -0800 | [diff] [blame] | 162 | struct page **pages; /* for TID page scan */ |
Kaike Wan | 37356e7 | 2019-02-05 14:13:13 -0800 | [diff] [blame] | 163 | u32 tid_enqueue; /* saved when tid waited */ |
Jubin John | 721d042 | 2016-02-14 12:45:00 -0800 | [diff] [blame] | 164 | u8 s_sc; /* SC[0..4] for next packet */ |
Dennis Dalessandro | 4c6829c | 2016-01-19 14:42:00 -0800 | [diff] [blame] | 165 | struct iowait s_iowait; |
Kaike Wan | 37356e7 | 2019-02-05 14:13:13 -0800 | [diff] [blame] | 166 | struct list_head tid_wait; /* for queueing tid space */ |
Kaike Wan | d22a207 | 2019-01-23 19:20:42 -0800 | [diff] [blame] | 167 | struct hfi1_opfn_data opfn; |
Kaike Wan | 37356e7 | 2019-02-05 14:13:13 -0800 | [diff] [blame] | 168 | struct tid_flow_state flow_state; |
Kaike Wan | d22a207 | 2019-01-23 19:20:42 -0800 | [diff] [blame] | 169 | struct tid_rdma_qp_params tid_rdma; |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 170 | struct rvt_qp *owner; |
Don Hiatt | d98bb7f | 2017-08-04 13:54:16 -0700 | [diff] [blame] | 171 | u8 hdr_type; /* 9B or 16B */ |
Kaike Wan | d22a207 | 2019-01-23 19:20:42 -0800 | [diff] [blame] | 172 | unsigned long tid_timer_timeout_jiffies; |
Kaike Wan | 742a382 | 2019-01-23 19:30:40 -0800 | [diff] [blame] | 173 | |
Kaike Wan | a0b34f7 | 2019-01-24 06:36:48 -0800 | [diff] [blame] | 174 | /* variables for the TID RDMA SE state machine */ |
Kaike Wan | 07b92370 | 2019-01-23 21:48:59 -0800 | [diff] [blame^] | 175 | u8 rnr_nak_state; /* RNR NAK state */ |
Kaike Wan | a0b34f7 | 2019-01-24 06:36:48 -0800 | [diff] [blame] | 176 | u32 s_flags; |
Kaike Wan | 07b92370 | 2019-01-23 21:48:59 -0800 | [diff] [blame^] | 177 | u32 r_tid_head; /* Most recently added TID RDMA request */ |
| 178 | u32 r_tid_tail; /* the last completed TID RDMA request */ |
| 179 | u32 r_tid_ack; /* the TID RDMA request to be ACK'ed */ |
| 180 | u32 r_tid_alloc; /* Request for which we are allocating resources */ |
| 181 | u32 pending_tid_w_segs; /* Num of pending tid write segments */ |
| 182 | u32 alloc_w_segs; /* Number of segments for which write */ |
| 183 | /* resources have been allocated for this QP */ |
Kaike Wan | a0b34f7 | 2019-01-24 06:36:48 -0800 | [diff] [blame] | 184 | |
Kaike Wan | 742a382 | 2019-01-23 19:30:40 -0800 | [diff] [blame] | 185 | /* For TID RDMA READ */ |
Kaike Wan | 9905bf0 | 2019-02-05 14:13:30 -0800 | [diff] [blame] | 186 | u32 tid_r_reqs; /* Num of tid reads requested */ |
| 187 | u32 tid_r_comp; /* Num of tid reads completed */ |
Kaike Wan | 742a382 | 2019-01-23 19:30:40 -0800 | [diff] [blame] | 188 | u32 pending_tid_r_segs; /* Num of pending tid read segments */ |
Kaike Wan | d22a207 | 2019-01-23 19:20:42 -0800 | [diff] [blame] | 189 | u16 pkts_ps; /* packets per segment */ |
| 190 | u8 timeout_shift; /* account for number of packets per segment */ |
Kaike Wan | 07b92370 | 2019-01-23 21:48:59 -0800 | [diff] [blame^] | 191 | |
| 192 | u8 sync_pt; /* Set when QP reaches sync point */ |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 193 | }; |
| 194 | |
Kaike Wan | 07b92370 | 2019-01-23 21:48:59 -0800 | [diff] [blame^] | 195 | #define HFI1_QP_WQE_INVALID ((u32)-1) |
| 196 | |
Kaike Wan | 838b6fd | 2019-01-23 19:30:07 -0800 | [diff] [blame] | 197 | struct hfi1_swqe_priv { |
| 198 | struct tid_rdma_request tid_req; |
Kaike Wan | 742a382 | 2019-01-23 19:30:40 -0800 | [diff] [blame] | 199 | struct rvt_sge_state ss; /* Used for TID RDMA READ Request */ |
Kaike Wan | 838b6fd | 2019-01-23 19:30:07 -0800 | [diff] [blame] | 200 | }; |
| 201 | |
| 202 | struct hfi1_ack_priv { |
| 203 | struct tid_rdma_request tid_req; |
| 204 | }; |
| 205 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 206 | /* |
Dennis Dalessandro | d46e514 | 2015-11-11 00:34:37 -0500 | [diff] [blame] | 207 | * This structure is used to hold commonly lookedup and computed values during |
| 208 | * the send engine progress. |
| 209 | */ |
Dennis Dalessandro | 5da0fc9 | 2018-09-28 07:17:09 -0700 | [diff] [blame] | 210 | struct iowait_work; |
Dennis Dalessandro | d46e514 | 2015-11-11 00:34:37 -0500 | [diff] [blame] | 211 | struct hfi1_pkt_state { |
| 212 | struct hfi1_ibdev *dev; |
| 213 | struct hfi1_ibport *ibp; |
| 214 | struct hfi1_pportdata *ppd; |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 215 | struct verbs_txreq *s_txreq; |
Dennis Dalessandro | 5da0fc9 | 2018-09-28 07:17:09 -0700 | [diff] [blame] | 216 | struct iowait_work *wait; |
Mike Marciniszyn | 747f4d7 | 2016-04-12 10:46:10 -0700 | [diff] [blame] | 217 | unsigned long flags; |
Mike Marciniszyn | dd1ed10 | 2017-05-04 05:14:10 -0700 | [diff] [blame] | 218 | unsigned long timeout; |
| 219 | unsigned long timeout_int; |
| 220 | int cpu; |
Don Hiatt | 566d53a | 2017-08-04 13:54:47 -0700 | [diff] [blame] | 221 | u8 opcode; |
Mike Marciniszyn | dd1ed10 | 2017-05-04 05:14:10 -0700 | [diff] [blame] | 222 | bool in_thread; |
Kaike Wan | bcad291 | 2017-07-24 07:45:37 -0700 | [diff] [blame] | 223 | bool pkts_sent; |
Dennis Dalessandro | d46e514 | 2015-11-11 00:34:37 -0500 | [diff] [blame] | 224 | }; |
| 225 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 226 | #define HFI1_PSN_CREDIT 16 |
| 227 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 228 | struct hfi1_opcode_stats { |
| 229 | u64 n_packets; /* number of packets */ |
| 230 | u64 n_bytes; /* total number of bytes */ |
| 231 | }; |
| 232 | |
| 233 | struct hfi1_opcode_stats_perctx { |
| 234 | struct hfi1_opcode_stats stats[256]; |
| 235 | }; |
| 236 | |
| 237 | static inline void inc_opstats( |
| 238 | u32 tlen, |
| 239 | struct hfi1_opcode_stats *stats) |
| 240 | { |
| 241 | #ifdef CONFIG_DEBUG_FS |
| 242 | stats->n_bytes += tlen; |
| 243 | stats->n_packets++; |
| 244 | #endif |
| 245 | } |
| 246 | |
| 247 | struct hfi1_ibport { |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 248 | struct rvt_qp __rcu *qp[2]; |
Dennis Dalessandro | 4eb0688 | 2016-01-19 14:42:39 -0800 | [diff] [blame] | 249 | struct rvt_ibport rvp; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 250 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 251 | /* the first 16 entries are sl_to_vl for !OPA */ |
| 252 | u8 sl_to_sc[32]; |
| 253 | u8 sc_to_sl[32]; |
| 254 | }; |
| 255 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 256 | struct hfi1_ibdev { |
Dennis Dalessandro | ec3f2c1 | 2016-01-19 14:41:33 -0800 | [diff] [blame] | 257 | struct rvt_dev_info rdi; /* Must be first */ |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 258 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 259 | /* QP numbers are shared by all IB ports */ |
Mike Marciniszyn | 4e04557 | 2016-10-10 06:14:28 -0700 | [diff] [blame] | 260 | /* protect txwait list */ |
| 261 | seqlock_t txwait_lock ____cacheline_aligned_in_smp; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 262 | struct list_head txwait; /* list for wait verbs_txreq */ |
| 263 | struct list_head memwait; /* list for wait kernel memory */ |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 264 | struct kmem_cache *verbs_txreq_cache; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 265 | u64 n_txwait; |
| 266 | u64 n_kmem_wait; |
Kaike Wan | 2f16a69 | 2019-01-23 19:30:18 -0800 | [diff] [blame] | 267 | u64 n_tidwait; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 268 | |
Mike Marciniszyn | 4e04557 | 2016-10-10 06:14:28 -0700 | [diff] [blame] | 269 | /* protect iowait lists */ |
| 270 | seqlock_t iowait_lock ____cacheline_aligned_in_smp; |
| 271 | u64 n_piowait; |
| 272 | u64 n_piodrain; |
| 273 | struct timer_list mem_timer; |
| 274 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 275 | #ifdef CONFIG_DEBUG_FS |
| 276 | /* per HFI debugfs */ |
| 277 | struct dentry *hfi1_ibdev_dbg; |
| 278 | /* per HFI symlinks to above */ |
| 279 | struct dentry *hfi1_ibdev_link; |
Don Hiatt | 0181ce3 | 2017-03-20 17:26:14 -0700 | [diff] [blame] | 280 | #ifdef CONFIG_FAULT_INJECTION |
Mitko Haralanov | a74d530 | 2018-05-02 06:43:24 -0700 | [diff] [blame] | 281 | struct fault *fault; |
Don Hiatt | 0181ce3 | 2017-03-20 17:26:14 -0700 | [diff] [blame] | 282 | #endif |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 283 | #endif |
| 284 | }; |
| 285 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 286 | static inline struct hfi1_ibdev *to_idev(struct ib_device *ibdev) |
| 287 | { |
Dennis Dalessandro | ec3f2c1 | 2016-01-19 14:41:33 -0800 | [diff] [blame] | 288 | struct rvt_dev_info *rdi; |
| 289 | |
| 290 | rdi = container_of(ibdev, struct rvt_dev_info, ibdev); |
| 291 | return container_of(rdi, struct hfi1_ibdev, rdi); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 292 | } |
| 293 | |
Dennis Dalessandro | 5da0fc9 | 2018-09-28 07:17:09 -0700 | [diff] [blame] | 294 | static inline struct rvt_qp *iowait_to_qp(struct iowait *s_iowait) |
Dennis Dalessandro | 4c6829c | 2016-01-19 14:42:00 -0800 | [diff] [blame] | 295 | { |
| 296 | struct hfi1_qp_priv *priv; |
| 297 | |
| 298 | priv = container_of(s_iowait, struct hfi1_qp_priv, s_iowait); |
| 299 | return priv->owner; |
| 300 | } |
| 301 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 302 | /* |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 303 | * This must be called with s_lock held. |
| 304 | */ |
Dennis Dalessandro | 13d8491 | 2017-05-29 17:22:01 -0700 | [diff] [blame] | 305 | void hfi1_bad_pkey(struct hfi1_ibport *ibp, u32 key, u32 sl, |
Don Hiatt | 88733e3 | 2017-08-04 13:54:23 -0700 | [diff] [blame] | 306 | u32 qp1, u32 qp2, u32 lid1, u32 lid2); |
Harish Chegondi | 45b59ee | 2016-02-03 14:36:49 -0800 | [diff] [blame] | 307 | void hfi1_cap_mask_chg(struct rvt_dev_info *rdi, u8 port_num); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 308 | void hfi1_sys_guid_chg(struct hfi1_ibport *ibp); |
| 309 | void hfi1_node_desc_chg(struct hfi1_ibport *ibp); |
| 310 | int hfi1_process_mad(struct ib_device *ibdev, int mad_flags, u8 port, |
| 311 | const struct ib_wc *in_wc, const struct ib_grh *in_grh, |
| 312 | const struct ib_mad_hdr *in_mad, size_t in_mad_size, |
| 313 | struct ib_mad_hdr *out_mad, size_t *out_mad_size, |
| 314 | u16 *out_mad_pkey_index); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * The PSN_MASK and PSN_SHIFT allow for |
| 318 | * 1) comparing two PSNs |
| 319 | * 2) returning the PSN with any upper bits masked |
| 320 | * 3) returning the difference between to PSNs |
| 321 | * |
| 322 | * The number of significant bits in the PSN must |
| 323 | * necessarily be at least one bit less than |
| 324 | * the container holding the PSN. |
| 325 | */ |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 326 | #define PSN_MASK 0x7FFFFFFF |
| 327 | #define PSN_SHIFT 1 |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 328 | #define PSN_MODIFY_MASK 0xFFFFFF |
| 329 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 330 | /* |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 331 | * Compare two PSNs |
| 332 | * Returns an integer <, ==, or > than zero. |
| 333 | */ |
| 334 | static inline int cmp_psn(u32 a, u32 b) |
| 335 | { |
Jubin John | 50e5dcb | 2016-02-14 20:19:41 -0800 | [diff] [blame] | 336 | return (((int)a) - ((int)b)) << PSN_SHIFT; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
| 340 | * Return masked PSN |
| 341 | */ |
| 342 | static inline u32 mask_psn(u32 a) |
| 343 | { |
| 344 | return a & PSN_MASK; |
| 345 | } |
| 346 | |
| 347 | /* |
| 348 | * Return delta between two PSNs |
| 349 | */ |
| 350 | static inline u32 delta_psn(u32 a, u32 b) |
| 351 | { |
| 352 | return (((int)a - (int)b) << PSN_SHIFT) >> PSN_SHIFT; |
| 353 | } |
| 354 | |
Kaike Wan | 742a382 | 2019-01-23 19:30:40 -0800 | [diff] [blame] | 355 | static inline struct tid_rdma_request *wqe_to_tid_req(struct rvt_swqe *wqe) |
| 356 | { |
| 357 | return &((struct hfi1_swqe_priv *)wqe->priv)->tid_req; |
| 358 | } |
| 359 | |
Kaike Wan | d0d564a | 2019-01-23 19:31:02 -0800 | [diff] [blame] | 360 | static inline struct tid_rdma_request *ack_to_tid_req(struct rvt_ack_entry *e) |
| 361 | { |
| 362 | return &((struct hfi1_ack_priv *)e->priv)->tid_req; |
| 363 | } |
| 364 | |
Kaike Wan | 838b6fd | 2019-01-23 19:30:07 -0800 | [diff] [blame] | 365 | /* |
| 366 | * Look through all the active flows for a TID RDMA request and find |
| 367 | * the one (if it exists) that contains the specified PSN. |
| 368 | */ |
| 369 | static inline u32 __full_flow_psn(struct flow_state *state, u32 psn) |
| 370 | { |
| 371 | return mask_psn((state->generation << HFI1_KDETH_BTH_SEQ_SHIFT) | |
| 372 | (psn & HFI1_KDETH_BTH_SEQ_MASK)); |
| 373 | } |
| 374 | |
| 375 | static inline u32 full_flow_psn(struct tid_rdma_flow *flow, u32 psn) |
| 376 | { |
| 377 | return __full_flow_psn(&flow->flow_state, psn); |
| 378 | } |
| 379 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 380 | struct verbs_txreq; |
| 381 | void hfi1_put_txreq(struct verbs_txreq *tx); |
| 382 | |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 383 | int hfi1_verbs_send(struct rvt_qp *qp, struct hfi1_pkt_state *ps); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 384 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 385 | void hfi1_cnp_rcv(struct hfi1_packet *packet); |
| 386 | |
| 387 | void hfi1_uc_rcv(struct hfi1_packet *packet); |
| 388 | |
| 389 | void hfi1_rc_rcv(struct hfi1_packet *packet); |
| 390 | |
| 391 | void hfi1_rc_hdrerr( |
| 392 | struct hfi1_ctxtdata *rcd, |
Don Hiatt | 9039746 | 2017-05-12 09:20:20 -0700 | [diff] [blame] | 393 | struct hfi1_packet *packet, |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 394 | struct rvt_qp *qp); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 395 | |
Dasaratharaman Chandramouli | 9089885 | 2017-04-29 14:41:18 -0400 | [diff] [blame] | 396 | u8 ah_to_sc(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 397 | |
Don Hiatt | 30e0741 | 2017-08-04 13:54:04 -0700 | [diff] [blame] | 398 | void hfi1_rc_send_complete(struct rvt_qp *qp, struct hfi1_opa_header *opah); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 399 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 400 | void hfi1_ud_rcv(struct hfi1_packet *packet); |
| 401 | |
| 402 | int hfi1_lookup_pkey_idx(struct hfi1_ibport *ibp, u16 pkey); |
| 403 | |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 404 | void hfi1_migrate_qp(struct rvt_qp *qp); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 405 | |
Dennis Dalessandro | ec4274f | 2016-01-19 14:43:44 -0800 | [diff] [blame] | 406 | int hfi1_check_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr, |
| 407 | int attr_mask, struct ib_udata *udata); |
| 408 | |
| 409 | void hfi1_modify_qp(struct rvt_qp *qp, struct ib_qp_attr *attr, |
| 410 | int attr_mask, struct ib_udata *udata); |
Venkata Sandeep Dhanalakota | 56acbbf | 2017-02-08 05:27:19 -0800 | [diff] [blame] | 411 | void hfi1_restart_rc(struct rvt_qp *qp, u32 psn, int wait); |
Kaike Wan | d205a06a | 2018-09-26 10:26:44 -0700 | [diff] [blame] | 412 | int hfi1_setup_wqe(struct rvt_qp *qp, struct rvt_swqe *wqe, |
| 413 | bool *call_send); |
Ira Weiny | 31e7af1 | 2016-02-03 14:33:14 -0800 | [diff] [blame] | 414 | |
Mike Marciniszyn | 14553ca | 2016-02-14 12:45:36 -0800 | [diff] [blame] | 415 | extern const u32 rc_only_opcode; |
| 416 | extern const u32 uc_only_opcode; |
| 417 | |
Don Hiatt | 9039746 | 2017-05-12 09:20:20 -0700 | [diff] [blame] | 418 | int hfi1_ruc_check_hdr(struct hfi1_ibport *ibp, struct hfi1_packet *packet); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 419 | |
| 420 | u32 hfi1_make_grh(struct hfi1_ibport *ibp, struct ib_grh *hdr, |
Dasaratharaman Chandramouli | d8966fc | 2017-04-29 14:41:28 -0400 | [diff] [blame] | 421 | const struct ib_global_route *grh, u32 hwords, u32 nwords); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 422 | |
Mike Marciniszyn | 261a435 | 2016-09-06 04:35:05 -0700 | [diff] [blame] | 423 | void hfi1_make_ruc_header(struct rvt_qp *qp, struct ib_other_headers *ohdr, |
Mitko Haralanov | 44e43d9 | 2019-01-24 06:09:46 -0800 | [diff] [blame] | 424 | u32 bth0, u32 bth1, u32 bth2, int middle, |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 425 | struct hfi1_pkt_state *ps); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 426 | |
Dennis Dalessandro | 83693bd | 2016-01-19 14:43:33 -0800 | [diff] [blame] | 427 | void _hfi1_do_send(struct work_struct *work); |
| 428 | |
Mike Marciniszyn | b6eac93 | 2017-04-09 10:16:35 -0700 | [diff] [blame] | 429 | void hfi1_do_send_from_rvt(struct rvt_qp *qp); |
| 430 | |
| 431 | void hfi1_do_send(struct rvt_qp *qp, bool in_thread); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 432 | |
Sebastian Sanchez | bdaf96f | 2018-02-01 10:46:31 -0800 | [diff] [blame] | 433 | void hfi1_send_rc_ack(struct hfi1_packet *packet, bool is_fecn); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 434 | |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 435 | int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 436 | |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 437 | int hfi1_make_uc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 438 | |
Dennis Dalessandro | bb5df5f | 2016-02-14 12:44:43 -0800 | [diff] [blame] | 439 | int hfi1_make_ud_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 440 | |
| 441 | int hfi1_register_ib_device(struct hfi1_devdata *); |
| 442 | |
| 443 | void hfi1_unregister_ib_device(struct hfi1_devdata *); |
| 444 | |
Kaike Wan | 22d136d | 2019-01-24 06:36:34 -0800 | [diff] [blame] | 445 | void hfi1_kdeth_eager_rcv(struct hfi1_packet *packet); |
| 446 | |
| 447 | void hfi1_kdeth_expected_rcv(struct hfi1_packet *packet); |
| 448 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 449 | void hfi1_ib_rcv(struct hfi1_packet *packet); |
| 450 | |
Don Hiatt | 72c07e2 | 2017-08-04 13:53:58 -0700 | [diff] [blame] | 451 | void hfi1_16B_rcv(struct hfi1_packet *packet); |
| 452 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 453 | unsigned hfi1_get_npkeys(struct hfi1_devdata *); |
| 454 | |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 455 | int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps, |
Dennis Dalessandro | d46e514 | 2015-11-11 00:34:37 -0500 | [diff] [blame] | 456 | u64 pbc); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 457 | |
Dennis Dalessandro | 895420d | 2016-01-19 14:42:28 -0800 | [diff] [blame] | 458 | int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps, |
Dennis Dalessandro | d46e514 | 2015-11-11 00:34:37 -0500 | [diff] [blame] | 459 | u64 pbc); |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 460 | |
Sebastian Sanchez | 6d6b884 | 2018-02-01 10:46:23 -0800 | [diff] [blame] | 461 | static inline bool opa_bth_is_migration(struct ib_other_headers *ohdr) |
| 462 | { |
| 463 | return ohdr->bth[1] & cpu_to_be32(OPA_BTH_MIG_REQ); |
| 464 | } |
| 465 | |
Kaike Wan | 838b6fd | 2019-01-23 19:30:07 -0800 | [diff] [blame] | 466 | void hfi1_wait_kmem(struct rvt_qp *qp); |
| 467 | |
| 468 | static inline void hfi1_trdma_send_complete(struct rvt_qp *qp, |
| 469 | struct rvt_swqe *wqe, |
| 470 | enum ib_wc_status status) |
| 471 | { |
| 472 | trdma_clean_swqe(qp, wqe); |
| 473 | rvt_send_complete(qp, wqe, status); |
| 474 | } |
| 475 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 476 | extern const enum ib_wc_opcode ib_hfi1_wc_opcode[]; |
| 477 | |
| 478 | extern const u8 hdr_len_by_opcode[]; |
| 479 | |
Dennis Dalessandro | 83693bd | 2016-01-19 14:43:33 -0800 | [diff] [blame] | 480 | extern const int ib_rvt_state_ops[]; |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 481 | |
| 482 | extern __be64 ib_hfi1_sys_image_guid; /* in network order */ |
| 483 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 484 | extern unsigned int hfi1_max_cqes; |
| 485 | |
| 486 | extern unsigned int hfi1_max_cqs; |
| 487 | |
| 488 | extern unsigned int hfi1_max_qp_wrs; |
| 489 | |
| 490 | extern unsigned int hfi1_max_qps; |
| 491 | |
| 492 | extern unsigned int hfi1_max_sges; |
| 493 | |
| 494 | extern unsigned int hfi1_max_mcast_grps; |
| 495 | |
| 496 | extern unsigned int hfi1_max_mcast_qp_attached; |
| 497 | |
| 498 | extern unsigned int hfi1_max_srqs; |
| 499 | |
| 500 | extern unsigned int hfi1_max_srq_sges; |
| 501 | |
| 502 | extern unsigned int hfi1_max_srq_wrs; |
| 503 | |
Mike Marciniszyn | 14553ca | 2016-02-14 12:45:36 -0800 | [diff] [blame] | 504 | extern unsigned short piothreshold; |
| 505 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 506 | extern const u32 ib_hfi1_rnr_table[]; |
| 507 | |
Mike Marciniszyn | 7724105 | 2015-07-30 15:17:43 -0400 | [diff] [blame] | 508 | #endif /* HFI1_VERBS_H */ |