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