blob: 69020173899397ee5889287ee79f0c3525ab8991 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/errno.h>
35#include <linux/interrupt.h>
36#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include "mthca_dev.h"
40#include "mthca_cmd.h"
41#include "mthca_config_reg.h"
42
43enum {
44 MTHCA_NUM_ASYNC_EQE = 0x80,
45 MTHCA_NUM_CMD_EQE = 0x80,
Michael S. Tsirkin92898522006-01-09 14:04:40 -080046 MTHCA_NUM_SPARE_EQE = 0x80,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 MTHCA_EQ_ENTRY_SIZE = 0x20
48};
49
50/*
51 * Must be packed because start is 64 bits but only aligned to 32 bits.
52 */
53struct mthca_eq_context {
Sean Hefty97f52eb2005-08-13 21:05:57 -070054 __be32 flags;
55 __be64 start;
56 __be32 logsize_usrpage;
57 __be32 tavor_pd; /* reserved for Arbel */
58 u8 reserved1[3];
59 u8 intr;
60 __be32 arbel_pd; /* lost_count for Tavor */
61 __be32 lkey;
62 u32 reserved2[2];
63 __be32 consumer_index;
64 __be32 producer_index;
65 u32 reserved3[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070066} __attribute__((packed));
67
68#define MTHCA_EQ_STATUS_OK ( 0 << 28)
69#define MTHCA_EQ_STATUS_OVERFLOW ( 9 << 28)
70#define MTHCA_EQ_STATUS_WRITE_FAIL (10 << 28)
71#define MTHCA_EQ_OWNER_SW ( 0 << 24)
72#define MTHCA_EQ_OWNER_HW ( 1 << 24)
73#define MTHCA_EQ_FLAG_TR ( 1 << 18)
74#define MTHCA_EQ_FLAG_OI ( 1 << 17)
75#define MTHCA_EQ_STATE_ARMED ( 1 << 8)
76#define MTHCA_EQ_STATE_FIRED ( 2 << 8)
77#define MTHCA_EQ_STATE_ALWAYS_ARMED ( 3 << 8)
78#define MTHCA_EQ_STATE_ARBEL ( 8 << 8)
79
80enum {
81 MTHCA_EVENT_TYPE_COMP = 0x00,
82 MTHCA_EVENT_TYPE_PATH_MIG = 0x01,
83 MTHCA_EVENT_TYPE_COMM_EST = 0x02,
84 MTHCA_EVENT_TYPE_SQ_DRAINED = 0x03,
Roland Dreier90f104d2005-10-06 13:15:56 -070085 MTHCA_EVENT_TYPE_SRQ_QP_LAST_WQE = 0x13,
86 MTHCA_EVENT_TYPE_SRQ_LIMIT = 0x14,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 MTHCA_EVENT_TYPE_CQ_ERROR = 0x04,
88 MTHCA_EVENT_TYPE_WQ_CATAS_ERROR = 0x05,
89 MTHCA_EVENT_TYPE_EEC_CATAS_ERROR = 0x06,
90 MTHCA_EVENT_TYPE_PATH_MIG_FAILED = 0x07,
91 MTHCA_EVENT_TYPE_WQ_INVAL_REQ_ERROR = 0x10,
92 MTHCA_EVENT_TYPE_WQ_ACCESS_ERROR = 0x11,
93 MTHCA_EVENT_TYPE_SRQ_CATAS_ERROR = 0x12,
94 MTHCA_EVENT_TYPE_LOCAL_CATAS_ERROR = 0x08,
95 MTHCA_EVENT_TYPE_PORT_CHANGE = 0x09,
96 MTHCA_EVENT_TYPE_EQ_OVERFLOW = 0x0f,
97 MTHCA_EVENT_TYPE_ECC_DETECT = 0x0e,
98 MTHCA_EVENT_TYPE_CMD = 0x0a
99};
100
101#define MTHCA_ASYNC_EVENT_MASK ((1ULL << MTHCA_EVENT_TYPE_PATH_MIG) | \
102 (1ULL << MTHCA_EVENT_TYPE_COMM_EST) | \
103 (1ULL << MTHCA_EVENT_TYPE_SQ_DRAINED) | \
104 (1ULL << MTHCA_EVENT_TYPE_CQ_ERROR) | \
105 (1ULL << MTHCA_EVENT_TYPE_WQ_CATAS_ERROR) | \
106 (1ULL << MTHCA_EVENT_TYPE_EEC_CATAS_ERROR) | \
107 (1ULL << MTHCA_EVENT_TYPE_PATH_MIG_FAILED) | \
108 (1ULL << MTHCA_EVENT_TYPE_WQ_INVAL_REQ_ERROR) | \
109 (1ULL << MTHCA_EVENT_TYPE_WQ_ACCESS_ERROR) | \
110 (1ULL << MTHCA_EVENT_TYPE_LOCAL_CATAS_ERROR) | \
111 (1ULL << MTHCA_EVENT_TYPE_PORT_CHANGE) | \
112 (1ULL << MTHCA_EVENT_TYPE_ECC_DETECT))
Roland Dreier90f104d2005-10-06 13:15:56 -0700113#define MTHCA_SRQ_EVENT_MASK ((1ULL << MTHCA_EVENT_TYPE_SRQ_CATAS_ERROR) | \
114 (1ULL << MTHCA_EVENT_TYPE_SRQ_QP_LAST_WQE) | \
115 (1ULL << MTHCA_EVENT_TYPE_SRQ_LIMIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define MTHCA_CMD_EVENT_MASK (1ULL << MTHCA_EVENT_TYPE_CMD)
117
118#define MTHCA_EQ_DB_INC_CI (1 << 24)
119#define MTHCA_EQ_DB_REQ_NOT (2 << 24)
120#define MTHCA_EQ_DB_DISARM_CQ (3 << 24)
121#define MTHCA_EQ_DB_SET_CI (4 << 24)
122#define MTHCA_EQ_DB_ALWAYS_ARM (5 << 24)
123
124struct mthca_eqe {
125 u8 reserved1;
126 u8 type;
127 u8 reserved2;
128 u8 subtype;
129 union {
130 u32 raw[6];
131 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700132 __be32 cqn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 } __attribute__((packed)) comp;
134 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700135 u16 reserved1;
136 __be16 token;
137 u32 reserved2;
138 u8 reserved3[3];
139 u8 status;
140 __be64 out_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 } __attribute__((packed)) cmd;
142 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700143 __be32 qpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 } __attribute__((packed)) qp;
145 struct {
Roland Dreier90f104d2005-10-06 13:15:56 -0700146 __be32 srqn;
147 } __attribute__((packed)) srq;
148 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700149 __be32 cqn;
150 u32 reserved1;
151 u8 reserved2[3];
152 u8 syndrome;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 } __attribute__((packed)) cq_err;
154 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700155 u32 reserved1[2];
156 __be32 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } __attribute__((packed)) port_change;
158 } event;
159 u8 reserved3[3];
160 u8 owner;
161} __attribute__((packed));
162
163#define MTHCA_EQ_ENTRY_OWNER_SW (0 << 7)
164#define MTHCA_EQ_ENTRY_OWNER_HW (1 << 7)
165
166static inline u64 async_mask(struct mthca_dev *dev)
167{
168 return dev->mthca_flags & MTHCA_FLAG_SRQ ?
169 MTHCA_ASYNC_EVENT_MASK | MTHCA_SRQ_EVENT_MASK :
170 MTHCA_ASYNC_EVENT_MASK;
171}
172
173static inline void tavor_set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci)
174{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /*
176 * This barrier makes sure that all updates to ownership bits
177 * done by set_eqe_hw() hit memory before the consumer index
178 * is updated. set_eq_ci() allows the HCA to possibly write
179 * more EQ entries, and we want to avoid the exceedingly
180 * unlikely possibility of the HCA writing an entry and then
181 * having set_eqe_hw() overwrite the owner field.
182 */
183 wmb();
Roland Dreierab8403c2007-10-14 20:40:27 -0700184 mthca_write64(MTHCA_EQ_DB_SET_CI | eq->eqn, ci & (eq->nent - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 dev->kar + MTHCA_EQ_DOORBELL,
186 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
187}
188
189static inline void arbel_set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci)
190{
191 /* See comment in tavor_set_eq_ci() above. */
192 wmb();
Sean Hefty97f52eb2005-08-13 21:05:57 -0700193 __raw_writel((__force u32) cpu_to_be32(ci),
194 dev->eq_regs.arbel.eq_set_ci_base + eq->eqn * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* We still want ordering, just not swabbing, so add a barrier */
196 mb();
197}
198
199static inline void set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci)
200{
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700201 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 arbel_set_eq_ci(dev, eq, ci);
203 else
204 tavor_set_eq_ci(dev, eq, ci);
205}
206
207static inline void tavor_eq_req_not(struct mthca_dev *dev, int eqn)
208{
Roland Dreierab8403c2007-10-14 20:40:27 -0700209 mthca_write64(MTHCA_EQ_DB_REQ_NOT | eqn, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 dev->kar + MTHCA_EQ_DOORBELL,
211 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
212}
213
214static inline void arbel_eq_req_not(struct mthca_dev *dev, u32 eqn_mask)
215{
216 writel(eqn_mask, dev->eq_regs.arbel.eq_arm);
217}
218
219static inline void disarm_cq(struct mthca_dev *dev, int eqn, int cqn)
220{
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700221 if (!mthca_is_memfree(dev)) {
Roland Dreierab8403c2007-10-14 20:40:27 -0700222 mthca_write64(MTHCA_EQ_DB_DISARM_CQ | eqn, cqn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 dev->kar + MTHCA_EQ_DOORBELL,
224 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
225 }
226}
227
228static inline struct mthca_eqe *get_eqe(struct mthca_eq *eq, u32 entry)
229{
230 unsigned long off = (entry & (eq->nent - 1)) * MTHCA_EQ_ENTRY_SIZE;
231 return eq->page_list[off / PAGE_SIZE].buf + off % PAGE_SIZE;
232}
233
Roland Dreierb3999392008-04-16 21:01:03 -0700234static inline struct mthca_eqe *next_eqe_sw(struct mthca_eq *eq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Roland Dreierb3999392008-04-16 21:01:03 -0700236 struct mthca_eqe *eqe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 eqe = get_eqe(eq, eq->cons_index);
238 return (MTHCA_EQ_ENTRY_OWNER_HW & eqe->owner) ? NULL : eqe;
239}
240
241static inline void set_eqe_hw(struct mthca_eqe *eqe)
242{
243 eqe->owner = MTHCA_EQ_ENTRY_OWNER_HW;
244}
245
246static void port_change(struct mthca_dev *dev, int port, int active)
247{
248 struct ib_event record;
249
250 mthca_dbg(dev, "Port change to %s for port %d\n",
251 active ? "active" : "down", port);
252
253 record.device = &dev->ib_dev;
254 record.event = active ? IB_EVENT_PORT_ACTIVE : IB_EVENT_PORT_ERR;
255 record.element.port_num = port;
256
257 ib_dispatch_event(&record);
258}
259
260static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq)
261{
262 struct mthca_eqe *eqe;
263 int disarm_cqn;
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800264 int eqes_found = 0;
265 int set_ci = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 while ((eqe = next_eqe_sw(eq))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /*
269 * Make sure we read EQ entry contents after we've
270 * checked the ownership bit.
271 */
272 rmb();
273
274 switch (eqe->type) {
275 case MTHCA_EVENT_TYPE_COMP:
276 disarm_cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff;
277 disarm_cq(dev, eq->eqn, disarm_cqn);
Michael S. Tsirkinaffcd502005-10-29 07:39:42 -0700278 mthca_cq_completion(dev, disarm_cqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280
281 case MTHCA_EVENT_TYPE_PATH_MIG:
282 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
283 IB_EVENT_PATH_MIG);
284 break;
285
286 case MTHCA_EVENT_TYPE_COMM_EST:
287 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
288 IB_EVENT_COMM_EST);
289 break;
290
291 case MTHCA_EVENT_TYPE_SQ_DRAINED:
292 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
293 IB_EVENT_SQ_DRAINED);
294 break;
295
Roland Dreier90f104d2005-10-06 13:15:56 -0700296 case MTHCA_EVENT_TYPE_SRQ_QP_LAST_WQE:
297 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
298 IB_EVENT_QP_LAST_WQE_REACHED);
299 break;
300
301 case MTHCA_EVENT_TYPE_SRQ_LIMIT:
302 mthca_srq_event(dev, be32_to_cpu(eqe->event.srq.srqn) & 0xffffff,
303 IB_EVENT_SRQ_LIMIT_REACHED);
304 break;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 case MTHCA_EVENT_TYPE_WQ_CATAS_ERROR:
307 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
308 IB_EVENT_QP_FATAL);
309 break;
310
311 case MTHCA_EVENT_TYPE_PATH_MIG_FAILED:
312 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
313 IB_EVENT_PATH_MIG_ERR);
314 break;
315
316 case MTHCA_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
317 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
318 IB_EVENT_QP_REQ_ERR);
319 break;
320
321 case MTHCA_EVENT_TYPE_WQ_ACCESS_ERROR:
322 mthca_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) & 0xffffff,
323 IB_EVENT_QP_ACCESS_ERR);
324 break;
325
326 case MTHCA_EVENT_TYPE_CMD:
327 mthca_cmd_event(dev,
328 be16_to_cpu(eqe->event.cmd.token),
329 eqe->event.cmd.status,
330 be64_to_cpu(eqe->event.cmd.out_param));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332
333 case MTHCA_EVENT_TYPE_PORT_CHANGE:
334 port_change(dev,
335 (be32_to_cpu(eqe->event.port_change.port) >> 28) & 3,
336 eqe->subtype == 0x4);
337 break;
338
339 case MTHCA_EVENT_TYPE_CQ_ERROR:
Roland Dreierb87dcfb2005-04-16 15:26:22 -0700340 mthca_warn(dev, "CQ %s on CQN %06x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 eqe->event.cq_err.syndrome == 1 ?
342 "overrun" : "access violation",
Roland Dreierb87dcfb2005-04-16 15:26:22 -0700343 be32_to_cpu(eqe->event.cq_err.cqn) & 0xffffff);
Michael S. Tsirkinaffcd502005-10-29 07:39:42 -0700344 mthca_cq_event(dev, be32_to_cpu(eqe->event.cq_err.cqn),
345 IB_EVENT_CQ_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
347
348 case MTHCA_EVENT_TYPE_EQ_OVERFLOW:
349 mthca_warn(dev, "EQ overrun on EQN %d\n", eq->eqn);
350 break;
351
352 case MTHCA_EVENT_TYPE_EEC_CATAS_ERROR:
353 case MTHCA_EVENT_TYPE_SRQ_CATAS_ERROR:
354 case MTHCA_EVENT_TYPE_LOCAL_CATAS_ERROR:
355 case MTHCA_EVENT_TYPE_ECC_DETECT:
356 default:
357 mthca_warn(dev, "Unhandled event %02x(%02x) on EQ %d\n",
358 eqe->type, eqe->subtype, eq->eqn);
359 break;
Joe Perches2b50176d2013-10-08 16:07:22 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 set_eqe_hw(eqe);
363 ++eq->cons_index;
364 eqes_found = 1;
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800365 ++set_ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800367 /*
368 * The HCA will think the queue has overflowed if we
369 * don't tell it we've been processing events. We
370 * create our EQs with MTHCA_NUM_SPARE_EQE extra
371 * entries, so we must update our consumer index at
372 * least that often.
373 */
374 if (unlikely(set_ci >= MTHCA_NUM_SPARE_EQE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /*
376 * Conditional on hca_type is OK here because
377 * this is a rare case, not the fast path.
378 */
379 set_eq_ci(dev, eq, eq->cons_index);
380 set_ci = 0;
381 }
382 }
383
384 /*
385 * Rely on caller to set consumer index so that we don't have
386 * to test hca_type in our interrupt handling fast path.
387 */
388 return eqes_found;
389}
390
David Howells7d12e782006-10-05 14:55:46 +0100391static irqreturn_t mthca_tavor_interrupt(int irq, void *dev_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct mthca_dev *dev = dev_ptr;
394 u32 ecr;
395 int i;
396
397 if (dev->eq_table.clr_mask)
398 writel(dev->eq_table.clr_mask, dev->eq_table.clr_int);
399
400 ecr = readl(dev->eq_regs.tavor.ecr_base + 4);
Roland Dreierc8e0ca62005-10-22 09:43:29 -0700401 if (!ecr)
402 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Roland Dreierc8e0ca62005-10-22 09:43:29 -0700404 writel(ecr, dev->eq_regs.tavor.ecr_base +
405 MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4);
406
407 for (i = 0; i < MTHCA_NUM_EQ; ++i)
408 if (ecr & dev->eq_table.eq[i].eqn_mask) {
409 if (mthca_eq_int(dev, &dev->eq_table.eq[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 tavor_set_eq_ci(dev, &dev->eq_table.eq[i],
411 dev->eq_table.eq[i].cons_index);
Roland Dreierc8e0ca62005-10-22 09:43:29 -0700412 tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn);
413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Roland Dreierc8e0ca62005-10-22 09:43:29 -0700415 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
David Howells7d12e782006-10-05 14:55:46 +0100418static irqreturn_t mthca_tavor_msi_x_interrupt(int irq, void *eq_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct mthca_eq *eq = eq_ptr;
421 struct mthca_dev *dev = eq->dev;
422
423 mthca_eq_int(dev, eq);
424 tavor_set_eq_ci(dev, eq, eq->cons_index);
425 tavor_eq_req_not(dev, eq->eqn);
426
427 /* MSI-X vectors always belong to us */
428 return IRQ_HANDLED;
429}
430
David Howells7d12e782006-10-05 14:55:46 +0100431static irqreturn_t mthca_arbel_interrupt(int irq, void *dev_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct mthca_dev *dev = dev_ptr;
434 int work = 0;
435 int i;
436
437 if (dev->eq_table.clr_mask)
438 writel(dev->eq_table.clr_mask, dev->eq_table.clr_int);
439
440 for (i = 0; i < MTHCA_NUM_EQ; ++i)
441 if (mthca_eq_int(dev, &dev->eq_table.eq[i])) {
442 work = 1;
443 arbel_set_eq_ci(dev, &dev->eq_table.eq[i],
444 dev->eq_table.eq[i].cons_index);
445 }
446
447 arbel_eq_req_not(dev, dev->eq_table.arm_mask);
448
449 return IRQ_RETVAL(work);
450}
451
David Howells7d12e782006-10-05 14:55:46 +0100452static irqreturn_t mthca_arbel_msi_x_interrupt(int irq, void *eq_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 struct mthca_eq *eq = eq_ptr;
455 struct mthca_dev *dev = eq->dev;
456
457 mthca_eq_int(dev, eq);
458 arbel_set_eq_ci(dev, eq, eq->cons_index);
459 arbel_eq_req_not(dev, eq->eqn_mask);
460
461 /* MSI-X vectors always belong to us */
462 return IRQ_HANDLED;
463}
464
Roland Dreierf4f3d0f2006-11-29 15:33:06 -0800465static int mthca_create_eq(struct mthca_dev *dev,
466 int nent,
467 u8 intr,
468 struct mthca_eq *eq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Michael S. Tsirkin46620052006-01-05 16:17:38 -0800470 int npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 u64 *dma_list = NULL;
472 dma_addr_t t;
Roland Dreiered878452005-06-27 14:36:45 -0700473 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct mthca_eq_context *eq_context;
475 int err = -ENOMEM;
476 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Roland Dreierc9150332005-09-18 13:52:06 -0700478 eq->dev = dev;
479 eq->nent = roundup_pow_of_two(max(nent, 2));
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800480 npages = ALIGN(eq->nent * MTHCA_EQ_ENTRY_SIZE, PAGE_SIZE) / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 eq->page_list = kmalloc(npages * sizeof *eq->page_list,
483 GFP_KERNEL);
484 if (!eq->page_list)
485 goto err_out;
486
487 for (i = 0; i < npages; ++i)
488 eq->page_list[i].buf = NULL;
489
490 dma_list = kmalloc(npages * sizeof *dma_list, GFP_KERNEL);
491 if (!dma_list)
492 goto err_out_free;
493
Roland Dreiered878452005-06-27 14:36:45 -0700494 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
495 if (IS_ERR(mailbox))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto err_out_free;
Roland Dreiered878452005-06-27 14:36:45 -0700497 eq_context = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 for (i = 0; i < npages; ++i) {
Roland Dreier64dc81f2005-06-27 14:36:40 -0700500 eq->page_list[i].buf = dma_alloc_coherent(&dev->pdev->dev,
501 PAGE_SIZE, &t, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (!eq->page_list[i].buf)
Roland Dreiered878452005-06-27 14:36:45 -0700503 goto err_out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 dma_list[i] = t;
FUJITA Tomonori3a2baff2010-04-02 04:29:39 +0000506 dma_unmap_addr_set(&eq->page_list[i], mapping, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Shani Moideen8909c572007-06-18 08:46:41 +0530508 clear_page(eq->page_list[i].buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
Roland Dreierc9150332005-09-18 13:52:06 -0700511 for (i = 0; i < eq->nent; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 set_eqe_hw(get_eqe(eq, i));
513
514 eq->eqn = mthca_alloc(&dev->eq_table.alloc);
515 if (eq->eqn == -1)
Roland Dreiered878452005-06-27 14:36:45 -0700516 goto err_out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 err = mthca_mr_alloc_phys(dev, dev->driver_pd.pd_num,
519 dma_list, PAGE_SHIFT, npages,
520 0, npages * PAGE_SIZE,
521 MTHCA_MPT_FLAG_LOCAL_WRITE |
522 MTHCA_MPT_FLAG_LOCAL_READ,
523 &eq->mr);
524 if (err)
525 goto err_out_free_eq;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 memset(eq_context, 0, sizeof *eq_context);
528 eq_context->flags = cpu_to_be32(MTHCA_EQ_STATUS_OK |
529 MTHCA_EQ_OWNER_HW |
530 MTHCA_EQ_STATE_ARMED |
531 MTHCA_EQ_FLAG_TR);
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700532 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 eq_context->flags |= cpu_to_be32(MTHCA_EQ_STATE_ARBEL);
534
Roland Dreierc9150332005-09-18 13:52:06 -0700535 eq_context->logsize_usrpage = cpu_to_be32((ffs(eq->nent) - 1) << 24);
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700536 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 eq_context->arbel_pd = cpu_to_be32(dev->driver_pd.pd_num);
538 } else {
539 eq_context->logsize_usrpage |= cpu_to_be32(dev->driver_uar.index);
540 eq_context->tavor_pd = cpu_to_be32(dev->driver_pd.pd_num);
541 }
542 eq_context->intr = intr;
543 eq_context->lkey = cpu_to_be32(eq->mr.ibmr.lkey);
544
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000545 err = mthca_SW2HW_EQ(dev, mailbox, eq->eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (err) {
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000547 mthca_warn(dev, "SW2HW_EQ returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto err_out_free_mr;
549 }
550
551 kfree(dma_list);
Roland Dreiered878452005-06-27 14:36:45 -0700552 mthca_free_mailbox(dev, mailbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 eq->eqn_mask = swab32(1 << eq->eqn);
555 eq->cons_index = 0;
556
557 dev->eq_table.arm_mask |= eq->eqn_mask;
558
559 mthca_dbg(dev, "Allocated EQ %d with %d entries\n",
Roland Dreierc9150332005-09-18 13:52:06 -0700560 eq->eqn, eq->nent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 return err;
563
564 err_out_free_mr:
565 mthca_free_mr(dev, &eq->mr);
566
567 err_out_free_eq:
568 mthca_free(&dev->eq_table.alloc, eq->eqn);
569
Roland Dreiered878452005-06-27 14:36:45 -0700570 err_out_free_pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 for (i = 0; i < npages; ++i)
572 if (eq->page_list[i].buf)
Roland Dreier64dc81f2005-06-27 14:36:40 -0700573 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
574 eq->page_list[i].buf,
FUJITA Tomonori3a2baff2010-04-02 04:29:39 +0000575 dma_unmap_addr(&eq->page_list[i],
Roland Dreier64dc81f2005-06-27 14:36:40 -0700576 mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Roland Dreiered878452005-06-27 14:36:45 -0700578 mthca_free_mailbox(dev, mailbox);
579
580 err_out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 kfree(eq->page_list);
582 kfree(dma_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 err_out:
585 return err;
586}
587
588static void mthca_free_eq(struct mthca_dev *dev,
589 struct mthca_eq *eq)
590{
Roland Dreiered878452005-06-27 14:36:45 -0700591 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int npages = (eq->nent * MTHCA_EQ_ENTRY_SIZE + PAGE_SIZE - 1) /
594 PAGE_SIZE;
595 int i;
596
Roland Dreiered878452005-06-27 14:36:45 -0700597 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
598 if (IS_ERR(mailbox))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return;
600
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000601 err = mthca_HW2SW_EQ(dev, mailbox, eq->eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (err)
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000603 mthca_warn(dev, "HW2SW_EQ returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 dev->eq_table.arm_mask &= ~eq->eqn_mask;
606
607 if (0) {
608 mthca_dbg(dev, "Dumping EQ context %02x:\n", eq->eqn);
609 for (i = 0; i < sizeof (struct mthca_eq_context) / 4; ++i) {
610 if (i % 4 == 0)
611 printk("[%02x] ", i * 4);
Roland Dreiered878452005-06-27 14:36:45 -0700612 printk(" %08x", be32_to_cpup(mailbox->buf + i * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if ((i + 1) % 4 == 0)
614 printk("\n");
615 }
616 }
617
618 mthca_free_mr(dev, &eq->mr);
619 for (i = 0; i < npages; ++i)
620 pci_free_consistent(dev->pdev, PAGE_SIZE,
621 eq->page_list[i].buf,
FUJITA Tomonori3a2baff2010-04-02 04:29:39 +0000622 dma_unmap_addr(&eq->page_list[i], mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 kfree(eq->page_list);
Roland Dreiered878452005-06-27 14:36:45 -0700625 mthca_free_mailbox(dev, mailbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628static void mthca_free_irqs(struct mthca_dev *dev)
629{
630 int i;
631
632 if (dev->eq_table.have_irq)
633 free_irq(dev->pdev->irq, dev);
634 for (i = 0; i < MTHCA_NUM_EQ; ++i)
Roland Dreier9aa0a482009-06-13 15:14:09 -0700635 if (dev->eq_table.eq[i].have_irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 free_irq(dev->eq_table.eq[i].msi_x_vector,
637 dev->eq_table.eq + i);
Roland Dreier9aa0a482009-06-13 15:14:09 -0700638 dev->eq_table.eq[i].have_irq = 0;
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Roland Dreierf4f3d0f2006-11-29 15:33:06 -0800642static int mthca_map_reg(struct mthca_dev *dev,
643 unsigned long offset, unsigned long size,
644 void __iomem **map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
John L. Burreb4a7cb2011-01-11 20:39:46 -0800646 phys_addr_t base = pci_resource_start(dev->pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *map = ioremap(base + offset, size);
Roland Dreier208dde22008-09-29 21:37:33 -0700649 if (!*map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 return 0;
653}
654
Roland Dreierf4f3d0f2006-11-29 15:33:06 -0800655static int mthca_map_eq_regs(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700657 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
659 * We assume that the EQ arm and EQ set CI registers
660 * fall within the first BAR. We can't trust the
661 * values firmware gives us, since those addresses are
662 * valid on the HCA's side of the PCI bus but not
663 * necessarily the host side.
664 */
665 if (mthca_map_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) &
666 dev->fw.arbel.clr_int_base, MTHCA_CLR_INT_SIZE,
667 &dev->clr_base)) {
668 mthca_err(dev, "Couldn't map interrupt clear register, "
669 "aborting.\n");
670 return -ENOMEM;
671 }
672
673 /*
674 * Add 4 because we limit ourselves to EQs 0 ... 31,
675 * so we only need the low word of the register.
676 */
677 if (mthca_map_reg(dev, ((pci_resource_len(dev->pdev, 0) - 1) &
678 dev->fw.arbel.eq_arm_base) + 4, 4,
679 &dev->eq_regs.arbel.eq_arm)) {
Bernhard Fischer177214a2005-06-27 14:36:39 -0700680 mthca_err(dev, "Couldn't map EQ arm register, aborting.\n");
Roland Dreier208dde22008-09-29 21:37:33 -0700681 iounmap(dev->clr_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -ENOMEM;
683 }
684
685 if (mthca_map_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) &
686 dev->fw.arbel.eq_set_ci_base,
687 MTHCA_EQ_SET_CI_SIZE,
688 &dev->eq_regs.arbel.eq_set_ci_base)) {
Bernhard Fischer177214a2005-06-27 14:36:39 -0700689 mthca_err(dev, "Couldn't map EQ CI register, aborting.\n");
Roland Dreier208dde22008-09-29 21:37:33 -0700690 iounmap(dev->eq_regs.arbel.eq_arm);
691 iounmap(dev->clr_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return -ENOMEM;
693 }
694 } else {
695 if (mthca_map_reg(dev, MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE,
696 &dev->clr_base)) {
697 mthca_err(dev, "Couldn't map interrupt clear register, "
698 "aborting.\n");
699 return -ENOMEM;
700 }
701
702 if (mthca_map_reg(dev, MTHCA_ECR_BASE,
703 MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE,
704 &dev->eq_regs.tavor.ecr_base)) {
705 mthca_err(dev, "Couldn't map ecr register, "
706 "aborting.\n");
Roland Dreier208dde22008-09-29 21:37:33 -0700707 iounmap(dev->clr_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -ENOMEM;
709 }
710 }
711
712 return 0;
713
714}
715
Roland Dreiere1f78682006-03-29 09:36:46 -0800716static void mthca_unmap_eq_regs(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700718 if (mthca_is_memfree(dev)) {
Roland Dreier208dde22008-09-29 21:37:33 -0700719 iounmap(dev->eq_regs.arbel.eq_set_ci_base);
720 iounmap(dev->eq_regs.arbel.eq_arm);
721 iounmap(dev->clr_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 } else {
Roland Dreier208dde22008-09-29 21:37:33 -0700723 iounmap(dev->eq_regs.tavor.ecr_base);
724 iounmap(dev->clr_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726}
727
Roland Dreierf4f3d0f2006-11-29 15:33:06 -0800728int mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /*
733 * We assume that mapping one page is enough for the whole EQ
734 * context table. This is fine with all current HCAs, because
735 * we only use 32 EQs and each EQ uses 32 bytes of context
736 * memory, or 1 KB total.
737 */
738 dev->eq_table.icm_virt = icm_virt;
739 dev->eq_table.icm_page = alloc_page(GFP_HIGHUSER);
740 if (!dev->eq_table.icm_page)
741 return -ENOMEM;
742 dev->eq_table.icm_dma = pci_map_page(dev->pdev, dev->eq_table.icm_page, 0,
743 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700744 if (pci_dma_mapping_error(dev->pdev, dev->eq_table.icm_dma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 __free_page(dev->eq_table.icm_page);
746 return -ENOMEM;
747 }
748
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000749 ret = mthca_MAP_ICM_page(dev, dev->eq_table.icm_dma, icm_virt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (ret) {
751 pci_unmap_page(dev->pdev, dev->eq_table.icm_dma, PAGE_SIZE,
752 PCI_DMA_BIDIRECTIONAL);
753 __free_page(dev->eq_table.icm_page);
754 }
755
756 return ret;
757}
758
Roland Dreiere1f78682006-03-29 09:36:46 -0800759void mthca_unmap_eq_icm(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000761 mthca_UNMAP_ICM(dev, dev->eq_table.icm_virt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 pci_unmap_page(dev->pdev, dev->eq_table.icm_dma, PAGE_SIZE,
763 PCI_DMA_BIDIRECTIONAL);
764 __free_page(dev->eq_table.icm_page);
765}
766
Roland Dreierf4f3d0f2006-11-29 15:33:06 -0800767int mthca_init_eq_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 u8 intr;
771 int i;
772
773 err = mthca_alloc_init(&dev->eq_table.alloc,
774 dev->limits.num_eqs,
775 dev->limits.num_eqs - 1,
776 dev->limits.reserved_eqs);
777 if (err)
778 return err;
779
780 err = mthca_map_eq_regs(dev);
781 if (err)
782 goto err_out_free;
783
Adrian Bunke57895d2008-01-01 15:47:10 +0200784 if (dev->mthca_flags & MTHCA_FLAG_MSI_X) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 dev->eq_table.clr_mask = 0;
786 } else {
787 dev->eq_table.clr_mask =
788 swab32(1 << (dev->eq_table.inta_pin & 31));
789 dev->eq_table.clr_int = dev->clr_base +
Michael S. Tsirkinf7ed3a52005-09-26 09:29:33 -0700790 (dev->eq_table.inta_pin < 32 ? 4 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
793 dev->eq_table.arm_mask = 0;
794
Adrian Bunke57895d2008-01-01 15:47:10 +0200795 intr = dev->eq_table.inta_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800797 err = mthca_create_eq(dev, dev->limits.num_cqs + MTHCA_NUM_SPARE_EQE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 (dev->mthca_flags & MTHCA_FLAG_MSI_X) ? 128 : intr,
799 &dev->eq_table.eq[MTHCA_EQ_COMP]);
800 if (err)
801 goto err_out_unmap;
802
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800803 err = mthca_create_eq(dev, MTHCA_NUM_ASYNC_EQE + MTHCA_NUM_SPARE_EQE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 (dev->mthca_flags & MTHCA_FLAG_MSI_X) ? 129 : intr,
805 &dev->eq_table.eq[MTHCA_EQ_ASYNC]);
806 if (err)
807 goto err_out_comp;
808
Michael S. Tsirkin92898522006-01-09 14:04:40 -0800809 err = mthca_create_eq(dev, MTHCA_NUM_CMD_EQE + MTHCA_NUM_SPARE_EQE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 (dev->mthca_flags & MTHCA_FLAG_MSI_X) ? 130 : intr,
811 &dev->eq_table.eq[MTHCA_EQ_CMD]);
812 if (err)
813 goto err_out_async;
814
815 if (dev->mthca_flags & MTHCA_FLAG_MSI_X) {
816 static const char *eq_name[] = {
Arputham Benjamind94a86892009-09-05 20:36:15 -0700817 [MTHCA_EQ_COMP] = DRV_NAME "-comp",
818 [MTHCA_EQ_ASYNC] = DRV_NAME "-async",
819 [MTHCA_EQ_CMD] = DRV_NAME "-cmd"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 };
821
822 for (i = 0; i < MTHCA_NUM_EQ; ++i) {
Arputham Benjamind94a86892009-09-05 20:36:15 -0700823 snprintf(dev->eq_table.eq[i].irq_name,
824 IB_DEVICE_NAME_MAX,
825 "%s@pci:%s", eq_name[i],
826 pci_name(dev->pdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 err = request_irq(dev->eq_table.eq[i].msi_x_vector,
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700828 mthca_is_memfree(dev) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 mthca_arbel_msi_x_interrupt :
830 mthca_tavor_msi_x_interrupt,
Arputham Benjamind94a86892009-09-05 20:36:15 -0700831 0, dev->eq_table.eq[i].irq_name,
832 dev->eq_table.eq + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (err)
834 goto err_out_cmd;
835 dev->eq_table.eq[i].have_irq = 1;
836 }
837 } else {
Arputham Benjamind94a86892009-09-05 20:36:15 -0700838 snprintf(dev->eq_table.eq[0].irq_name, IB_DEVICE_NAME_MAX,
839 DRV_NAME "@pci:%s", pci_name(dev->pdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 err = request_irq(dev->pdev->irq,
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700841 mthca_is_memfree(dev) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 mthca_arbel_interrupt :
843 mthca_tavor_interrupt,
Arputham Benjamind94a86892009-09-05 20:36:15 -0700844 IRQF_SHARED, dev->eq_table.eq[0].irq_name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (err)
846 goto err_out_cmd;
847 dev->eq_table.have_irq = 1;
848 }
849
850 err = mthca_MAP_EQ(dev, async_mask(dev),
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000851 0, dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (err)
853 mthca_warn(dev, "MAP_EQ for async EQ %d failed (%d)\n",
854 dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 err = mthca_MAP_EQ(dev, MTHCA_CMD_EVENT_MASK,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000857 0, dev->eq_table.eq[MTHCA_EQ_CMD].eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (err)
859 mthca_warn(dev, "MAP_EQ for cmd EQ %d failed (%d)\n",
860 dev->eq_table.eq[MTHCA_EQ_CMD].eqn, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Roland Dreier6b63e302006-03-20 10:08:25 -0800862 for (i = 0; i < MTHCA_NUM_EQ; ++i)
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700863 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 arbel_eq_req_not(dev, dev->eq_table.eq[i].eqn_mask);
865 else
866 tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn);
867
868 return 0;
869
870err_out_cmd:
871 mthca_free_irqs(dev);
872 mthca_free_eq(dev, &dev->eq_table.eq[MTHCA_EQ_CMD]);
873
874err_out_async:
875 mthca_free_eq(dev, &dev->eq_table.eq[MTHCA_EQ_ASYNC]);
876
877err_out_comp:
878 mthca_free_eq(dev, &dev->eq_table.eq[MTHCA_EQ_COMP]);
879
880err_out_unmap:
881 mthca_unmap_eq_regs(dev);
882
883err_out_free:
884 mthca_alloc_cleanup(&dev->eq_table.alloc);
885 return err;
886}
887
Roland Dreiere1f78682006-03-29 09:36:46 -0800888void mthca_cleanup_eq_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 int i;
891
892 mthca_free_irqs(dev);
893
894 mthca_MAP_EQ(dev, async_mask(dev),
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000895 1, dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 mthca_MAP_EQ(dev, MTHCA_CMD_EVENT_MASK,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000897 1, dev->eq_table.eq[MTHCA_EQ_CMD].eqn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 for (i = 0; i < MTHCA_NUM_EQ; ++i)
900 mthca_free_eq(dev, &dev->eq_table.eq[i]);
901
902 mthca_unmap_eq_regs(dev);
903
904 mthca_alloc_cleanup(&dev->eq_table.alloc);
905}