Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004 Topspin Communications. All rights reserved. |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Cisco Systems. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 4 | * Copyright (c) 2005 Mellanox Technologies. All rights reserved. |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 5 | * Copyright (c) 2004 Voltaire, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This software is available to you under a choice of one of two |
| 8 | * licenses. You may choose to be licensed under the terms of the GNU |
| 9 | * General Public License (GPL) Version 2, available from the file |
| 10 | * COPYING in the main directory of this source tree, or the |
| 11 | * OpenIB.org BSD license below: |
| 12 | * |
| 13 | * Redistribution and use in source and binary forms, with or |
| 14 | * without modification, are permitted provided that the following |
| 15 | * conditions are met: |
| 16 | * |
| 17 | * - Redistributions of source code must retain the above |
| 18 | * copyright notice, this list of conditions and the following |
| 19 | * disclaimer. |
| 20 | * |
| 21 | * - Redistributions in binary form must reproduce the above |
| 22 | * copyright notice, this list of conditions and the following |
| 23 | * disclaimer in the documentation and/or other materials |
| 24 | * provided with the distribution. |
| 25 | * |
| 26 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 27 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 28 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 29 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 30 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 31 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 32 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 33 | * SOFTWARE. |
| 34 | * |
| 35 | * $Id: mthca_qp.c 1355 2004-12-17 15:23:43Z roland $ |
| 36 | */ |
| 37 | |
| 38 | #include <linux/init.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 39 | #include <linux/string.h> |
| 40 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Roland Dreier | a4d61e8 | 2005-08-25 13:40:04 -0700 | [diff] [blame] | 42 | #include <rdma/ib_verbs.h> |
| 43 | #include <rdma/ib_cache.h> |
| 44 | #include <rdma/ib_pack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include "mthca_dev.h" |
| 47 | #include "mthca_cmd.h" |
| 48 | #include "mthca_memfree.h" |
Roland Dreier | c04bc3d | 2005-08-19 10:33:35 -0700 | [diff] [blame] | 49 | #include "mthca_wqe.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | enum { |
| 52 | MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE, |
| 53 | MTHCA_ACK_REQ_FREQ = 10, |
| 54 | MTHCA_FLIGHT_LIMIT = 9, |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 55 | MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */ |
| 56 | MTHCA_INLINE_HEADER_SIZE = 4, /* data segment overhead for inline */ |
| 57 | MTHCA_INLINE_CHUNK_SIZE = 16 /* inline data segment chunk */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | enum { |
| 61 | MTHCA_QP_STATE_RST = 0, |
| 62 | MTHCA_QP_STATE_INIT = 1, |
| 63 | MTHCA_QP_STATE_RTR = 2, |
| 64 | MTHCA_QP_STATE_RTS = 3, |
| 65 | MTHCA_QP_STATE_SQE = 4, |
| 66 | MTHCA_QP_STATE_SQD = 5, |
| 67 | MTHCA_QP_STATE_ERR = 6, |
| 68 | MTHCA_QP_STATE_DRAINING = 7 |
| 69 | }; |
| 70 | |
| 71 | enum { |
| 72 | MTHCA_QP_ST_RC = 0x0, |
| 73 | MTHCA_QP_ST_UC = 0x1, |
| 74 | MTHCA_QP_ST_RD = 0x2, |
| 75 | MTHCA_QP_ST_UD = 0x3, |
| 76 | MTHCA_QP_ST_MLX = 0x7 |
| 77 | }; |
| 78 | |
| 79 | enum { |
| 80 | MTHCA_QP_PM_MIGRATED = 0x3, |
| 81 | MTHCA_QP_PM_ARMED = 0x0, |
| 82 | MTHCA_QP_PM_REARM = 0x1 |
| 83 | }; |
| 84 | |
| 85 | enum { |
| 86 | /* qp_context flags */ |
| 87 | MTHCA_QP_BIT_DE = 1 << 8, |
| 88 | /* params1 */ |
| 89 | MTHCA_QP_BIT_SRE = 1 << 15, |
| 90 | MTHCA_QP_BIT_SWE = 1 << 14, |
| 91 | MTHCA_QP_BIT_SAE = 1 << 13, |
| 92 | MTHCA_QP_BIT_SIC = 1 << 4, |
| 93 | MTHCA_QP_BIT_SSC = 1 << 3, |
| 94 | /* params2 */ |
| 95 | MTHCA_QP_BIT_RRE = 1 << 15, |
| 96 | MTHCA_QP_BIT_RWE = 1 << 14, |
| 97 | MTHCA_QP_BIT_RAE = 1 << 13, |
| 98 | MTHCA_QP_BIT_RIC = 1 << 4, |
| 99 | MTHCA_QP_BIT_RSC = 1 << 3 |
| 100 | }; |
| 101 | |
Michael S. Tsirkin | e54b82d | 2006-08-10 10:46:56 -0700 | [diff] [blame^] | 102 | enum { |
| 103 | MTHCA_SEND_DOORBELL_FENCE = 1 << 5 |
| 104 | }; |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct mthca_qp_path { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 107 | __be32 port_pkey; |
| 108 | u8 rnr_retry; |
| 109 | u8 g_mylmc; |
| 110 | __be16 rlid; |
| 111 | u8 ackto; |
| 112 | u8 mgid_index; |
| 113 | u8 static_rate; |
| 114 | u8 hop_limit; |
| 115 | __be32 sl_tclass_flowlabel; |
| 116 | u8 rgid[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } __attribute__((packed)); |
| 118 | |
| 119 | struct mthca_qp_context { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 120 | __be32 flags; |
| 121 | __be32 tavor_sched_queue; /* Reserved on Arbel */ |
| 122 | u8 mtu_msgmax; |
| 123 | u8 rq_size_stride; /* Reserved on Tavor */ |
| 124 | u8 sq_size_stride; /* Reserved on Tavor */ |
| 125 | u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */ |
| 126 | __be32 usr_page; |
| 127 | __be32 local_qpn; |
| 128 | __be32 remote_qpn; |
| 129 | u32 reserved1[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | struct mthca_qp_path pri_path; |
| 131 | struct mthca_qp_path alt_path; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 132 | __be32 rdd; |
| 133 | __be32 pd; |
| 134 | __be32 wqe_base; |
| 135 | __be32 wqe_lkey; |
| 136 | __be32 params1; |
| 137 | __be32 reserved2; |
| 138 | __be32 next_send_psn; |
| 139 | __be32 cqn_snd; |
| 140 | __be32 snd_wqe_base_l; /* Next send WQE on Tavor */ |
| 141 | __be32 snd_db_index; /* (debugging only entries) */ |
| 142 | __be32 last_acked_psn; |
| 143 | __be32 ssn; |
| 144 | __be32 params2; |
| 145 | __be32 rnr_nextrecvpsn; |
| 146 | __be32 ra_buff_indx; |
| 147 | __be32 cqn_rcv; |
| 148 | __be32 rcv_wqe_base_l; /* Next recv WQE on Tavor */ |
| 149 | __be32 rcv_db_index; /* (debugging only entries) */ |
| 150 | __be32 qkey; |
| 151 | __be32 srqn; |
| 152 | __be32 rmsn; |
| 153 | __be16 rq_wqe_counter; /* reserved on Tavor */ |
| 154 | __be16 sq_wqe_counter; /* reserved on Tavor */ |
| 155 | u32 reserved3[18]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } __attribute__((packed)); |
| 157 | |
| 158 | struct mthca_qp_param { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 159 | __be32 opt_param_mask; |
| 160 | u32 reserved1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | struct mthca_qp_context context; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 162 | u32 reserved2[62]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } __attribute__((packed)); |
| 164 | |
| 165 | enum { |
| 166 | MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0, |
| 167 | MTHCA_QP_OPTPAR_RRE = 1 << 1, |
| 168 | MTHCA_QP_OPTPAR_RAE = 1 << 2, |
| 169 | MTHCA_QP_OPTPAR_RWE = 1 << 3, |
| 170 | MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4, |
| 171 | MTHCA_QP_OPTPAR_Q_KEY = 1 << 5, |
| 172 | MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6, |
| 173 | MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7, |
| 174 | MTHCA_QP_OPTPAR_SRA_MAX = 1 << 8, |
| 175 | MTHCA_QP_OPTPAR_RRA_MAX = 1 << 9, |
| 176 | MTHCA_QP_OPTPAR_PM_STATE = 1 << 10, |
| 177 | MTHCA_QP_OPTPAR_PORT_NUM = 1 << 11, |
| 178 | MTHCA_QP_OPTPAR_RETRY_COUNT = 1 << 12, |
| 179 | MTHCA_QP_OPTPAR_ALT_RNR_RETRY = 1 << 13, |
| 180 | MTHCA_QP_OPTPAR_ACK_TIMEOUT = 1 << 14, |
| 181 | MTHCA_QP_OPTPAR_RNR_RETRY = 1 << 15, |
| 182 | MTHCA_QP_OPTPAR_SCHED_QUEUE = 1 << 16 |
| 183 | }; |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | static const u8 mthca_opcode[] = { |
| 186 | [IB_WR_SEND] = MTHCA_OPCODE_SEND, |
| 187 | [IB_WR_SEND_WITH_IMM] = MTHCA_OPCODE_SEND_IMM, |
| 188 | [IB_WR_RDMA_WRITE] = MTHCA_OPCODE_RDMA_WRITE, |
| 189 | [IB_WR_RDMA_WRITE_WITH_IMM] = MTHCA_OPCODE_RDMA_WRITE_IMM, |
| 190 | [IB_WR_RDMA_READ] = MTHCA_OPCODE_RDMA_READ, |
| 191 | [IB_WR_ATOMIC_CMP_AND_SWP] = MTHCA_OPCODE_ATOMIC_CS, |
| 192 | [IB_WR_ATOMIC_FETCH_AND_ADD] = MTHCA_OPCODE_ATOMIC_FA, |
| 193 | }; |
| 194 | |
| 195 | static int is_sqp(struct mthca_dev *dev, struct mthca_qp *qp) |
| 196 | { |
| 197 | return qp->qpn >= dev->qp_table.sqp_start && |
| 198 | qp->qpn <= dev->qp_table.sqp_start + 3; |
| 199 | } |
| 200 | |
| 201 | static int is_qp0(struct mthca_dev *dev, struct mthca_qp *qp) |
| 202 | { |
| 203 | return qp->qpn >= dev->qp_table.sqp_start && |
| 204 | qp->qpn <= dev->qp_table.sqp_start + 1; |
| 205 | } |
| 206 | |
| 207 | static void *get_recv_wqe(struct mthca_qp *qp, int n) |
| 208 | { |
| 209 | if (qp->is_direct) |
| 210 | return qp->queue.direct.buf + (n << qp->rq.wqe_shift); |
| 211 | else |
| 212 | return qp->queue.page_list[(n << qp->rq.wqe_shift) >> PAGE_SHIFT].buf + |
| 213 | ((n << qp->rq.wqe_shift) & (PAGE_SIZE - 1)); |
| 214 | } |
| 215 | |
| 216 | static void *get_send_wqe(struct mthca_qp *qp, int n) |
| 217 | { |
| 218 | if (qp->is_direct) |
| 219 | return qp->queue.direct.buf + qp->send_wqe_offset + |
| 220 | (n << qp->sq.wqe_shift); |
| 221 | else |
| 222 | return qp->queue.page_list[(qp->send_wqe_offset + |
| 223 | (n << qp->sq.wqe_shift)) >> |
| 224 | PAGE_SHIFT].buf + |
| 225 | ((qp->send_wqe_offset + (n << qp->sq.wqe_shift)) & |
| 226 | (PAGE_SIZE - 1)); |
| 227 | } |
| 228 | |
Michael S. Tsirkin | 0964d91 | 2006-07-14 00:23:51 -0700 | [diff] [blame] | 229 | static void mthca_wq_reset(struct mthca_wq *wq) |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 230 | { |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 231 | wq->next_ind = 0; |
| 232 | wq->last_comp = wq->max - 1; |
| 233 | wq->head = 0; |
| 234 | wq->tail = 0; |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | void mthca_qp_event(struct mthca_dev *dev, u32 qpn, |
| 238 | enum ib_event_type event_type) |
| 239 | { |
| 240 | struct mthca_qp *qp; |
| 241 | struct ib_event event; |
| 242 | |
| 243 | spin_lock(&dev->qp_table.lock); |
| 244 | qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1)); |
| 245 | if (qp) |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 246 | ++qp->refcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | spin_unlock(&dev->qp_table.lock); |
| 248 | |
| 249 | if (!qp) { |
| 250 | mthca_warn(dev, "Async event for bogus QP %08x\n", qpn); |
| 251 | return; |
| 252 | } |
| 253 | |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 254 | if (event_type == IB_EVENT_PATH_MIG) |
| 255 | qp->port = qp->alt_port; |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | event.device = &dev->ib_dev; |
| 258 | event.event = event_type; |
| 259 | event.element.qp = &qp->ibqp; |
| 260 | if (qp->ibqp.event_handler) |
| 261 | qp->ibqp.event_handler(&event, qp->ibqp.qp_context); |
| 262 | |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 263 | spin_lock(&dev->qp_table.lock); |
| 264 | if (!--qp->refcount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | wake_up(&qp->wait); |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 266 | spin_unlock(&dev->qp_table.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static int to_mthca_state(enum ib_qp_state ib_state) |
| 270 | { |
| 271 | switch (ib_state) { |
| 272 | case IB_QPS_RESET: return MTHCA_QP_STATE_RST; |
| 273 | case IB_QPS_INIT: return MTHCA_QP_STATE_INIT; |
| 274 | case IB_QPS_RTR: return MTHCA_QP_STATE_RTR; |
| 275 | case IB_QPS_RTS: return MTHCA_QP_STATE_RTS; |
| 276 | case IB_QPS_SQD: return MTHCA_QP_STATE_SQD; |
| 277 | case IB_QPS_SQE: return MTHCA_QP_STATE_SQE; |
| 278 | case IB_QPS_ERR: return MTHCA_QP_STATE_ERR; |
| 279 | default: return -1; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS }; |
| 284 | |
| 285 | static int to_mthca_st(int transport) |
| 286 | { |
| 287 | switch (transport) { |
| 288 | case RC: return MTHCA_QP_ST_RC; |
| 289 | case UC: return MTHCA_QP_ST_UC; |
| 290 | case UD: return MTHCA_QP_ST_UD; |
| 291 | case RD: return MTHCA_QP_ST_RD; |
| 292 | case MLX: return MTHCA_QP_ST_MLX; |
| 293 | default: return -1; |
| 294 | } |
| 295 | } |
| 296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | static void store_attrs(struct mthca_sqp *sqp, struct ib_qp_attr *attr, |
| 298 | int attr_mask) |
| 299 | { |
| 300 | if (attr_mask & IB_QP_PKEY_INDEX) |
| 301 | sqp->pkey_index = attr->pkey_index; |
| 302 | if (attr_mask & IB_QP_QKEY) |
| 303 | sqp->qkey = attr->qkey; |
| 304 | if (attr_mask & IB_QP_SQ_PSN) |
| 305 | sqp->send_psn = attr->sq_psn; |
| 306 | } |
| 307 | |
| 308 | static void init_port(struct mthca_dev *dev, int port) |
| 309 | { |
| 310 | int err; |
| 311 | u8 status; |
| 312 | struct mthca_init_ib_param param; |
| 313 | |
| 314 | memset(¶m, 0, sizeof param); |
| 315 | |
Roland Dreier | da6561c | 2005-08-17 07:39:10 -0700 | [diff] [blame] | 316 | param.port_width = dev->limits.port_width_cap; |
| 317 | param.vl_cap = dev->limits.vl_cap; |
| 318 | param.mtu_cap = dev->limits.mtu_cap; |
| 319 | param.gid_cap = dev->limits.gid_table_len; |
| 320 | param.pkey_cap = dev->limits.pkey_table_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | err = mthca_INIT_IB(dev, ¶m, port, &status); |
| 323 | if (err) |
| 324 | mthca_warn(dev, "INIT_IB failed, return code %d.\n", err); |
| 325 | if (status) |
| 326 | mthca_warn(dev, "INIT_IB returned status %02x.\n", status); |
| 327 | } |
| 328 | |
Jack Morgenstein | d1646f8 | 2005-12-15 14:36:24 -0800 | [diff] [blame] | 329 | static __be32 get_hw_access_flags(struct mthca_qp *qp, struct ib_qp_attr *attr, |
| 330 | int attr_mask) |
| 331 | { |
| 332 | u8 dest_rd_atomic; |
| 333 | u32 access_flags; |
| 334 | u32 hw_access_flags = 0; |
| 335 | |
| 336 | if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) |
| 337 | dest_rd_atomic = attr->max_dest_rd_atomic; |
| 338 | else |
| 339 | dest_rd_atomic = qp->resp_depth; |
| 340 | |
| 341 | if (attr_mask & IB_QP_ACCESS_FLAGS) |
| 342 | access_flags = attr->qp_access_flags; |
| 343 | else |
| 344 | access_flags = qp->atomic_rd_en; |
| 345 | |
| 346 | if (!dest_rd_atomic) |
| 347 | access_flags &= IB_ACCESS_REMOTE_WRITE; |
| 348 | |
| 349 | if (access_flags & IB_ACCESS_REMOTE_READ) |
| 350 | hw_access_flags |= MTHCA_QP_BIT_RRE; |
| 351 | if (access_flags & IB_ACCESS_REMOTE_ATOMIC) |
| 352 | hw_access_flags |= MTHCA_QP_BIT_RAE; |
| 353 | if (access_flags & IB_ACCESS_REMOTE_WRITE) |
| 354 | hw_access_flags |= MTHCA_QP_BIT_RWE; |
| 355 | |
| 356 | return cpu_to_be32(hw_access_flags); |
| 357 | } |
| 358 | |
Eli Cohen | 8ebe507 | 2006-02-13 16:40:21 -0800 | [diff] [blame] | 359 | static inline enum ib_qp_state to_ib_qp_state(int mthca_state) |
| 360 | { |
| 361 | switch (mthca_state) { |
| 362 | case MTHCA_QP_STATE_RST: return IB_QPS_RESET; |
| 363 | case MTHCA_QP_STATE_INIT: return IB_QPS_INIT; |
| 364 | case MTHCA_QP_STATE_RTR: return IB_QPS_RTR; |
| 365 | case MTHCA_QP_STATE_RTS: return IB_QPS_RTS; |
| 366 | case MTHCA_QP_STATE_DRAINING: |
| 367 | case MTHCA_QP_STATE_SQD: return IB_QPS_SQD; |
| 368 | case MTHCA_QP_STATE_SQE: return IB_QPS_SQE; |
| 369 | case MTHCA_QP_STATE_ERR: return IB_QPS_ERR; |
| 370 | default: return -1; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | static inline enum ib_mig_state to_ib_mig_state(int mthca_mig_state) |
| 375 | { |
| 376 | switch (mthca_mig_state) { |
| 377 | case 0: return IB_MIG_ARMED; |
| 378 | case 1: return IB_MIG_REARM; |
| 379 | case 3: return IB_MIG_MIGRATED; |
| 380 | default: return -1; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | static int to_ib_qp_access_flags(int mthca_flags) |
| 385 | { |
| 386 | int ib_flags = 0; |
| 387 | |
| 388 | if (mthca_flags & MTHCA_QP_BIT_RRE) |
| 389 | ib_flags |= IB_ACCESS_REMOTE_READ; |
| 390 | if (mthca_flags & MTHCA_QP_BIT_RWE) |
| 391 | ib_flags |= IB_ACCESS_REMOTE_WRITE; |
| 392 | if (mthca_flags & MTHCA_QP_BIT_RAE) |
| 393 | ib_flags |= IB_ACCESS_REMOTE_ATOMIC; |
| 394 | |
| 395 | return ib_flags; |
| 396 | } |
| 397 | |
| 398 | static void to_ib_ah_attr(struct mthca_dev *dev, struct ib_ah_attr *ib_ah_attr, |
| 399 | struct mthca_qp_path *path) |
| 400 | { |
| 401 | memset(ib_ah_attr, 0, sizeof *path); |
| 402 | ib_ah_attr->port_num = (be32_to_cpu(path->port_pkey) >> 24) & 0x3; |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 403 | |
| 404 | if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->limits.num_ports) |
| 405 | return; |
| 406 | |
Eli Cohen | 8ebe507 | 2006-02-13 16:40:21 -0800 | [diff] [blame] | 407 | ib_ah_attr->dlid = be16_to_cpu(path->rlid); |
| 408 | ib_ah_attr->sl = be32_to_cpu(path->sl_tclass_flowlabel) >> 28; |
| 409 | ib_ah_attr->src_path_bits = path->g_mylmc & 0x7f; |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 410 | ib_ah_attr->static_rate = mthca_rate_to_ib(dev, |
| 411 | path->static_rate & 0x7, |
| 412 | ib_ah_attr->port_num); |
Eli Cohen | 8ebe507 | 2006-02-13 16:40:21 -0800 | [diff] [blame] | 413 | ib_ah_attr->ah_flags = (path->g_mylmc & (1 << 7)) ? IB_AH_GRH : 0; |
| 414 | if (ib_ah_attr->ah_flags) { |
| 415 | ib_ah_attr->grh.sgid_index = path->mgid_index & (dev->limits.gid_table_len - 1); |
| 416 | ib_ah_attr->grh.hop_limit = path->hop_limit; |
| 417 | ib_ah_attr->grh.traffic_class = |
| 418 | (be32_to_cpu(path->sl_tclass_flowlabel) >> 20) & 0xff; |
| 419 | ib_ah_attr->grh.flow_label = |
| 420 | be32_to_cpu(path->sl_tclass_flowlabel) & 0xfffff; |
| 421 | memcpy(ib_ah_attr->grh.dgid.raw, |
| 422 | path->rgid, sizeof ib_ah_attr->grh.dgid.raw); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | int mthca_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask, |
| 427 | struct ib_qp_init_attr *qp_init_attr) |
| 428 | { |
| 429 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 430 | struct mthca_qp *qp = to_mqp(ibqp); |
| 431 | int err; |
| 432 | struct mthca_mailbox *mailbox; |
| 433 | struct mthca_qp_param *qp_param; |
| 434 | struct mthca_qp_context *context; |
| 435 | int mthca_state; |
| 436 | u8 status; |
| 437 | |
| 438 | mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); |
| 439 | if (IS_ERR(mailbox)) |
| 440 | return PTR_ERR(mailbox); |
| 441 | |
| 442 | err = mthca_QUERY_QP(dev, qp->qpn, 0, mailbox, &status); |
| 443 | if (err) |
| 444 | goto out; |
| 445 | if (status) { |
| 446 | mthca_warn(dev, "QUERY_QP returned status %02x\n", status); |
| 447 | err = -EINVAL; |
| 448 | goto out; |
| 449 | } |
| 450 | |
| 451 | qp_param = mailbox->buf; |
| 452 | context = &qp_param->context; |
| 453 | mthca_state = be32_to_cpu(context->flags) >> 28; |
| 454 | |
| 455 | qp_attr->qp_state = to_ib_qp_state(mthca_state); |
| 456 | qp_attr->cur_qp_state = qp_attr->qp_state; |
| 457 | qp_attr->path_mtu = context->mtu_msgmax >> 5; |
| 458 | qp_attr->path_mig_state = |
| 459 | to_ib_mig_state((be32_to_cpu(context->flags) >> 11) & 0x3); |
| 460 | qp_attr->qkey = be32_to_cpu(context->qkey); |
| 461 | qp_attr->rq_psn = be32_to_cpu(context->rnr_nextrecvpsn) & 0xffffff; |
| 462 | qp_attr->sq_psn = be32_to_cpu(context->next_send_psn) & 0xffffff; |
| 463 | qp_attr->dest_qp_num = be32_to_cpu(context->remote_qpn) & 0xffffff; |
| 464 | qp_attr->qp_access_flags = |
| 465 | to_ib_qp_access_flags(be32_to_cpu(context->params2)); |
| 466 | qp_attr->cap.max_send_wr = qp->sq.max; |
| 467 | qp_attr->cap.max_recv_wr = qp->rq.max; |
| 468 | qp_attr->cap.max_send_sge = qp->sq.max_gs; |
| 469 | qp_attr->cap.max_recv_sge = qp->rq.max_gs; |
| 470 | qp_attr->cap.max_inline_data = qp->max_inline_data; |
| 471 | |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 472 | if (qp->transport == RC || qp->transport == UC) { |
| 473 | to_ib_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path); |
| 474 | to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path); |
| 475 | } |
Eli Cohen | 8ebe507 | 2006-02-13 16:40:21 -0800 | [diff] [blame] | 476 | |
| 477 | qp_attr->pkey_index = be32_to_cpu(context->pri_path.port_pkey) & 0x7f; |
| 478 | qp_attr->alt_pkey_index = be32_to_cpu(context->alt_path.port_pkey) & 0x7f; |
| 479 | |
| 480 | /* qp_attr->en_sqd_async_notify is only applicable in modify qp */ |
| 481 | qp_attr->sq_draining = mthca_state == MTHCA_QP_STATE_DRAINING; |
| 482 | |
| 483 | qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context->params1) >> 21) & 0x7); |
| 484 | |
| 485 | qp_attr->max_dest_rd_atomic = |
| 486 | 1 << ((be32_to_cpu(context->params2) >> 21) & 0x7); |
| 487 | qp_attr->min_rnr_timer = |
| 488 | (be32_to_cpu(context->rnr_nextrecvpsn) >> 24) & 0x1f; |
| 489 | qp_attr->port_num = qp_attr->ah_attr.port_num; |
| 490 | qp_attr->timeout = context->pri_path.ackto >> 3; |
| 491 | qp_attr->retry_cnt = (be32_to_cpu(context->params1) >> 16) & 0x7; |
| 492 | qp_attr->rnr_retry = context->pri_path.rnr_retry >> 5; |
| 493 | qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num; |
| 494 | qp_attr->alt_timeout = context->alt_path.ackto >> 3; |
| 495 | qp_init_attr->cap = qp_attr->cap; |
| 496 | |
| 497 | out: |
| 498 | mthca_free_mailbox(dev, mailbox); |
| 499 | return err; |
| 500 | } |
| 501 | |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 502 | static int mthca_path_set(struct mthca_dev *dev, struct ib_ah_attr *ah, |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 503 | struct mthca_qp_path *path, u8 port) |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 504 | { |
| 505 | path->g_mylmc = ah->src_path_bits & 0x7f; |
| 506 | path->rlid = cpu_to_be16(ah->dlid); |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 507 | path->static_rate = mthca_get_rate(dev, ah->static_rate, port); |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 508 | |
| 509 | if (ah->ah_flags & IB_AH_GRH) { |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 510 | if (ah->grh.sgid_index >= dev->limits.gid_table_len) { |
| 511 | mthca_dbg(dev, "sgid_index (%u) too large. max is %d\n", |
| 512 | ah->grh.sgid_index, dev->limits.gid_table_len-1); |
| 513 | return -1; |
| 514 | } |
| 515 | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 516 | path->g_mylmc |= 1 << 7; |
| 517 | path->mgid_index = ah->grh.sgid_index; |
| 518 | path->hop_limit = ah->grh.hop_limit; |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 519 | path->sl_tclass_flowlabel = |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 520 | cpu_to_be32((ah->sl << 28) | |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 521 | (ah->grh.traffic_class << 20) | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 522 | (ah->grh.flow_label)); |
| 523 | memcpy(path->rgid, ah->grh.dgid.raw, 16); |
| 524 | } else |
| 525 | path->sl_tclass_flowlabel = cpu_to_be32(ah->sl << 28); |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 526 | |
| 527 | return 0; |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 528 | } |
| 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask) |
| 531 | { |
| 532 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 533 | struct mthca_qp *qp = to_mqp(ibqp); |
| 534 | enum ib_qp_state cur_state, new_state; |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 535 | struct mthca_mailbox *mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | struct mthca_qp_param *qp_param; |
| 537 | struct mthca_qp_context *qp_context; |
Roland Dreier | 3fa1fa3 | 2006-02-03 14:53:28 -0800 | [diff] [blame] | 538 | u32 sqd_event = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | u8 status; |
Roland Dreier | c9c5d9f | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 540 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 542 | mutex_lock(&qp->mutex); |
| 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (attr_mask & IB_QP_CUR_STATE) { |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 545 | cur_state = attr->cur_qp_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } else { |
| 547 | spin_lock_irq(&qp->sq.lock); |
| 548 | spin_lock(&qp->rq.lock); |
| 549 | cur_state = qp->state; |
| 550 | spin_unlock(&qp->rq.lock); |
| 551 | spin_unlock_irq(&qp->sq.lock); |
| 552 | } |
| 553 | |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 554 | new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 556 | if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type, attr_mask)) { |
| 557 | mthca_dbg(dev, "Bad QP transition (transport %d) " |
| 558 | "%d->%d with attr 0x%08x\n", |
| 559 | qp->transport, cur_state, new_state, |
| 560 | attr_mask); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 561 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | } |
| 563 | |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 564 | if ((attr_mask & IB_QP_PKEY_INDEX) && |
Jack Morgenstein | d09e327 | 2005-11-03 14:58:33 -0800 | [diff] [blame] | 565 | attr->pkey_index >= dev->limits.pkey_table_len) { |
Dotan Barak | 67e7377 | 2006-03-01 14:28:12 -0800 | [diff] [blame] | 566 | mthca_dbg(dev, "P_Key index (%u) too large. max is %d\n", |
| 567 | attr->pkey_index, dev->limits.pkey_table_len-1); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 568 | goto out; |
Jack Morgenstein | d09e327 | 2005-11-03 14:58:33 -0800 | [diff] [blame] | 569 | } |
| 570 | |
Jack Morgenstein | 38d1e79 | 2006-01-05 16:13:46 -0800 | [diff] [blame] | 571 | if ((attr_mask & IB_QP_PORT) && |
| 572 | (attr->port_num == 0 || attr->port_num > dev->limits.num_ports)) { |
| 573 | mthca_dbg(dev, "Port number (%u) is invalid\n", attr->port_num); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 574 | goto out; |
Jack Morgenstein | 38d1e79 | 2006-01-05 16:13:46 -0800 | [diff] [blame] | 575 | } |
| 576 | |
Jack Morgenstein | 94361cf | 2005-12-09 16:32:21 -0800 | [diff] [blame] | 577 | if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC && |
| 578 | attr->max_rd_atomic > dev->limits.max_qp_init_rdma) { |
| 579 | mthca_dbg(dev, "Max rdma_atomic as initiator %u too large (max is %d)\n", |
| 580 | attr->max_rd_atomic, dev->limits.max_qp_init_rdma); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 581 | goto out; |
Jack Morgenstein | 94361cf | 2005-12-09 16:32:21 -0800 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC && |
| 585 | attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) { |
| 586 | mthca_dbg(dev, "Max rdma_atomic as responder %u too large (max %d)\n", |
| 587 | attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 588 | goto out; |
Jack Morgenstein | 94361cf | 2005-12-09 16:32:21 -0800 | [diff] [blame] | 589 | } |
| 590 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 591 | mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 592 | if (IS_ERR(mailbox)) { |
| 593 | err = PTR_ERR(mailbox); |
| 594 | goto out; |
| 595 | } |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 596 | qp_param = mailbox->buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | qp_context = &qp_param->context; |
| 598 | memset(qp_param, 0, sizeof *qp_param); |
| 599 | |
| 600 | qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) | |
| 601 | (to_mthca_st(qp->transport) << 16)); |
| 602 | qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE); |
| 603 | if (!(attr_mask & IB_QP_PATH_MIG_STATE)) |
| 604 | qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11); |
| 605 | else { |
| 606 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE); |
| 607 | switch (attr->path_mig_state) { |
| 608 | case IB_MIG_MIGRATED: |
| 609 | qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11); |
| 610 | break; |
| 611 | case IB_MIG_REARM: |
| 612 | qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11); |
| 613 | break; |
| 614 | case IB_MIG_ARMED: |
| 615 | qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11); |
| 616 | break; |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | /* leave tavor_sched_queue as 0 */ |
| 621 | |
| 622 | if (qp->transport == MLX || qp->transport == UD) |
| 623 | qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11; |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 624 | else if (attr_mask & IB_QP_PATH_MTU) { |
| 625 | if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_2048) { |
| 626 | mthca_dbg(dev, "path MTU (%u) is invalid\n", |
| 627 | attr->path_mtu); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 628 | goto out_mailbox; |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 629 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31; |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 631 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 633 | if (mthca_is_memfree(dev)) { |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 634 | if (qp->rq.max) |
| 635 | qp_context->rq_size_stride = long_log2(qp->rq.max) << 3; |
| 636 | qp_context->rq_size_stride |= qp->rq.wqe_shift - 4; |
| 637 | |
| 638 | if (qp->sq.max) |
| 639 | qp_context->sq_size_stride = long_log2(qp->sq.max) << 3; |
| 640 | qp_context->sq_size_stride |= qp->sq.wqe_shift - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /* leave arbel_sched_queue as 0 */ |
| 644 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 645 | if (qp->ibqp.uobject) |
| 646 | qp_context->usr_page = |
| 647 | cpu_to_be32(to_mucontext(qp->ibqp.uobject->context)->uar.index); |
| 648 | else |
| 649 | qp_context->usr_page = cpu_to_be32(dev->driver_uar.index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | qp_context->local_qpn = cpu_to_be32(qp->qpn); |
| 651 | if (attr_mask & IB_QP_DEST_QPN) { |
| 652 | qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num); |
| 653 | } |
| 654 | |
| 655 | if (qp->transport == MLX) |
| 656 | qp_context->pri_path.port_pkey |= |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 657 | cpu_to_be32(qp->port << 24); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | else { |
| 659 | if (attr_mask & IB_QP_PORT) { |
| 660 | qp_context->pri_path.port_pkey |= |
| 661 | cpu_to_be32(attr->port_num << 24); |
| 662 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | if (attr_mask & IB_QP_PKEY_INDEX) { |
| 667 | qp_context->pri_path.port_pkey |= |
| 668 | cpu_to_be32(attr->pkey_index); |
| 669 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX); |
| 670 | } |
| 671 | |
| 672 | if (attr_mask & IB_QP_RNR_RETRY) { |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 673 | qp_context->alt_path.rnr_retry = qp_context->pri_path.rnr_retry = |
| 674 | attr->rnr_retry << 5; |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 675 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 676 | MTHCA_QP_OPTPAR_ALT_RNR_RETRY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | if (attr_mask & IB_QP_AV) { |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 680 | if (mthca_path_set(dev, &attr->ah_attr, &qp_context->pri_path, |
| 681 | attr_mask & IB_QP_PORT ? attr->port_num : qp->port)) |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 682 | goto out_mailbox; |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH); |
| 685 | } |
| 686 | |
| 687 | if (attr_mask & IB_QP_TIMEOUT) { |
Roland Dreier | bb4a7f0 | 2005-09-12 14:08:51 -0700 | [diff] [blame] | 688 | qp_context->pri_path.ackto = attr->timeout << 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT); |
| 690 | } |
| 691 | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 692 | if (attr_mask & IB_QP_ALT_PATH) { |
Dotan Barak | 67e7377 | 2006-03-01 14:28:12 -0800 | [diff] [blame] | 693 | if (attr->alt_pkey_index >= dev->limits.pkey_table_len) { |
| 694 | mthca_dbg(dev, "Alternate P_Key index (%u) too large. max is %d\n", |
| 695 | attr->alt_pkey_index, dev->limits.pkey_table_len-1); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 696 | goto out_mailbox; |
Dotan Barak | 67e7377 | 2006-03-01 14:28:12 -0800 | [diff] [blame] | 697 | } |
| 698 | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 699 | if (attr->alt_port_num == 0 || attr->alt_port_num > dev->limits.num_ports) { |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 700 | mthca_dbg(dev, "Alternate port number (%u) is invalid\n", |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 701 | attr->alt_port_num); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 702 | goto out_mailbox; |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 703 | } |
| 704 | |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 705 | if (mthca_path_set(dev, &attr->alt_ah_attr, &qp_context->alt_path, |
| 706 | attr->alt_ah_attr.port_num)) |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 707 | goto out_mailbox; |
Dotan Barak | 0ef61db | 2006-03-19 17:20:36 +0200 | [diff] [blame] | 708 | |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 709 | qp_context->alt_path.port_pkey |= cpu_to_be32(attr->alt_pkey_index | |
Dotan Barak | 4de144b | 2006-01-06 13:23:58 -0800 | [diff] [blame] | 710 | attr->alt_port_num << 24); |
| 711 | qp_context->alt_path.ackto = attr->alt_timeout << 3; |
| 712 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ALT_ADDR_PATH); |
| 713 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
| 715 | /* leave rdd as 0 */ |
| 716 | qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num); |
| 717 | /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */ |
| 718 | qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey); |
| 719 | qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) | |
| 720 | (MTHCA_FLIGHT_LIMIT << 24) | |
Jack Morgenstein | c4342d8 | 2005-12-15 19:59:01 -0800 | [diff] [blame] | 721 | MTHCA_QP_BIT_SWE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | if (qp->sq_policy == IB_SIGNAL_ALL_WR) |
| 723 | qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC); |
| 724 | if (attr_mask & IB_QP_RETRY_CNT) { |
| 725 | qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16); |
| 726 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT); |
| 727 | } |
| 728 | |
Roland Dreier | 34a4a75 | 2005-06-27 14:36:41 -0700 | [diff] [blame] | 729 | if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) { |
Jack Morgenstein | c4342d8 | 2005-12-15 19:59:01 -0800 | [diff] [blame] | 730 | if (attr->max_rd_atomic) { |
| 731 | qp_context->params1 |= |
| 732 | cpu_to_be32(MTHCA_QP_BIT_SRE | |
| 733 | MTHCA_QP_BIT_SAE); |
Jack Morgenstein | 6aa2e4e | 2005-12-09 16:38:04 -0800 | [diff] [blame] | 734 | qp_context->params1 |= |
| 735 | cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21); |
Jack Morgenstein | c4342d8 | 2005-12-15 19:59:01 -0800 | [diff] [blame] | 736 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX); |
| 738 | } |
| 739 | |
| 740 | if (attr_mask & IB_QP_SQ_PSN) |
| 741 | qp_context->next_send_psn = cpu_to_be32(attr->sq_psn); |
| 742 | qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn); |
| 743 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 744 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset); |
| 746 | qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index); |
| 747 | } |
| 748 | |
Roland Dreier | 34a4a75 | 2005-06-27 14:36:41 -0700 | [diff] [blame] | 749 | if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) { |
Jack Morgenstein | 6aa2e4e | 2005-12-09 16:38:04 -0800 | [diff] [blame] | 750 | if (attr->max_dest_rd_atomic) |
| 751 | qp_context->params2 |= |
| 752 | cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | } |
| 756 | |
Jack Morgenstein | d1646f8 | 2005-12-15 14:36:24 -0800 | [diff] [blame] | 757 | if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) { |
| 758 | qp_context->params2 |= get_hw_access_flags(qp, attr, attr_mask); |
| 759 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE | |
| 760 | MTHCA_QP_OPTPAR_RRE | |
| 761 | MTHCA_QP_OPTPAR_RAE); |
| 762 | } |
| 763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC); |
| 765 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 766 | if (ibqp->srq) |
| 767 | qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC); |
| 768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | if (attr_mask & IB_QP_MIN_RNR_TIMER) { |
| 770 | qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24); |
| 771 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT); |
| 772 | } |
| 773 | if (attr_mask & IB_QP_RQ_PSN) |
| 774 | qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn); |
| 775 | |
| 776 | qp_context->ra_buff_indx = |
| 777 | cpu_to_be32(dev->qp_table.rdb_base + |
| 778 | ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE << |
| 779 | dev->qp_table.rdb_shift)); |
| 780 | |
| 781 | qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn); |
| 782 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 783 | if (mthca_is_memfree(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index); |
| 785 | |
| 786 | if (attr_mask & IB_QP_QKEY) { |
| 787 | qp_context->qkey = cpu_to_be32(attr->qkey); |
| 788 | qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY); |
| 789 | } |
| 790 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 791 | if (ibqp->srq) |
| 792 | qp_context->srqn = cpu_to_be32(1 << 24 | |
| 793 | to_msrq(ibqp->srq)->srqn); |
| 794 | |
Roland Dreier | 3fa1fa3 | 2006-02-03 14:53:28 -0800 | [diff] [blame] | 795 | if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD && |
| 796 | attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && |
| 797 | attr->en_sqd_async_notify) |
| 798 | sqd_event = 1 << 31; |
| 799 | |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 800 | err = mthca_MODIFY_QP(dev, cur_state, new_state, qp->qpn, 0, |
| 801 | mailbox, sqd_event, &status); |
Roland Dreier | 192daa1 | 2006-03-24 15:47:30 -0800 | [diff] [blame] | 802 | if (err) |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 803 | goto out_mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | if (status) { |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 805 | mthca_warn(dev, "modify QP %d->%d returned status %02x.\n", |
| 806 | cur_state, new_state, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | err = -EINVAL; |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 808 | goto out_mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Roland Dreier | 192daa1 | 2006-03-24 15:47:30 -0800 | [diff] [blame] | 811 | qp->state = new_state; |
| 812 | if (attr_mask & IB_QP_ACCESS_FLAGS) |
| 813 | qp->atomic_rd_en = attr->qp_access_flags; |
| 814 | if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) |
| 815 | qp->resp_depth = attr->max_dest_rd_atomic; |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 816 | if (attr_mask & IB_QP_PORT) |
| 817 | qp->port = attr->port_num; |
| 818 | if (attr_mask & IB_QP_ALT_PATH) |
| 819 | qp->alt_port = attr->alt_port_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | if (is_sqp(dev, qp)) |
| 822 | store_attrs(to_msqp(qp), attr, attr_mask); |
| 823 | |
| 824 | /* |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 825 | * If we moved QP0 to RTR, bring the IB link up; if we moved |
| 826 | * QP0 to RESET or ERROR, bring the link back down. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | */ |
| 828 | if (is_qp0(dev, qp)) { |
| 829 | if (cur_state != IB_QPS_RTR && |
| 830 | new_state == IB_QPS_RTR) |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 831 | init_port(dev, qp->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
| 833 | if (cur_state != IB_QPS_RESET && |
| 834 | cur_state != IB_QPS_ERR && |
| 835 | (new_state == IB_QPS_RESET || |
| 836 | new_state == IB_QPS_ERR)) |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 837 | mthca_CLOSE_IB(dev, qp->port, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 840 | /* |
| 841 | * If we moved a kernel QP to RESET, clean up all old CQ |
| 842 | * entries and reinitialize the QP. |
| 843 | */ |
Roland Dreier | 192daa1 | 2006-03-24 15:47:30 -0800 | [diff] [blame] | 844 | if (new_state == IB_QPS_RESET && !qp->ibqp.uobject) { |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 845 | mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq), qp->qpn, |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 846 | qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL); |
| 847 | if (qp->ibqp.send_cq != qp->ibqp.recv_cq) |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 848 | mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq), qp->qpn, |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 849 | qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL); |
| 850 | |
Michael S. Tsirkin | 0964d91 | 2006-07-14 00:23:51 -0700 | [diff] [blame] | 851 | mthca_wq_reset(&qp->sq); |
Michael S. Tsirkin | 187a258 | 2005-11-28 11:19:43 -0800 | [diff] [blame] | 852 | qp->sq.last = get_send_wqe(qp, qp->sq.max - 1); |
| 853 | |
Michael S. Tsirkin | 0964d91 | 2006-07-14 00:23:51 -0700 | [diff] [blame] | 854 | mthca_wq_reset(&qp->rq); |
Michael S. Tsirkin | 187a258 | 2005-11-28 11:19:43 -0800 | [diff] [blame] | 855 | qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1); |
Roland Dreier | c9fe2b3 | 2005-09-07 09:43:23 -0700 | [diff] [blame] | 856 | |
| 857 | if (mthca_is_memfree(dev)) { |
| 858 | *qp->sq.db = 0; |
| 859 | *qp->rq.db = 0; |
| 860 | } |
| 861 | } |
| 862 | |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 863 | out_mailbox: |
Roland Dreier | 192daa1 | 2006-03-24 15:47:30 -0800 | [diff] [blame] | 864 | mthca_free_mailbox(dev, mailbox); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 865 | |
| 866 | out: |
| 867 | mutex_unlock(&qp->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | return err; |
| 869 | } |
| 870 | |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 871 | static int mthca_max_data_size(struct mthca_dev *dev, struct mthca_qp *qp, int desc_sz) |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 872 | { |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 873 | /* |
| 874 | * Calculate the maximum size of WQE s/g segments, excluding |
| 875 | * the next segment and other non-data segments. |
| 876 | */ |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 877 | int max_data_size = desc_sz - sizeof (struct mthca_next_seg); |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 878 | |
| 879 | switch (qp->transport) { |
| 880 | case MLX: |
| 881 | max_data_size -= 2 * sizeof (struct mthca_data_seg); |
| 882 | break; |
| 883 | |
| 884 | case UD: |
| 885 | if (mthca_is_memfree(dev)) |
| 886 | max_data_size -= sizeof (struct mthca_arbel_ud_seg); |
| 887 | else |
| 888 | max_data_size -= sizeof (struct mthca_tavor_ud_seg); |
| 889 | break; |
| 890 | |
| 891 | default: |
| 892 | max_data_size -= sizeof (struct mthca_raddr_seg); |
| 893 | break; |
| 894 | } |
| 895 | |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 896 | return max_data_size; |
| 897 | } |
| 898 | |
| 899 | static inline int mthca_max_inline_data(struct mthca_pd *pd, int max_data_size) |
| 900 | { |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 901 | /* We don't support inline data for kernel QPs (yet). */ |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 902 | return pd->ibpd.uobject ? max_data_size - MTHCA_INLINE_HEADER_SIZE : 0; |
| 903 | } |
| 904 | |
| 905 | static void mthca_adjust_qp_caps(struct mthca_dev *dev, |
| 906 | struct mthca_pd *pd, |
| 907 | struct mthca_qp *qp) |
| 908 | { |
| 909 | int max_data_size = mthca_max_data_size(dev, qp, |
| 910 | min(dev->limits.max_desc_sz, |
| 911 | 1 << qp->sq.wqe_shift)); |
| 912 | |
| 913 | qp->max_inline_data = mthca_max_inline_data(pd, max_data_size); |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 914 | |
Michael S. Tsirkin | 48fd0d1 | 2005-11-18 14:11:17 -0800 | [diff] [blame] | 915 | qp->sq.max_gs = min_t(int, dev->limits.max_sg, |
| 916 | max_data_size / sizeof (struct mthca_data_seg)); |
| 917 | qp->rq.max_gs = min_t(int, dev->limits.max_sg, |
| 918 | (min(dev->limits.max_desc_sz, 1 << qp->rq.wqe_shift) - |
| 919 | sizeof (struct mthca_next_seg)) / |
| 920 | sizeof (struct mthca_data_seg)); |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 921 | } |
| 922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | /* |
| 924 | * Allocate and register buffer for WQEs. qp->rq.max, sq.max, |
| 925 | * rq.max_gs and sq.max_gs must all be assigned. |
| 926 | * mthca_alloc_wqe_buf will calculate rq.wqe_shift and |
| 927 | * sq.wqe_shift (as well as send_wqe_offset, is_direct, and |
| 928 | * queue) |
| 929 | */ |
| 930 | static int mthca_alloc_wqe_buf(struct mthca_dev *dev, |
| 931 | struct mthca_pd *pd, |
| 932 | struct mthca_qp *qp) |
| 933 | { |
| 934 | int size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | int err = -ENOMEM; |
| 936 | |
| 937 | size = sizeof (struct mthca_next_seg) + |
| 938 | qp->rq.max_gs * sizeof (struct mthca_data_seg); |
| 939 | |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 940 | if (size > dev->limits.max_desc_sz) |
| 941 | return -EINVAL; |
| 942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size; |
| 944 | qp->rq.wqe_shift++) |
| 945 | ; /* nothing */ |
| 946 | |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 947 | size = qp->sq.max_gs * sizeof (struct mthca_data_seg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | switch (qp->transport) { |
| 949 | case MLX: |
| 950 | size += 2 * sizeof (struct mthca_data_seg); |
| 951 | break; |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | case UD: |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 954 | size += mthca_is_memfree(dev) ? |
| 955 | sizeof (struct mthca_arbel_ud_seg) : |
| 956 | sizeof (struct mthca_tavor_ud_seg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | break; |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 958 | |
| 959 | case UC: |
| 960 | size += sizeof (struct mthca_raddr_seg); |
| 961 | break; |
| 962 | |
| 963 | case RC: |
| 964 | size += sizeof (struct mthca_raddr_seg); |
| 965 | /* |
| 966 | * An atomic op will require an atomic segment, a |
| 967 | * remote address segment and one scatter entry. |
| 968 | */ |
| 969 | size = max_t(int, size, |
| 970 | sizeof (struct mthca_atomic_seg) + |
| 971 | sizeof (struct mthca_raddr_seg) + |
| 972 | sizeof (struct mthca_data_seg)); |
| 973 | break; |
| 974 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | default: |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 976 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
| 978 | |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 979 | /* Make sure that we have enough space for a bind request */ |
| 980 | size = max_t(int, size, sizeof (struct mthca_bind_seg)); |
| 981 | |
| 982 | size += sizeof (struct mthca_next_seg); |
| 983 | |
| 984 | if (size > dev->limits.max_desc_sz) |
| 985 | return -EINVAL; |
| 986 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size; |
| 988 | qp->sq.wqe_shift++) |
| 989 | ; /* nothing */ |
| 990 | |
| 991 | qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift, |
| 992 | 1 << qp->sq.wqe_shift); |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 993 | |
| 994 | /* |
| 995 | * If this is a userspace QP, we don't actually have to |
| 996 | * allocate anything. All we need is to calculate the WQE |
| 997 | * sizes and the send_wqe_offset, so we're done now. |
| 998 | */ |
| 999 | if (pd->ibpd.uobject) |
| 1000 | return 0; |
| 1001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | size = PAGE_ALIGN(qp->send_wqe_offset + |
| 1003 | (qp->sq.max << qp->sq.wqe_shift)); |
| 1004 | |
| 1005 | qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64), |
| 1006 | GFP_KERNEL); |
| 1007 | if (!qp->wrid) |
| 1008 | goto err_out; |
| 1009 | |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 1010 | err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE, |
| 1011 | &qp->queue, &qp->is_direct, pd, 0, &qp->mr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | if (err) |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 1013 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | return 0; |
| 1016 | |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 1017 | err_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | kfree(qp->wrid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | return err; |
| 1020 | } |
| 1021 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1022 | static void mthca_free_wqe_buf(struct mthca_dev *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | struct mthca_qp *qp) |
| 1024 | { |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 1025 | mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset + |
| 1026 | (qp->sq.max << qp->sq.wqe_shift)), |
| 1027 | &qp->queue, qp->is_direct, &qp->mr); |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1028 | kfree(qp->wrid); |
| 1029 | } |
| 1030 | |
| 1031 | static int mthca_map_memfree(struct mthca_dev *dev, |
| 1032 | struct mthca_qp *qp) |
| 1033 | { |
| 1034 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 1036 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn); |
| 1038 | if (ret) |
| 1039 | return ret; |
| 1040 | |
| 1041 | ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn); |
| 1042 | if (ret) |
| 1043 | goto err_qpc; |
| 1044 | |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 1045 | ret = mthca_table_get(dev, dev->qp_table.rdb_table, |
| 1046 | qp->qpn << dev->qp_table.rdb_shift); |
| 1047 | if (ret) |
| 1048 | goto err_eqpc; |
Roland Dreier | 08aeb14 | 2005-04-16 15:26:34 -0700 | [diff] [blame] | 1049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | return 0; |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | err_eqpc: |
| 1055 | mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); |
| 1056 | |
| 1057 | err_qpc: |
| 1058 | mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); |
| 1059 | |
| 1060 | return ret; |
| 1061 | } |
| 1062 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1063 | static void mthca_unmap_memfree(struct mthca_dev *dev, |
| 1064 | struct mthca_qp *qp) |
| 1065 | { |
| 1066 | mthca_table_put(dev, dev->qp_table.rdb_table, |
| 1067 | qp->qpn << dev->qp_table.rdb_shift); |
| 1068 | mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); |
| 1069 | mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); |
| 1070 | } |
| 1071 | |
| 1072 | static int mthca_alloc_memfree(struct mthca_dev *dev, |
| 1073 | struct mthca_qp *qp) |
| 1074 | { |
| 1075 | int ret = 0; |
| 1076 | |
| 1077 | if (mthca_is_memfree(dev)) { |
| 1078 | qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ, |
| 1079 | qp->qpn, &qp->rq.db); |
| 1080 | if (qp->rq.db_index < 0) |
| 1081 | return ret; |
| 1082 | |
| 1083 | qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ, |
| 1084 | qp->qpn, &qp->sq.db); |
| 1085 | if (qp->sq.db_index < 0) |
| 1086 | mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index); |
| 1087 | } |
| 1088 | |
| 1089 | return ret; |
| 1090 | } |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | static void mthca_free_memfree(struct mthca_dev *dev, |
| 1093 | struct mthca_qp *qp) |
| 1094 | { |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 1095 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index); |
| 1097 | mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | } |
| 1099 | } |
| 1100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | static int mthca_alloc_qp_common(struct mthca_dev *dev, |
| 1102 | struct mthca_pd *pd, |
| 1103 | struct mthca_cq *send_cq, |
| 1104 | struct mthca_cq *recv_cq, |
| 1105 | enum ib_sig_type send_policy, |
| 1106 | struct mthca_qp *qp) |
| 1107 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | int ret; |
| 1109 | int i; |
| 1110 | |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1111 | qp->refcount = 1; |
Michael S. Tsirkin | 30a7e8e | 2005-09-07 09:45:00 -0700 | [diff] [blame] | 1112 | init_waitqueue_head(&qp->wait); |
Roland Dreier | c93b6fb | 2006-06-17 20:37:41 -0700 | [diff] [blame] | 1113 | mutex_init(&qp->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | qp->state = IB_QPS_RESET; |
| 1115 | qp->atomic_rd_en = 0; |
| 1116 | qp->resp_depth = 0; |
| 1117 | qp->sq_policy = send_policy; |
Michael S. Tsirkin | 0964d91 | 2006-07-14 00:23:51 -0700 | [diff] [blame] | 1118 | mthca_wq_reset(&qp->sq); |
| 1119 | mthca_wq_reset(&qp->rq); |
| 1120 | |
Zach Brown | a46f948 | 2006-07-04 02:57:52 -0700 | [diff] [blame] | 1121 | spin_lock_init(&qp->sq.lock); |
| 1122 | spin_lock_init(&qp->rq.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1124 | ret = mthca_map_memfree(dev, qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | if (ret) |
| 1126 | return ret; |
| 1127 | |
| 1128 | ret = mthca_alloc_wqe_buf(dev, pd, qp); |
| 1129 | if (ret) { |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1130 | mthca_unmap_memfree(dev, qp); |
| 1131 | return ret; |
| 1132 | } |
| 1133 | |
Jack Morgenstein | 77369ed | 2005-11-09 11:26:07 -0800 | [diff] [blame] | 1134 | mthca_adjust_qp_caps(dev, pd, qp); |
| 1135 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1136 | /* |
| 1137 | * If this is a userspace QP, we're done now. The doorbells |
| 1138 | * will be allocated and buffers will be initialized in |
| 1139 | * userspace. |
| 1140 | */ |
| 1141 | if (pd->ibpd.uobject) |
| 1142 | return 0; |
| 1143 | |
| 1144 | ret = mthca_alloc_memfree(dev, qp); |
| 1145 | if (ret) { |
| 1146 | mthca_free_wqe_buf(dev, qp); |
| 1147 | mthca_unmap_memfree(dev, qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | return ret; |
| 1149 | } |
| 1150 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 1151 | if (mthca_is_memfree(dev)) { |
Roland Dreier | ddf841f | 2005-04-16 15:26:33 -0700 | [diff] [blame] | 1152 | struct mthca_next_seg *next; |
| 1153 | struct mthca_data_seg *scatter; |
| 1154 | int size = (sizeof (struct mthca_next_seg) + |
| 1155 | qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16; |
| 1156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | for (i = 0; i < qp->rq.max; ++i) { |
Roland Dreier | ddf841f | 2005-04-16 15:26:33 -0700 | [diff] [blame] | 1158 | next = get_recv_wqe(qp, i); |
| 1159 | next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) << |
| 1160 | qp->rq.wqe_shift); |
| 1161 | next->ee_nds = cpu_to_be32(size); |
| 1162 | |
| 1163 | for (scatter = (void *) (next + 1); |
| 1164 | (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift); |
| 1165 | ++scatter) |
| 1166 | scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | for (i = 0; i < qp->sq.max; ++i) { |
Roland Dreier | ddf841f | 2005-04-16 15:26:33 -0700 | [diff] [blame] | 1170 | next = get_send_wqe(qp, i); |
| 1171 | next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) << |
| 1172 | qp->sq.wqe_shift) + |
| 1173 | qp->send_wqe_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | } |
| 1175 | } |
| 1176 | |
Roland Dreier | d6cff02 | 2005-09-13 10:41:03 -0700 | [diff] [blame] | 1177 | qp->sq.last = get_send_wqe(qp, qp->sq.max - 1); |
| 1178 | qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1); |
| 1179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | return 0; |
| 1181 | } |
| 1182 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1183 | static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap, |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 1184 | struct mthca_pd *pd, struct mthca_qp *qp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | { |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 1186 | int max_data_size = mthca_max_data_size(dev, qp, dev->limits.max_desc_sz); |
| 1187 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1188 | /* Sanity check QP size before proceeding */ |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 1189 | if (cap->max_send_wr > dev->limits.max_wqes || |
| 1190 | cap->max_recv_wr > dev->limits.max_wqes || |
| 1191 | cap->max_send_sge > dev->limits.max_sg || |
| 1192 | cap->max_recv_sge > dev->limits.max_sg || |
| 1193 | cap->max_inline_data > mthca_max_inline_data(pd, max_data_size)) |
| 1194 | return -EINVAL; |
| 1195 | |
| 1196 | /* |
| 1197 | * For MLX transport we need 2 extra S/G entries: |
| 1198 | * one for the header and one for the checksum at the end |
| 1199 | */ |
| 1200 | if (qp->transport == MLX && cap->max_recv_sge + 2 > dev->limits.max_sg) |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1201 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1203 | if (mthca_is_memfree(dev)) { |
| 1204 | qp->rq.max = cap->max_recv_wr ? |
| 1205 | roundup_pow_of_two(cap->max_recv_wr) : 0; |
| 1206 | qp->sq.max = cap->max_send_wr ? |
| 1207 | roundup_pow_of_two(cap->max_send_wr) : 0; |
| 1208 | } else { |
| 1209 | qp->rq.max = cap->max_recv_wr; |
| 1210 | qp->sq.max = cap->max_send_wr; |
| 1211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1213 | qp->rq.max_gs = cap->max_recv_sge; |
| 1214 | qp->sq.max_gs = max_t(int, cap->max_send_sge, |
| 1215 | ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE, |
| 1216 | MTHCA_INLINE_CHUNK_SIZE) / |
| 1217 | sizeof (struct mthca_data_seg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1219 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
| 1222 | int mthca_alloc_qp(struct mthca_dev *dev, |
| 1223 | struct mthca_pd *pd, |
| 1224 | struct mthca_cq *send_cq, |
| 1225 | struct mthca_cq *recv_cq, |
| 1226 | enum ib_qp_type type, |
| 1227 | enum ib_sig_type send_policy, |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1228 | struct ib_qp_cap *cap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | struct mthca_qp *qp) |
| 1230 | { |
| 1231 | int err; |
| 1232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | switch (type) { |
| 1234 | case IB_QPT_RC: qp->transport = RC; break; |
| 1235 | case IB_QPT_UC: qp->transport = UC; break; |
| 1236 | case IB_QPT_UD: qp->transport = UD; break; |
| 1237 | default: return -EINVAL; |
| 1238 | } |
| 1239 | |
Jack Morgenstein | b3f6496 | 2006-03-22 09:52:31 +0200 | [diff] [blame] | 1240 | err = mthca_set_qp_size(dev, cap, pd, qp); |
| 1241 | if (err) |
| 1242 | return err; |
| 1243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | qp->qpn = mthca_alloc(&dev->qp_table.alloc); |
| 1245 | if (qp->qpn == -1) |
| 1246 | return -ENOMEM; |
| 1247 | |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 1248 | /* initialize port to zero for error-catching. */ |
| 1249 | qp->port = 0; |
| 1250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq, |
| 1252 | send_policy, qp); |
| 1253 | if (err) { |
| 1254 | mthca_free(&dev->qp_table.alloc, qp->qpn); |
| 1255 | return err; |
| 1256 | } |
| 1257 | |
| 1258 | spin_lock_irq(&dev->qp_table.lock); |
| 1259 | mthca_array_set(&dev->qp_table.qp, |
| 1260 | qp->qpn & (dev->limits.num_qps - 1), qp); |
| 1261 | spin_unlock_irq(&dev->qp_table.lock); |
| 1262 | |
| 1263 | return 0; |
| 1264 | } |
| 1265 | |
| 1266 | int mthca_alloc_sqp(struct mthca_dev *dev, |
| 1267 | struct mthca_pd *pd, |
| 1268 | struct mthca_cq *send_cq, |
| 1269 | struct mthca_cq *recv_cq, |
| 1270 | enum ib_sig_type send_policy, |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1271 | struct ib_qp_cap *cap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | int qpn, |
| 1273 | int port, |
| 1274 | struct mthca_sqp *sqp) |
| 1275 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1; |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1277 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | |
Jack Morgenstein | b3f6496 | 2006-03-22 09:52:31 +0200 | [diff] [blame] | 1279 | sqp->qp.transport = MLX; |
Jack Morgenstein | 5b3bc7a | 2006-01-06 12:57:30 -0800 | [diff] [blame] | 1280 | err = mthca_set_qp_size(dev, cap, pd, &sqp->qp); |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1281 | if (err) |
| 1282 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
| 1284 | sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE; |
| 1285 | sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size, |
| 1286 | &sqp->header_dma, GFP_KERNEL); |
| 1287 | if (!sqp->header_buf) |
| 1288 | return -ENOMEM; |
| 1289 | |
| 1290 | spin_lock_irq(&dev->qp_table.lock); |
| 1291 | if (mthca_array_get(&dev->qp_table.qp, mqpn)) |
| 1292 | err = -EBUSY; |
| 1293 | else |
| 1294 | mthca_array_set(&dev->qp_table.qp, mqpn, sqp); |
| 1295 | spin_unlock_irq(&dev->qp_table.lock); |
| 1296 | |
| 1297 | if (err) |
| 1298 | goto err_out; |
| 1299 | |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 1300 | sqp->qp.port = port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | sqp->qp.qpn = mqpn; |
| 1302 | sqp->qp.transport = MLX; |
| 1303 | |
| 1304 | err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq, |
| 1305 | send_policy, &sqp->qp); |
| 1306 | if (err) |
| 1307 | goto err_out_free; |
| 1308 | |
| 1309 | atomic_inc(&pd->sqp_count); |
| 1310 | |
| 1311 | return 0; |
| 1312 | |
| 1313 | err_out_free: |
| 1314 | /* |
| 1315 | * Lock CQs here, so that CQ polling code can do QP lookup |
| 1316 | * without taking a lock. |
| 1317 | */ |
| 1318 | spin_lock_irq(&send_cq->lock); |
| 1319 | if (send_cq != recv_cq) |
| 1320 | spin_lock(&recv_cq->lock); |
| 1321 | |
| 1322 | spin_lock(&dev->qp_table.lock); |
| 1323 | mthca_array_clear(&dev->qp_table.qp, mqpn); |
| 1324 | spin_unlock(&dev->qp_table.lock); |
| 1325 | |
| 1326 | if (send_cq != recv_cq) |
| 1327 | spin_unlock(&recv_cq->lock); |
| 1328 | spin_unlock_irq(&send_cq->lock); |
| 1329 | |
| 1330 | err_out: |
| 1331 | dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size, |
| 1332 | sqp->header_buf, sqp->header_dma); |
| 1333 | |
| 1334 | return err; |
| 1335 | } |
| 1336 | |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1337 | static inline int get_qp_refcount(struct mthca_dev *dev, struct mthca_qp *qp) |
| 1338 | { |
| 1339 | int c; |
| 1340 | |
| 1341 | spin_lock_irq(&dev->qp_table.lock); |
| 1342 | c = qp->refcount; |
| 1343 | spin_unlock_irq(&dev->qp_table.lock); |
| 1344 | |
| 1345 | return c; |
| 1346 | } |
| 1347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | void mthca_free_qp(struct mthca_dev *dev, |
| 1349 | struct mthca_qp *qp) |
| 1350 | { |
| 1351 | u8 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | struct mthca_cq *send_cq; |
| 1353 | struct mthca_cq *recv_cq; |
| 1354 | |
| 1355 | send_cq = to_mcq(qp->ibqp.send_cq); |
| 1356 | recv_cq = to_mcq(qp->ibqp.recv_cq); |
| 1357 | |
| 1358 | /* |
| 1359 | * Lock CQs here, so that CQ polling code can do QP lookup |
| 1360 | * without taking a lock. |
| 1361 | */ |
| 1362 | spin_lock_irq(&send_cq->lock); |
| 1363 | if (send_cq != recv_cq) |
| 1364 | spin_lock(&recv_cq->lock); |
| 1365 | |
| 1366 | spin_lock(&dev->qp_table.lock); |
| 1367 | mthca_array_clear(&dev->qp_table.qp, |
| 1368 | qp->qpn & (dev->limits.num_qps - 1)); |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1369 | --qp->refcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | spin_unlock(&dev->qp_table.lock); |
| 1371 | |
| 1372 | if (send_cq != recv_cq) |
| 1373 | spin_unlock(&recv_cq->lock); |
| 1374 | spin_unlock_irq(&send_cq->lock); |
| 1375 | |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1376 | wait_event(qp->wait, !get_qp_refcount(dev, qp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | |
| 1378 | if (qp->state != IB_QPS_RESET) |
Roland Dreier | d844183 | 2006-02-13 16:30:18 -0800 | [diff] [blame] | 1379 | mthca_MODIFY_QP(dev, qp->state, IB_QPS_RESET, qp->qpn, 0, |
| 1380 | NULL, 0, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1382 | /* |
| 1383 | * If this is a userspace QP, the buffers, MR, CQs and so on |
| 1384 | * will be cleaned up in userspace, so all we have to do is |
| 1385 | * unref the mem-free tables and free the QPN in our table. |
| 1386 | */ |
| 1387 | if (!qp->ibqp.uobject) { |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1388 | mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq), qp->qpn, |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 1389 | qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL); |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1390 | if (qp->ibqp.send_cq != qp->ibqp.recv_cq) |
Roland Dreier | a3285aa | 2006-05-09 10:50:29 -0700 | [diff] [blame] | 1391 | mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq), qp->qpn, |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 1392 | qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1394 | mthca_free_memfree(dev, qp); |
| 1395 | mthca_free_wqe_buf(dev, qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
Roland Dreier | 80c8ec2 | 2005-07-07 17:57:20 -0700 | [diff] [blame] | 1398 | mthca_unmap_memfree(dev, qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | |
| 1400 | if (is_sqp(dev, qp)) { |
| 1401 | atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count)); |
| 1402 | dma_free_coherent(&dev->pdev->dev, |
| 1403 | to_msqp(qp)->header_buf_size, |
| 1404 | to_msqp(qp)->header_buf, |
| 1405 | to_msqp(qp)->header_dma); |
| 1406 | } else |
| 1407 | mthca_free(&dev->qp_table.alloc, qp->qpn); |
| 1408 | } |
| 1409 | |
| 1410 | /* Create UD header for an MLX send and build a data segment for it */ |
| 1411 | static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp, |
| 1412 | int ind, struct ib_send_wr *wr, |
| 1413 | struct mthca_mlx_seg *mlx, |
| 1414 | struct mthca_data_seg *data) |
| 1415 | { |
| 1416 | int header_size; |
| 1417 | int err; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1418 | u16 pkey; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | |
| 1420 | ib_ud_header_init(256, /* assume a MAD */ |
Michael S. Tsirkin | 9eacee2 | 2006-01-12 15:55:41 -0800 | [diff] [blame] | 1421 | mthca_ah_grh_present(to_mah(wr->wr.ud.ah)), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | &sqp->ud_header); |
| 1423 | |
| 1424 | err = mthca_read_ah(dev, to_mah(wr->wr.ud.ah), &sqp->ud_header); |
| 1425 | if (err) |
| 1426 | return err; |
| 1427 | mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1); |
| 1428 | mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) | |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1429 | (sqp->ud_header.lrh.destination_lid == |
| 1430 | IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | (sqp->ud_header.lrh.service_level << 8)); |
| 1432 | mlx->rlid = sqp->ud_header.lrh.destination_lid; |
| 1433 | mlx->vcrc = 0; |
| 1434 | |
| 1435 | switch (wr->opcode) { |
| 1436 | case IB_WR_SEND: |
| 1437 | sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY; |
| 1438 | sqp->ud_header.immediate_present = 0; |
| 1439 | break; |
| 1440 | case IB_WR_SEND_WITH_IMM: |
| 1441 | sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE; |
| 1442 | sqp->ud_header.immediate_present = 1; |
| 1443 | sqp->ud_header.immediate_data = wr->imm_data; |
| 1444 | break; |
| 1445 | default: |
| 1446 | return -EINVAL; |
| 1447 | } |
| 1448 | |
| 1449 | sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1450 | if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE) |
| 1451 | sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED); |
| 1453 | if (!sqp->qp.ibqp.qp_num) |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 1454 | ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port, |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1455 | sqp->pkey_index, &pkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | else |
Jack Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 1457 | ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port, |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1458 | wr->wr.ud.pkey_index, &pkey); |
| 1459 | sqp->ud_header.bth.pkey = cpu_to_be16(pkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn); |
| 1461 | sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1)); |
| 1462 | sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ? |
| 1463 | sqp->qkey : wr->wr.ud.remote_qkey); |
| 1464 | sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num); |
| 1465 | |
| 1466 | header_size = ib_ud_header_pack(&sqp->ud_header, |
| 1467 | sqp->header_buf + |
| 1468 | ind * MTHCA_UD_HEADER_SIZE); |
| 1469 | |
| 1470 | data->byte_count = cpu_to_be32(header_size); |
| 1471 | data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey); |
| 1472 | data->addr = cpu_to_be64(sqp->header_dma + |
| 1473 | ind * MTHCA_UD_HEADER_SIZE); |
| 1474 | |
| 1475 | return 0; |
| 1476 | } |
| 1477 | |
| 1478 | static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq, |
| 1479 | struct ib_cq *ib_cq) |
| 1480 | { |
| 1481 | unsigned cur; |
| 1482 | struct mthca_cq *cq; |
| 1483 | |
| 1484 | cur = wq->head - wq->tail; |
| 1485 | if (likely(cur + nreq < wq->max)) |
| 1486 | return 0; |
| 1487 | |
| 1488 | cq = to_mcq(ib_cq); |
| 1489 | spin_lock(&cq->lock); |
| 1490 | cur = wq->head - wq->tail; |
| 1491 | spin_unlock(&cq->lock); |
| 1492 | |
| 1493 | return cur + nreq >= wq->max; |
| 1494 | } |
| 1495 | |
| 1496 | int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, |
| 1497 | struct ib_send_wr **bad_wr) |
| 1498 | { |
| 1499 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 1500 | struct mthca_qp *qp = to_mqp(ibqp); |
| 1501 | void *wqe; |
| 1502 | void *prev_wqe; |
| 1503 | unsigned long flags; |
| 1504 | int err = 0; |
| 1505 | int nreq; |
| 1506 | int i; |
| 1507 | int size; |
| 1508 | int size0 = 0; |
Michael S. Tsirkin | e54b82d | 2006-08-10 10:46:56 -0700 | [diff] [blame^] | 1509 | u32 f0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | int ind; |
| 1511 | u8 op0 = 0; |
| 1512 | |
| 1513 | spin_lock_irqsave(&qp->sq.lock, flags); |
| 1514 | |
| 1515 | /* XXX check that state is OK to post send */ |
| 1516 | |
| 1517 | ind = qp->sq.next_ind; |
| 1518 | |
| 1519 | for (nreq = 0; wr; ++nreq, wr = wr->next) { |
| 1520 | if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) { |
| 1521 | mthca_err(dev, "SQ %06x full (%u head, %u tail," |
| 1522 | " %d max, %d nreq)\n", qp->qpn, |
| 1523 | qp->sq.head, qp->sq.tail, |
| 1524 | qp->sq.max, nreq); |
| 1525 | err = -ENOMEM; |
| 1526 | *bad_wr = wr; |
| 1527 | goto out; |
| 1528 | } |
| 1529 | |
| 1530 | wqe = get_send_wqe(qp, ind); |
| 1531 | prev_wqe = qp->sq.last; |
| 1532 | qp->sq.last = wqe; |
| 1533 | |
| 1534 | ((struct mthca_next_seg *) wqe)->nda_op = 0; |
| 1535 | ((struct mthca_next_seg *) wqe)->ee_nds = 0; |
| 1536 | ((struct mthca_next_seg *) wqe)->flags = |
| 1537 | ((wr->send_flags & IB_SEND_SIGNALED) ? |
| 1538 | cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) | |
| 1539 | ((wr->send_flags & IB_SEND_SOLICITED) ? |
| 1540 | cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) | |
| 1541 | cpu_to_be32(1); |
| 1542 | if (wr->opcode == IB_WR_SEND_WITH_IMM || |
| 1543 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) |
Roland Dreier | 3fba231 | 2005-04-16 15:26:16 -0700 | [diff] [blame] | 1544 | ((struct mthca_next_seg *) wqe)->imm = wr->imm_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | |
| 1546 | wqe += sizeof (struct mthca_next_seg); |
| 1547 | size = sizeof (struct mthca_next_seg) / 16; |
| 1548 | |
| 1549 | switch (qp->transport) { |
| 1550 | case RC: |
| 1551 | switch (wr->opcode) { |
| 1552 | case IB_WR_ATOMIC_CMP_AND_SWP: |
| 1553 | case IB_WR_ATOMIC_FETCH_AND_ADD: |
| 1554 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1555 | cpu_to_be64(wr->wr.atomic.remote_addr); |
| 1556 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1557 | cpu_to_be32(wr->wr.atomic.rkey); |
| 1558 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1559 | |
| 1560 | wqe += sizeof (struct mthca_raddr_seg); |
| 1561 | |
| 1562 | if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) { |
| 1563 | ((struct mthca_atomic_seg *) wqe)->swap_add = |
| 1564 | cpu_to_be64(wr->wr.atomic.swap); |
| 1565 | ((struct mthca_atomic_seg *) wqe)->compare = |
| 1566 | cpu_to_be64(wr->wr.atomic.compare_add); |
| 1567 | } else { |
| 1568 | ((struct mthca_atomic_seg *) wqe)->swap_add = |
| 1569 | cpu_to_be64(wr->wr.atomic.compare_add); |
| 1570 | ((struct mthca_atomic_seg *) wqe)->compare = 0; |
| 1571 | } |
| 1572 | |
| 1573 | wqe += sizeof (struct mthca_atomic_seg); |
Michael S. Tsirkin | 62abb84 | 2005-11-09 11:30:14 -0800 | [diff] [blame] | 1574 | size += (sizeof (struct mthca_raddr_seg) + |
| 1575 | sizeof (struct mthca_atomic_seg)) / 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | break; |
| 1577 | |
| 1578 | case IB_WR_RDMA_WRITE: |
| 1579 | case IB_WR_RDMA_WRITE_WITH_IMM: |
| 1580 | case IB_WR_RDMA_READ: |
| 1581 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1582 | cpu_to_be64(wr->wr.rdma.remote_addr); |
| 1583 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1584 | cpu_to_be32(wr->wr.rdma.rkey); |
| 1585 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1586 | wqe += sizeof (struct mthca_raddr_seg); |
| 1587 | size += sizeof (struct mthca_raddr_seg) / 16; |
| 1588 | break; |
| 1589 | |
| 1590 | default: |
| 1591 | /* No extra segments required for sends */ |
| 1592 | break; |
| 1593 | } |
| 1594 | |
| 1595 | break; |
| 1596 | |
Roland Dreier | 9e6970b | 2005-06-27 14:36:42 -0700 | [diff] [blame] | 1597 | case UC: |
| 1598 | switch (wr->opcode) { |
| 1599 | case IB_WR_RDMA_WRITE: |
| 1600 | case IB_WR_RDMA_WRITE_WITH_IMM: |
| 1601 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1602 | cpu_to_be64(wr->wr.rdma.remote_addr); |
| 1603 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1604 | cpu_to_be32(wr->wr.rdma.rkey); |
| 1605 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1606 | wqe += sizeof (struct mthca_raddr_seg); |
| 1607 | size += sizeof (struct mthca_raddr_seg) / 16; |
| 1608 | break; |
| 1609 | |
| 1610 | default: |
| 1611 | /* No extra segments required for sends */ |
| 1612 | break; |
| 1613 | } |
| 1614 | |
| 1615 | break; |
| 1616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | case UD: |
| 1618 | ((struct mthca_tavor_ud_seg *) wqe)->lkey = |
| 1619 | cpu_to_be32(to_mah(wr->wr.ud.ah)->key); |
| 1620 | ((struct mthca_tavor_ud_seg *) wqe)->av_addr = |
| 1621 | cpu_to_be64(to_mah(wr->wr.ud.ah)->avdma); |
| 1622 | ((struct mthca_tavor_ud_seg *) wqe)->dqpn = |
| 1623 | cpu_to_be32(wr->wr.ud.remote_qpn); |
| 1624 | ((struct mthca_tavor_ud_seg *) wqe)->qkey = |
| 1625 | cpu_to_be32(wr->wr.ud.remote_qkey); |
| 1626 | |
| 1627 | wqe += sizeof (struct mthca_tavor_ud_seg); |
| 1628 | size += sizeof (struct mthca_tavor_ud_seg) / 16; |
| 1629 | break; |
| 1630 | |
| 1631 | case MLX: |
| 1632 | err = build_mlx_header(dev, to_msqp(qp), ind, wr, |
| 1633 | wqe - sizeof (struct mthca_next_seg), |
| 1634 | wqe); |
| 1635 | if (err) { |
| 1636 | *bad_wr = wr; |
| 1637 | goto out; |
| 1638 | } |
| 1639 | wqe += sizeof (struct mthca_data_seg); |
| 1640 | size += sizeof (struct mthca_data_seg) / 16; |
| 1641 | break; |
| 1642 | } |
| 1643 | |
| 1644 | if (wr->num_sge > qp->sq.max_gs) { |
| 1645 | mthca_err(dev, "too many gathers\n"); |
| 1646 | err = -EINVAL; |
| 1647 | *bad_wr = wr; |
| 1648 | goto out; |
| 1649 | } |
| 1650 | |
| 1651 | for (i = 0; i < wr->num_sge; ++i) { |
| 1652 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 1653 | cpu_to_be32(wr->sg_list[i].length); |
| 1654 | ((struct mthca_data_seg *) wqe)->lkey = |
| 1655 | cpu_to_be32(wr->sg_list[i].lkey); |
| 1656 | ((struct mthca_data_seg *) wqe)->addr = |
| 1657 | cpu_to_be64(wr->sg_list[i].addr); |
| 1658 | wqe += sizeof (struct mthca_data_seg); |
| 1659 | size += sizeof (struct mthca_data_seg) / 16; |
| 1660 | } |
| 1661 | |
| 1662 | /* Add one more inline data segment for ICRC */ |
| 1663 | if (qp->transport == MLX) { |
| 1664 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 1665 | cpu_to_be32((1 << 31) | 4); |
| 1666 | ((u32 *) wqe)[1] = 0; |
| 1667 | wqe += sizeof (struct mthca_data_seg); |
| 1668 | size += sizeof (struct mthca_data_seg) / 16; |
| 1669 | } |
| 1670 | |
| 1671 | qp->wrid[ind + qp->rq.max] = wr->wr_id; |
| 1672 | |
| 1673 | if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) { |
| 1674 | mthca_err(dev, "opcode invalid\n"); |
| 1675 | err = -EINVAL; |
| 1676 | *bad_wr = wr; |
| 1677 | goto out; |
| 1678 | } |
| 1679 | |
Roland Dreier | d6cff02 | 2005-09-13 10:41:03 -0700 | [diff] [blame] | 1680 | ((struct mthca_next_seg *) prev_wqe)->nda_op = |
| 1681 | cpu_to_be32(((ind << qp->sq.wqe_shift) + |
| 1682 | qp->send_wqe_offset) | |
| 1683 | mthca_opcode[wr->opcode]); |
| 1684 | wmb(); |
| 1685 | ((struct mthca_next_seg *) prev_wqe)->ee_nds = |
Dotan Barak | 7667abd1 | 2006-02-27 21:02:00 -0800 | [diff] [blame] | 1686 | cpu_to_be32((size0 ? 0 : MTHCA_NEXT_DBD) | size | |
| 1687 | ((wr->send_flags & IB_SEND_FENCE) ? |
| 1688 | MTHCA_NEXT_FENCE : 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | |
| 1690 | if (!size0) { |
| 1691 | size0 = size; |
| 1692 | op0 = mthca_opcode[wr->opcode]; |
Michael S. Tsirkin | e54b82d | 2006-08-10 10:46:56 -0700 | [diff] [blame^] | 1693 | f0 = wr->send_flags & IB_SEND_FENCE ? |
| 1694 | MTHCA_SEND_DOORBELL_FENCE : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
| 1697 | ++ind; |
| 1698 | if (unlikely(ind >= qp->sq.max)) |
| 1699 | ind -= qp->sq.max; |
| 1700 | } |
| 1701 | |
| 1702 | out: |
| 1703 | if (likely(nreq)) { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 1704 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | |
| 1706 | doorbell[0] = cpu_to_be32(((qp->sq.next_ind << qp->sq.wqe_shift) + |
| 1707 | qp->send_wqe_offset) | f0 | op0); |
| 1708 | doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0); |
| 1709 | |
| 1710 | wmb(); |
| 1711 | |
| 1712 | mthca_write64(doorbell, |
| 1713 | dev->kar + MTHCA_SEND_DOORBELL, |
| 1714 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 1715 | } |
| 1716 | |
| 1717 | qp->sq.next_ind = ind; |
| 1718 | qp->sq.head += nreq; |
| 1719 | |
| 1720 | spin_unlock_irqrestore(&qp->sq.lock, flags); |
| 1721 | return err; |
| 1722 | } |
| 1723 | |
| 1724 | int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, |
| 1725 | struct ib_recv_wr **bad_wr) |
| 1726 | { |
| 1727 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 1728 | struct mthca_qp *qp = to_mqp(ibqp); |
Michael S. Tsirkin | ae57e24 | 2005-11-09 14:59:57 -0800 | [diff] [blame] | 1729 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | unsigned long flags; |
| 1731 | int err = 0; |
| 1732 | int nreq; |
| 1733 | int i; |
| 1734 | int size; |
| 1735 | int size0 = 0; |
| 1736 | int ind; |
| 1737 | void *wqe; |
| 1738 | void *prev_wqe; |
| 1739 | |
| 1740 | spin_lock_irqsave(&qp->rq.lock, flags); |
| 1741 | |
| 1742 | /* XXX check that state is OK to post receive */ |
| 1743 | |
| 1744 | ind = qp->rq.next_ind; |
| 1745 | |
Michael S. Tsirkin | 23f3bc0 | 2006-05-18 18:32:54 +0300 | [diff] [blame] | 1746 | for (nreq = 0; wr; wr = wr->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) { |
| 1748 | mthca_err(dev, "RQ %06x full (%u head, %u tail," |
| 1749 | " %d max, %d nreq)\n", qp->qpn, |
| 1750 | qp->rq.head, qp->rq.tail, |
| 1751 | qp->rq.max, nreq); |
| 1752 | err = -ENOMEM; |
| 1753 | *bad_wr = wr; |
| 1754 | goto out; |
| 1755 | } |
| 1756 | |
| 1757 | wqe = get_recv_wqe(qp, ind); |
| 1758 | prev_wqe = qp->rq.last; |
| 1759 | qp->rq.last = wqe; |
| 1760 | |
| 1761 | ((struct mthca_next_seg *) wqe)->nda_op = 0; |
| 1762 | ((struct mthca_next_seg *) wqe)->ee_nds = |
| 1763 | cpu_to_be32(MTHCA_NEXT_DBD); |
| 1764 | ((struct mthca_next_seg *) wqe)->flags = 0; |
| 1765 | |
| 1766 | wqe += sizeof (struct mthca_next_seg); |
| 1767 | size = sizeof (struct mthca_next_seg) / 16; |
| 1768 | |
| 1769 | if (unlikely(wr->num_sge > qp->rq.max_gs)) { |
| 1770 | err = -EINVAL; |
| 1771 | *bad_wr = wr; |
| 1772 | goto out; |
| 1773 | } |
| 1774 | |
| 1775 | for (i = 0; i < wr->num_sge; ++i) { |
| 1776 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 1777 | cpu_to_be32(wr->sg_list[i].length); |
| 1778 | ((struct mthca_data_seg *) wqe)->lkey = |
| 1779 | cpu_to_be32(wr->sg_list[i].lkey); |
| 1780 | ((struct mthca_data_seg *) wqe)->addr = |
| 1781 | cpu_to_be64(wr->sg_list[i].addr); |
| 1782 | wqe += sizeof (struct mthca_data_seg); |
| 1783 | size += sizeof (struct mthca_data_seg) / 16; |
| 1784 | } |
| 1785 | |
| 1786 | qp->wrid[ind] = wr->wr_id; |
| 1787 | |
Roland Dreier | d6cff02 | 2005-09-13 10:41:03 -0700 | [diff] [blame] | 1788 | ((struct mthca_next_seg *) prev_wqe)->nda_op = |
| 1789 | cpu_to_be32((ind << qp->rq.wqe_shift) | 1); |
| 1790 | wmb(); |
| 1791 | ((struct mthca_next_seg *) prev_wqe)->ee_nds = |
| 1792 | cpu_to_be32(MTHCA_NEXT_DBD | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | |
| 1794 | if (!size0) |
| 1795 | size0 = size; |
| 1796 | |
| 1797 | ++ind; |
| 1798 | if (unlikely(ind >= qp->rq.max)) |
| 1799 | ind -= qp->rq.max; |
Michael S. Tsirkin | 23f3bc0 | 2006-05-18 18:32:54 +0300 | [diff] [blame] | 1800 | |
| 1801 | ++nreq; |
| 1802 | if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) { |
| 1803 | nreq = 0; |
| 1804 | |
| 1805 | doorbell[0] = cpu_to_be32((qp->rq.next_ind << qp->rq.wqe_shift) | size0); |
| 1806 | doorbell[1] = cpu_to_be32(qp->qpn << 8); |
| 1807 | |
| 1808 | wmb(); |
| 1809 | |
| 1810 | mthca_write64(doorbell, |
| 1811 | dev->kar + MTHCA_RECEIVE_DOORBELL, |
| 1812 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 1813 | |
| 1814 | qp->rq.head += MTHCA_TAVOR_MAX_WQES_PER_RECV_DB; |
| 1815 | size0 = 0; |
| 1816 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | } |
| 1818 | |
| 1819 | out: |
| 1820 | if (likely(nreq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | doorbell[0] = cpu_to_be32((qp->rq.next_ind << qp->rq.wqe_shift) | size0); |
| 1822 | doorbell[1] = cpu_to_be32((qp->qpn << 8) | nreq); |
| 1823 | |
| 1824 | wmb(); |
| 1825 | |
| 1826 | mthca_write64(doorbell, |
| 1827 | dev->kar + MTHCA_RECEIVE_DOORBELL, |
| 1828 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 1829 | } |
| 1830 | |
| 1831 | qp->rq.next_ind = ind; |
| 1832 | qp->rq.head += nreq; |
| 1833 | |
| 1834 | spin_unlock_irqrestore(&qp->rq.lock, flags); |
| 1835 | return err; |
| 1836 | } |
| 1837 | |
| 1838 | int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, |
| 1839 | struct ib_send_wr **bad_wr) |
| 1840 | { |
| 1841 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 1842 | struct mthca_qp *qp = to_mqp(ibqp); |
Michael S. Tsirkin | e0ae9ec | 2005-11-29 11:33:46 -0800 | [diff] [blame] | 1843 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | void *wqe; |
| 1845 | void *prev_wqe; |
| 1846 | unsigned long flags; |
| 1847 | int err = 0; |
| 1848 | int nreq; |
| 1849 | int i; |
| 1850 | int size; |
| 1851 | int size0 = 0; |
Michael S. Tsirkin | e54b82d | 2006-08-10 10:46:56 -0700 | [diff] [blame^] | 1852 | u32 f0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | int ind; |
| 1854 | u8 op0 = 0; |
| 1855 | |
| 1856 | spin_lock_irqsave(&qp->sq.lock, flags); |
| 1857 | |
| 1858 | /* XXX check that state is OK to post send */ |
| 1859 | |
| 1860 | ind = qp->sq.head & (qp->sq.max - 1); |
| 1861 | |
| 1862 | for (nreq = 0; wr; ++nreq, wr = wr->next) { |
Michael S. Tsirkin | e0ae9ec | 2005-11-29 11:33:46 -0800 | [diff] [blame] | 1863 | if (unlikely(nreq == MTHCA_ARBEL_MAX_WQES_PER_SEND_DB)) { |
| 1864 | nreq = 0; |
| 1865 | |
| 1866 | doorbell[0] = cpu_to_be32((MTHCA_ARBEL_MAX_WQES_PER_SEND_DB << 24) | |
| 1867 | ((qp->sq.head & 0xffff) << 8) | |
| 1868 | f0 | op0); |
| 1869 | doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0); |
| 1870 | |
| 1871 | qp->sq.head += MTHCA_ARBEL_MAX_WQES_PER_SEND_DB; |
| 1872 | size0 = 0; |
| 1873 | |
| 1874 | /* |
| 1875 | * Make sure that descriptors are written before |
| 1876 | * doorbell record. |
| 1877 | */ |
| 1878 | wmb(); |
| 1879 | *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff); |
| 1880 | |
| 1881 | /* |
| 1882 | * Make sure doorbell record is written before we |
| 1883 | * write MMIO send doorbell. |
| 1884 | */ |
| 1885 | wmb(); |
| 1886 | mthca_write64(doorbell, |
| 1887 | dev->kar + MTHCA_SEND_DOORBELL, |
| 1888 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 1889 | } |
| 1890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) { |
| 1892 | mthca_err(dev, "SQ %06x full (%u head, %u tail," |
| 1893 | " %d max, %d nreq)\n", qp->qpn, |
| 1894 | qp->sq.head, qp->sq.tail, |
| 1895 | qp->sq.max, nreq); |
| 1896 | err = -ENOMEM; |
| 1897 | *bad_wr = wr; |
| 1898 | goto out; |
| 1899 | } |
| 1900 | |
| 1901 | wqe = get_send_wqe(qp, ind); |
| 1902 | prev_wqe = qp->sq.last; |
| 1903 | qp->sq.last = wqe; |
| 1904 | |
| 1905 | ((struct mthca_next_seg *) wqe)->flags = |
| 1906 | ((wr->send_flags & IB_SEND_SIGNALED) ? |
| 1907 | cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) | |
| 1908 | ((wr->send_flags & IB_SEND_SOLICITED) ? |
| 1909 | cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) | |
| 1910 | cpu_to_be32(1); |
| 1911 | if (wr->opcode == IB_WR_SEND_WITH_IMM || |
| 1912 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) |
Roland Dreier | 3fba231 | 2005-04-16 15:26:16 -0700 | [diff] [blame] | 1913 | ((struct mthca_next_seg *) wqe)->imm = wr->imm_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | |
| 1915 | wqe += sizeof (struct mthca_next_seg); |
| 1916 | size = sizeof (struct mthca_next_seg) / 16; |
| 1917 | |
| 1918 | switch (qp->transport) { |
Roland Dreier | ddb934e | 2005-04-16 15:26:23 -0700 | [diff] [blame] | 1919 | case RC: |
| 1920 | switch (wr->opcode) { |
| 1921 | case IB_WR_ATOMIC_CMP_AND_SWP: |
| 1922 | case IB_WR_ATOMIC_FETCH_AND_ADD: |
| 1923 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1924 | cpu_to_be64(wr->wr.atomic.remote_addr); |
| 1925 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1926 | cpu_to_be32(wr->wr.atomic.rkey); |
| 1927 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1928 | |
| 1929 | wqe += sizeof (struct mthca_raddr_seg); |
| 1930 | |
| 1931 | if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) { |
| 1932 | ((struct mthca_atomic_seg *) wqe)->swap_add = |
| 1933 | cpu_to_be64(wr->wr.atomic.swap); |
| 1934 | ((struct mthca_atomic_seg *) wqe)->compare = |
| 1935 | cpu_to_be64(wr->wr.atomic.compare_add); |
| 1936 | } else { |
| 1937 | ((struct mthca_atomic_seg *) wqe)->swap_add = |
| 1938 | cpu_to_be64(wr->wr.atomic.compare_add); |
| 1939 | ((struct mthca_atomic_seg *) wqe)->compare = 0; |
| 1940 | } |
| 1941 | |
| 1942 | wqe += sizeof (struct mthca_atomic_seg); |
Michael S. Tsirkin | 62abb84 | 2005-11-09 11:30:14 -0800 | [diff] [blame] | 1943 | size += (sizeof (struct mthca_raddr_seg) + |
| 1944 | sizeof (struct mthca_atomic_seg)) / 16; |
Roland Dreier | ddb934e | 2005-04-16 15:26:23 -0700 | [diff] [blame] | 1945 | break; |
| 1946 | |
Roland Dreier | 9e6970b | 2005-06-27 14:36:42 -0700 | [diff] [blame] | 1947 | case IB_WR_RDMA_READ: |
Roland Dreier | ddb934e | 2005-04-16 15:26:23 -0700 | [diff] [blame] | 1948 | case IB_WR_RDMA_WRITE: |
| 1949 | case IB_WR_RDMA_WRITE_WITH_IMM: |
Roland Dreier | 9e6970b | 2005-06-27 14:36:42 -0700 | [diff] [blame] | 1950 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1951 | cpu_to_be64(wr->wr.rdma.remote_addr); |
| 1952 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1953 | cpu_to_be32(wr->wr.rdma.rkey); |
| 1954 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1955 | wqe += sizeof (struct mthca_raddr_seg); |
| 1956 | size += sizeof (struct mthca_raddr_seg) / 16; |
| 1957 | break; |
| 1958 | |
| 1959 | default: |
| 1960 | /* No extra segments required for sends */ |
| 1961 | break; |
| 1962 | } |
| 1963 | |
| 1964 | break; |
| 1965 | |
| 1966 | case UC: |
| 1967 | switch (wr->opcode) { |
| 1968 | case IB_WR_RDMA_WRITE: |
| 1969 | case IB_WR_RDMA_WRITE_WITH_IMM: |
Roland Dreier | ddb934e | 2005-04-16 15:26:23 -0700 | [diff] [blame] | 1970 | ((struct mthca_raddr_seg *) wqe)->raddr = |
| 1971 | cpu_to_be64(wr->wr.rdma.remote_addr); |
| 1972 | ((struct mthca_raddr_seg *) wqe)->rkey = |
| 1973 | cpu_to_be32(wr->wr.rdma.rkey); |
| 1974 | ((struct mthca_raddr_seg *) wqe)->reserved = 0; |
| 1975 | wqe += sizeof (struct mthca_raddr_seg); |
| 1976 | size += sizeof (struct mthca_raddr_seg) / 16; |
| 1977 | break; |
| 1978 | |
| 1979 | default: |
| 1980 | /* No extra segments required for sends */ |
| 1981 | break; |
| 1982 | } |
| 1983 | |
| 1984 | break; |
| 1985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | case UD: |
| 1987 | memcpy(((struct mthca_arbel_ud_seg *) wqe)->av, |
| 1988 | to_mah(wr->wr.ud.ah)->av, MTHCA_AV_SIZE); |
| 1989 | ((struct mthca_arbel_ud_seg *) wqe)->dqpn = |
| 1990 | cpu_to_be32(wr->wr.ud.remote_qpn); |
| 1991 | ((struct mthca_arbel_ud_seg *) wqe)->qkey = |
| 1992 | cpu_to_be32(wr->wr.ud.remote_qkey); |
| 1993 | |
| 1994 | wqe += sizeof (struct mthca_arbel_ud_seg); |
| 1995 | size += sizeof (struct mthca_arbel_ud_seg) / 16; |
| 1996 | break; |
| 1997 | |
| 1998 | case MLX: |
| 1999 | err = build_mlx_header(dev, to_msqp(qp), ind, wr, |
| 2000 | wqe - sizeof (struct mthca_next_seg), |
| 2001 | wqe); |
| 2002 | if (err) { |
| 2003 | *bad_wr = wr; |
| 2004 | goto out; |
| 2005 | } |
| 2006 | wqe += sizeof (struct mthca_data_seg); |
| 2007 | size += sizeof (struct mthca_data_seg) / 16; |
| 2008 | break; |
| 2009 | } |
| 2010 | |
| 2011 | if (wr->num_sge > qp->sq.max_gs) { |
| 2012 | mthca_err(dev, "too many gathers\n"); |
| 2013 | err = -EINVAL; |
| 2014 | *bad_wr = wr; |
| 2015 | goto out; |
| 2016 | } |
| 2017 | |
| 2018 | for (i = 0; i < wr->num_sge; ++i) { |
| 2019 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 2020 | cpu_to_be32(wr->sg_list[i].length); |
| 2021 | ((struct mthca_data_seg *) wqe)->lkey = |
| 2022 | cpu_to_be32(wr->sg_list[i].lkey); |
| 2023 | ((struct mthca_data_seg *) wqe)->addr = |
| 2024 | cpu_to_be64(wr->sg_list[i].addr); |
| 2025 | wqe += sizeof (struct mthca_data_seg); |
| 2026 | size += sizeof (struct mthca_data_seg) / 16; |
| 2027 | } |
| 2028 | |
| 2029 | /* Add one more inline data segment for ICRC */ |
| 2030 | if (qp->transport == MLX) { |
| 2031 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 2032 | cpu_to_be32((1 << 31) | 4); |
| 2033 | ((u32 *) wqe)[1] = 0; |
| 2034 | wqe += sizeof (struct mthca_data_seg); |
| 2035 | size += sizeof (struct mthca_data_seg) / 16; |
| 2036 | } |
| 2037 | |
| 2038 | qp->wrid[ind + qp->rq.max] = wr->wr_id; |
| 2039 | |
| 2040 | if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) { |
| 2041 | mthca_err(dev, "opcode invalid\n"); |
| 2042 | err = -EINVAL; |
| 2043 | *bad_wr = wr; |
| 2044 | goto out; |
| 2045 | } |
| 2046 | |
Roland Dreier | d6cff02 | 2005-09-13 10:41:03 -0700 | [diff] [blame] | 2047 | ((struct mthca_next_seg *) prev_wqe)->nda_op = |
| 2048 | cpu_to_be32(((ind << qp->sq.wqe_shift) + |
| 2049 | qp->send_wqe_offset) | |
| 2050 | mthca_opcode[wr->opcode]); |
| 2051 | wmb(); |
| 2052 | ((struct mthca_next_seg *) prev_wqe)->ee_nds = |
Dotan Barak | 7667abd1 | 2006-02-27 21:02:00 -0800 | [diff] [blame] | 2053 | cpu_to_be32(MTHCA_NEXT_DBD | size | |
Roland Dreier | b0b3a8e | 2006-03-24 15:47:29 -0800 | [diff] [blame] | 2054 | ((wr->send_flags & IB_SEND_FENCE) ? |
| 2055 | MTHCA_NEXT_FENCE : 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | |
| 2057 | if (!size0) { |
| 2058 | size0 = size; |
| 2059 | op0 = mthca_opcode[wr->opcode]; |
Michael S. Tsirkin | e54b82d | 2006-08-10 10:46:56 -0700 | [diff] [blame^] | 2060 | f0 = wr->send_flags & IB_SEND_FENCE ? |
| 2061 | MTHCA_SEND_DOORBELL_FENCE : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | } |
| 2063 | |
| 2064 | ++ind; |
| 2065 | if (unlikely(ind >= qp->sq.max)) |
| 2066 | ind -= qp->sq.max; |
| 2067 | } |
| 2068 | |
| 2069 | out: |
| 2070 | if (likely(nreq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | doorbell[0] = cpu_to_be32((nreq << 24) | |
| 2072 | ((qp->sq.head & 0xffff) << 8) | |
| 2073 | f0 | op0); |
| 2074 | doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0); |
| 2075 | |
| 2076 | qp->sq.head += nreq; |
| 2077 | |
| 2078 | /* |
| 2079 | * Make sure that descriptors are written before |
| 2080 | * doorbell record. |
| 2081 | */ |
| 2082 | wmb(); |
| 2083 | *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff); |
| 2084 | |
| 2085 | /* |
| 2086 | * Make sure doorbell record is written before we |
| 2087 | * write MMIO send doorbell. |
| 2088 | */ |
| 2089 | wmb(); |
| 2090 | mthca_write64(doorbell, |
| 2091 | dev->kar + MTHCA_SEND_DOORBELL, |
| 2092 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 2093 | } |
| 2094 | |
| 2095 | spin_unlock_irqrestore(&qp->sq.lock, flags); |
| 2096 | return err; |
| 2097 | } |
| 2098 | |
| 2099 | int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, |
| 2100 | struct ib_recv_wr **bad_wr) |
| 2101 | { |
| 2102 | struct mthca_dev *dev = to_mdev(ibqp->device); |
| 2103 | struct mthca_qp *qp = to_mqp(ibqp); |
| 2104 | unsigned long flags; |
| 2105 | int err = 0; |
| 2106 | int nreq; |
| 2107 | int ind; |
| 2108 | int i; |
| 2109 | void *wqe; |
| 2110 | |
Roland Dreier | 2fa5e2e | 2006-02-01 13:38:24 -0800 | [diff] [blame] | 2111 | spin_lock_irqsave(&qp->rq.lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | |
| 2113 | /* XXX check that state is OK to post receive */ |
| 2114 | |
| 2115 | ind = qp->rq.head & (qp->rq.max - 1); |
| 2116 | |
| 2117 | for (nreq = 0; wr; ++nreq, wr = wr->next) { |
| 2118 | if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) { |
| 2119 | mthca_err(dev, "RQ %06x full (%u head, %u tail," |
| 2120 | " %d max, %d nreq)\n", qp->qpn, |
| 2121 | qp->rq.head, qp->rq.tail, |
| 2122 | qp->rq.max, nreq); |
| 2123 | err = -ENOMEM; |
| 2124 | *bad_wr = wr; |
| 2125 | goto out; |
| 2126 | } |
| 2127 | |
| 2128 | wqe = get_recv_wqe(qp, ind); |
| 2129 | |
| 2130 | ((struct mthca_next_seg *) wqe)->flags = 0; |
| 2131 | |
| 2132 | wqe += sizeof (struct mthca_next_seg); |
| 2133 | |
| 2134 | if (unlikely(wr->num_sge > qp->rq.max_gs)) { |
| 2135 | err = -EINVAL; |
| 2136 | *bad_wr = wr; |
| 2137 | goto out; |
| 2138 | } |
| 2139 | |
| 2140 | for (i = 0; i < wr->num_sge; ++i) { |
| 2141 | ((struct mthca_data_seg *) wqe)->byte_count = |
| 2142 | cpu_to_be32(wr->sg_list[i].length); |
| 2143 | ((struct mthca_data_seg *) wqe)->lkey = |
| 2144 | cpu_to_be32(wr->sg_list[i].lkey); |
| 2145 | ((struct mthca_data_seg *) wqe)->addr = |
| 2146 | cpu_to_be64(wr->sg_list[i].addr); |
| 2147 | wqe += sizeof (struct mthca_data_seg); |
| 2148 | } |
| 2149 | |
| 2150 | if (i < qp->rq.max_gs) { |
| 2151 | ((struct mthca_data_seg *) wqe)->byte_count = 0; |
Roland Dreier | ddf841f | 2005-04-16 15:26:33 -0700 | [diff] [blame] | 2152 | ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | ((struct mthca_data_seg *) wqe)->addr = 0; |
| 2154 | } |
| 2155 | |
| 2156 | qp->wrid[ind] = wr->wr_id; |
| 2157 | |
| 2158 | ++ind; |
| 2159 | if (unlikely(ind >= qp->rq.max)) |
| 2160 | ind -= qp->rq.max; |
| 2161 | } |
| 2162 | out: |
| 2163 | if (likely(nreq)) { |
| 2164 | qp->rq.head += nreq; |
| 2165 | |
| 2166 | /* |
| 2167 | * Make sure that descriptors are written before |
| 2168 | * doorbell record. |
| 2169 | */ |
| 2170 | wmb(); |
| 2171 | *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff); |
| 2172 | } |
| 2173 | |
| 2174 | spin_unlock_irqrestore(&qp->rq.lock, flags); |
| 2175 | return err; |
| 2176 | } |
| 2177 | |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame] | 2178 | void mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send, |
| 2179 | int index, int *dbd, __be32 *new_wqe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | { |
| 2181 | struct mthca_next_seg *next; |
| 2182 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 2183 | /* |
| 2184 | * For SRQs, all WQEs generate a CQE, so we're always at the |
| 2185 | * end of the doorbell chain. |
| 2186 | */ |
| 2187 | if (qp->ibqp.srq) { |
| 2188 | *new_wqe = 0; |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame] | 2189 | return; |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 2190 | } |
| 2191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | if (is_send) |
| 2193 | next = get_send_wqe(qp, index); |
| 2194 | else |
| 2195 | next = get_recv_wqe(qp, index); |
| 2196 | |
Roland Dreier | 288bdeb | 2005-08-19 09:19:05 -0700 | [diff] [blame] | 2197 | *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | if (next->ee_nds & cpu_to_be32(0x3f)) |
| 2199 | *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) | |
| 2200 | (next->ee_nds & cpu_to_be32(0x3f)); |
| 2201 | else |
| 2202 | *new_wqe = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | } |
| 2204 | |
| 2205 | int __devinit mthca_init_qp_table(struct mthca_dev *dev) |
| 2206 | { |
| 2207 | int err; |
| 2208 | u8 status; |
| 2209 | int i; |
| 2210 | |
| 2211 | spin_lock_init(&dev->qp_table.lock); |
| 2212 | |
| 2213 | /* |
| 2214 | * We reserve 2 extra QPs per port for the special QPs. The |
| 2215 | * special QP for port 1 has to be even, so round up. |
| 2216 | */ |
| 2217 | dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL; |
| 2218 | err = mthca_alloc_init(&dev->qp_table.alloc, |
| 2219 | dev->limits.num_qps, |
| 2220 | (1 << 24) - 1, |
| 2221 | dev->qp_table.sqp_start + |
| 2222 | MTHCA_MAX_PORTS * 2); |
| 2223 | if (err) |
| 2224 | return err; |
| 2225 | |
| 2226 | err = mthca_array_init(&dev->qp_table.qp, |
| 2227 | dev->limits.num_qps); |
| 2228 | if (err) { |
| 2229 | mthca_alloc_cleanup(&dev->qp_table.alloc); |
| 2230 | return err; |
| 2231 | } |
| 2232 | |
| 2233 | for (i = 0; i < 2; ++i) { |
| 2234 | err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI, |
| 2235 | dev->qp_table.sqp_start + i * 2, |
| 2236 | &status); |
| 2237 | if (err) |
| 2238 | goto err_out; |
| 2239 | if (status) { |
| 2240 | mthca_warn(dev, "CONF_SPECIAL_QP returned " |
| 2241 | "status %02x, aborting.\n", |
| 2242 | status); |
| 2243 | err = -EINVAL; |
| 2244 | goto err_out; |
| 2245 | } |
| 2246 | } |
| 2247 | return 0; |
| 2248 | |
| 2249 | err_out: |
| 2250 | for (i = 0; i < 2; ++i) |
| 2251 | mthca_CONF_SPECIAL_QP(dev, i, 0, &status); |
| 2252 | |
| 2253 | mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); |
| 2254 | mthca_alloc_cleanup(&dev->qp_table.alloc); |
| 2255 | |
| 2256 | return err; |
| 2257 | } |
| 2258 | |
Roland Dreier | e1f7868 | 2006-03-29 09:36:46 -0800 | [diff] [blame] | 2259 | void mthca_cleanup_qp_table(struct mthca_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | { |
| 2261 | int i; |
| 2262 | u8 status; |
| 2263 | |
| 2264 | for (i = 0; i < 2; ++i) |
| 2265 | mthca_CONF_SPECIAL_QP(dev, i, 0, &status); |
| 2266 | |
Michael S. Tsirkin | 71eea47 | 2005-09-20 10:54:48 -0700 | [diff] [blame] | 2267 | mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | mthca_alloc_cleanup(&dev->qp_table.alloc); |
| 2269 | } |