2 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
3 * Copyright (c) 2005, 2006, 2007 Cisco Systems, Inc. All rights reserved.
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:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
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.
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
34 #include <linux/interrupt.h>
35 #include <linux/slab.h>
36 #include <linux/export.h>
38 #include <linux/dma-mapping.h>
40 #include <linux/mlx4/cmd.h>
41 #include <linux/cpu_rmap.h>
47 MLX4_IRQNAME_SIZE = 32
51 MLX4_NUM_ASYNC_EQE = 0x100,
52 MLX4_NUM_SPARE_EQE = 0x80,
53 MLX4_EQ_ENTRY_SIZE = 0x20
56 #define MLX4_EQ_STATUS_OK ( 0 << 28)
57 #define MLX4_EQ_STATUS_WRITE_FAIL (10 << 28)
58 #define MLX4_EQ_OWNER_SW ( 0 << 24)
59 #define MLX4_EQ_OWNER_HW ( 1 << 24)
60 #define MLX4_EQ_FLAG_EC ( 1 << 18)
61 #define MLX4_EQ_FLAG_OI ( 1 << 17)
62 #define MLX4_EQ_STATE_ARMED ( 9 << 8)
63 #define MLX4_EQ_STATE_FIRED (10 << 8)
64 #define MLX4_EQ_STATE_ALWAYS_ARMED (11 << 8)
66 #define MLX4_ASYNC_EVENT_MASK ((1ull << MLX4_EVENT_TYPE_PATH_MIG) | \
67 (1ull << MLX4_EVENT_TYPE_COMM_EST) | \
68 (1ull << MLX4_EVENT_TYPE_SQ_DRAINED) | \
69 (1ull << MLX4_EVENT_TYPE_CQ_ERROR) | \
70 (1ull << MLX4_EVENT_TYPE_WQ_CATAS_ERROR) | \
71 (1ull << MLX4_EVENT_TYPE_EEC_CATAS_ERROR) | \
72 (1ull << MLX4_EVENT_TYPE_PATH_MIG_FAILED) | \
73 (1ull << MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR) | \
74 (1ull << MLX4_EVENT_TYPE_WQ_ACCESS_ERROR) | \
75 (1ull << MLX4_EVENT_TYPE_PORT_CHANGE) | \
76 (1ull << MLX4_EVENT_TYPE_ECC_DETECT) | \
77 (1ull << MLX4_EVENT_TYPE_SRQ_CATAS_ERROR) | \
78 (1ull << MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE) | \
79 (1ull << MLX4_EVENT_TYPE_SRQ_LIMIT) | \
80 (1ull << MLX4_EVENT_TYPE_CMD) | \
81 (1ull << MLX4_EVENT_TYPE_OP_REQUIRED) | \
82 (1ull << MLX4_EVENT_TYPE_COMM_CHANNEL) | \
83 (1ull << MLX4_EVENT_TYPE_FLR_EVENT) | \
84 (1ull << MLX4_EVENT_TYPE_FATAL_WARNING))
86 static u64 get_async_ev_mask(struct mlx4_dev *dev)
88 u64 async_ev_mask = MLX4_ASYNC_EVENT_MASK;
89 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_PORT_MNG_CHG_EV)
90 async_ev_mask |= (1ull << MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT);
95 static void eq_set_ci(struct mlx4_eq *eq, int req_not)
97 __raw_writel((__force u32) cpu_to_be32((eq->cons_index & 0xffffff) |
100 /* We still want ordering, just not swabbing, so add a barrier */
104 static struct mlx4_eqe *get_eqe(struct mlx4_eq *eq, u32 entry, u8 eqe_factor)
106 /* (entry & (eq->nent - 1)) gives us a cyclic array */
107 unsigned long offset = (entry & (eq->nent - 1)) * (MLX4_EQ_ENTRY_SIZE << eqe_factor);
108 /* CX3 is capable of extending the EQE from 32 to 64 bytes.
109 * When this feature is enabled, the first (in the lower addresses)
110 * 32 bytes in the 64 byte EQE are reserved and the next 32 bytes
111 * contain the legacy EQE information.
113 return eq->page_list[offset / PAGE_SIZE].buf + (offset + (eqe_factor ? MLX4_EQ_ENTRY_SIZE : 0)) % PAGE_SIZE;
116 static struct mlx4_eqe *next_eqe_sw(struct mlx4_eq *eq, u8 eqe_factor)
118 struct mlx4_eqe *eqe = get_eqe(eq, eq->cons_index, eqe_factor);
119 return !!(eqe->owner & 0x80) ^ !!(eq->cons_index & eq->nent) ? NULL : eqe;
122 static struct mlx4_eqe *next_slave_event_eqe(struct mlx4_slave_event_eq *slave_eq)
124 struct mlx4_eqe *eqe =
125 &slave_eq->event_eqe[slave_eq->cons & (SLAVE_EVENT_EQ_SIZE - 1)];
126 return (!!(eqe->owner & 0x80) ^
127 !!(slave_eq->cons & SLAVE_EVENT_EQ_SIZE)) ?
131 void mlx4_gen_slave_eqe(struct work_struct *work)
133 struct mlx4_mfunc_master_ctx *master =
134 container_of(work, struct mlx4_mfunc_master_ctx,
136 struct mlx4_mfunc *mfunc =
137 container_of(master, struct mlx4_mfunc, master);
138 struct mlx4_priv *priv = container_of(mfunc, struct mlx4_priv, mfunc);
139 struct mlx4_dev *dev = &priv->dev;
140 struct mlx4_slave_event_eq *slave_eq = &mfunc->master.slave_eq;
141 struct mlx4_eqe *eqe;
145 for (eqe = next_slave_event_eqe(slave_eq); eqe;
146 eqe = next_slave_event_eqe(slave_eq)) {
147 slave = eqe->slave_id;
149 /* All active slaves need to receive the event */
150 if (slave == ALL_SLAVES) {
151 for (i = 0; i < dev->num_slaves; i++) {
152 if (i != dev->caps.function &&
153 master->slave_state[i].active)
154 if (mlx4_GEN_EQE(dev, i, eqe))
155 mlx4_warn(dev, "Failed to generate event for slave %d\n",
159 if (mlx4_GEN_EQE(dev, slave, eqe))
160 mlx4_warn(dev, "Failed to generate event for slave %d\n",
168 static void slave_event(struct mlx4_dev *dev, u8 slave, struct mlx4_eqe *eqe)
170 struct mlx4_priv *priv = mlx4_priv(dev);
171 struct mlx4_slave_event_eq *slave_eq = &priv->mfunc.master.slave_eq;
172 struct mlx4_eqe *s_eqe;
175 spin_lock_irqsave(&slave_eq->event_lock, flags);
176 s_eqe = &slave_eq->event_eqe[slave_eq->prod & (SLAVE_EVENT_EQ_SIZE - 1)];
177 if ((!!(s_eqe->owner & 0x80)) ^
178 (!!(slave_eq->prod & SLAVE_EVENT_EQ_SIZE))) {
179 mlx4_warn(dev, "Master failed to generate an EQE for slave: %d. No free EQE on slave events queue\n",
181 spin_unlock_irqrestore(&slave_eq->event_lock, flags);
185 memcpy(s_eqe, eqe, dev->caps.eqe_size - 1);
186 s_eqe->slave_id = slave;
187 /* ensure all information is written before setting the ownersip bit */
189 s_eqe->owner = !!(slave_eq->prod & SLAVE_EVENT_EQ_SIZE) ? 0x0 : 0x80;
192 queue_work(priv->mfunc.master.comm_wq,
193 &priv->mfunc.master.slave_event_work);
194 spin_unlock_irqrestore(&slave_eq->event_lock, flags);
197 static void mlx4_slave_event(struct mlx4_dev *dev, int slave,
198 struct mlx4_eqe *eqe)
200 struct mlx4_priv *priv = mlx4_priv(dev);
201 struct mlx4_slave_state *s_slave =
202 &priv->mfunc.master.slave_state[slave];
204 if (!s_slave->active) {
205 /*mlx4_warn(dev, "Trying to pass event to inactive slave\n");*/
209 slave_event(dev, slave, eqe);
212 int mlx4_gen_pkey_eqe(struct mlx4_dev *dev, int slave, u8 port)
216 struct mlx4_priv *priv = mlx4_priv(dev);
217 struct mlx4_slave_state *s_slave = &priv->mfunc.master.slave_state[slave];
219 if (!s_slave->active)
222 memset(&eqe, 0, sizeof eqe);
224 eqe.type = MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT;
225 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_PKEY_TABLE;
226 eqe.event.port_mgmt_change.port = port;
228 return mlx4_GEN_EQE(dev, slave, &eqe);
230 EXPORT_SYMBOL(mlx4_gen_pkey_eqe);
232 int mlx4_gen_guid_change_eqe(struct mlx4_dev *dev, int slave, u8 port)
236 /*don't send if we don't have the that slave */
237 if (dev->num_vfs < slave)
239 memset(&eqe, 0, sizeof eqe);
241 eqe.type = MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT;
242 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_GUID_INFO;
243 eqe.event.port_mgmt_change.port = port;
245 return mlx4_GEN_EQE(dev, slave, &eqe);
247 EXPORT_SYMBOL(mlx4_gen_guid_change_eqe);
249 int mlx4_gen_port_state_change_eqe(struct mlx4_dev *dev, int slave, u8 port,
250 u8 port_subtype_change)
254 /*don't send if we don't have the that slave */
255 if (dev->num_vfs < slave)
257 memset(&eqe, 0, sizeof eqe);
259 eqe.type = MLX4_EVENT_TYPE_PORT_CHANGE;
260 eqe.subtype = port_subtype_change;
261 eqe.event.port_change.port = cpu_to_be32(port << 28);
263 mlx4_dbg(dev, "%s: sending: %d to slave: %d on port: %d\n", __func__,
264 port_subtype_change, slave, port);
265 return mlx4_GEN_EQE(dev, slave, &eqe);
267 EXPORT_SYMBOL(mlx4_gen_port_state_change_eqe);
269 enum slave_port_state mlx4_get_slave_port_state(struct mlx4_dev *dev, int slave, u8 port)
271 struct mlx4_priv *priv = mlx4_priv(dev);
272 struct mlx4_slave_state *s_state = priv->mfunc.master.slave_state;
273 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(dev, slave);
275 if (slave >= dev->num_slaves || port > dev->caps.num_ports ||
276 port <= 0 || !test_bit(port - 1, actv_ports.ports)) {
277 pr_err("%s: Error: asking for slave:%d, port:%d\n",
278 __func__, slave, port);
279 return SLAVE_PORT_DOWN;
281 return s_state[slave].port_state[port];
283 EXPORT_SYMBOL(mlx4_get_slave_port_state);
285 static int mlx4_set_slave_port_state(struct mlx4_dev *dev, int slave, u8 port,
286 enum slave_port_state state)
288 struct mlx4_priv *priv = mlx4_priv(dev);
289 struct mlx4_slave_state *s_state = priv->mfunc.master.slave_state;
290 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(dev, slave);
292 if (slave >= dev->num_slaves || port > dev->caps.num_ports ||
293 port <= 0 || !test_bit(port - 1, actv_ports.ports)) {
294 pr_err("%s: Error: asking for slave:%d, port:%d\n",
295 __func__, slave, port);
298 s_state[slave].port_state[port] = state;
303 static void set_all_slave_state(struct mlx4_dev *dev, u8 port, int event)
306 enum slave_port_gen_event gen_event;
307 struct mlx4_slaves_pport slaves_pport = mlx4_phys_to_slaves_pport(dev,
310 for (i = 0; i < dev->num_vfs + 1; i++)
311 if (test_bit(i, slaves_pport.slaves))
312 set_and_calc_slave_port_state(dev, i, port,
315 /**************************************************************************
316 The function get as input the new event to that port,
317 and according to the prev state change the slave's port state.
319 MLX4_PORT_STATE_DEV_EVENT_PORT_DOWN,
320 MLX4_PORT_STATE_DEV_EVENT_PORT_UP
321 MLX4_PORT_STATE_IB_EVENT_GID_VALID
322 MLX4_PORT_STATE_IB_EVENT_GID_INVALID
323 ***************************************************************************/
324 int set_and_calc_slave_port_state(struct mlx4_dev *dev, int slave,
326 enum slave_port_gen_event *gen_event)
328 struct mlx4_priv *priv = mlx4_priv(dev);
329 struct mlx4_slave_state *ctx = NULL;
332 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(dev, slave);
333 enum slave_port_state cur_state =
334 mlx4_get_slave_port_state(dev, slave, port);
336 *gen_event = SLAVE_PORT_GEN_EVENT_NONE;
338 if (slave >= dev->num_slaves || port > dev->caps.num_ports ||
339 port <= 0 || !test_bit(port - 1, actv_ports.ports)) {
340 pr_err("%s: Error: asking for slave:%d, port:%d\n",
341 __func__, slave, port);
345 ctx = &priv->mfunc.master.slave_state[slave];
346 spin_lock_irqsave(&ctx->lock, flags);
349 case SLAVE_PORT_DOWN:
350 if (MLX4_PORT_STATE_DEV_EVENT_PORT_UP == event)
351 mlx4_set_slave_port_state(dev, slave, port,
354 case SLAVE_PENDING_UP:
355 if (MLX4_PORT_STATE_DEV_EVENT_PORT_DOWN == event)
356 mlx4_set_slave_port_state(dev, slave, port,
358 else if (MLX4_PORT_STATE_IB_PORT_STATE_EVENT_GID_VALID == event) {
359 mlx4_set_slave_port_state(dev, slave, port,
361 *gen_event = SLAVE_PORT_GEN_EVENT_UP;
365 if (MLX4_PORT_STATE_DEV_EVENT_PORT_DOWN == event) {
366 mlx4_set_slave_port_state(dev, slave, port,
368 *gen_event = SLAVE_PORT_GEN_EVENT_DOWN;
369 } else if (MLX4_PORT_STATE_IB_EVENT_GID_INVALID ==
371 mlx4_set_slave_port_state(dev, slave, port,
373 *gen_event = SLAVE_PORT_GEN_EVENT_DOWN;
377 pr_err("%s: BUG!!! UNKNOWN state: slave:%d, port:%d\n",
378 __func__, slave, port);
381 ret = mlx4_get_slave_port_state(dev, slave, port);
384 spin_unlock_irqrestore(&ctx->lock, flags);
388 EXPORT_SYMBOL(set_and_calc_slave_port_state);
390 int mlx4_gen_slaves_port_mgt_ev(struct mlx4_dev *dev, u8 port, int attr)
394 memset(&eqe, 0, sizeof eqe);
396 eqe.type = MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT;
397 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_PORT_INFO;
398 eqe.event.port_mgmt_change.port = port;
399 eqe.event.port_mgmt_change.params.port_info.changed_attr =
400 cpu_to_be32((u32) attr);
402 slave_event(dev, ALL_SLAVES, &eqe);
405 EXPORT_SYMBOL(mlx4_gen_slaves_port_mgt_ev);
407 void mlx4_master_handle_slave_flr(struct work_struct *work)
409 struct mlx4_mfunc_master_ctx *master =
410 container_of(work, struct mlx4_mfunc_master_ctx,
411 slave_flr_event_work);
412 struct mlx4_mfunc *mfunc =
413 container_of(master, struct mlx4_mfunc, master);
414 struct mlx4_priv *priv =
415 container_of(mfunc, struct mlx4_priv, mfunc);
416 struct mlx4_dev *dev = &priv->dev;
417 struct mlx4_slave_state *slave_state = priv->mfunc.master.slave_state;
422 mlx4_dbg(dev, "mlx4_handle_slave_flr\n");
424 for (i = 0 ; i < dev->num_slaves; i++) {
426 if (MLX4_COMM_CMD_FLR == slave_state[i].last_cmd) {
427 mlx4_dbg(dev, "mlx4_handle_slave_flr: clean slave: %d\n",
430 mlx4_delete_all_resources_for_slave(dev, i);
431 /*return the slave to running mode*/
432 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
433 slave_state[i].last_cmd = MLX4_COMM_CMD_RESET;
434 slave_state[i].is_slave_going_down = 0;
435 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
437 err = mlx4_cmd(dev, 0, i, 0, MLX4_CMD_INFORM_FLR_DONE,
438 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
440 mlx4_warn(dev, "Failed to notify FW on FLR done (slave:%d)\n",
446 static int mlx4_eq_int(struct mlx4_dev *dev, struct mlx4_eq *eq)
448 struct mlx4_priv *priv = mlx4_priv(dev);
449 struct mlx4_eqe *eqe;
457 u8 update_slave_state;
459 enum slave_port_gen_event gen_event;
461 struct mlx4_vport_state *s_info;
463 while ((eqe = next_eqe_sw(eq, dev->caps.eqe_factor))) {
465 * Make sure we read EQ entry contents after we've
466 * checked the ownership bit.
471 case MLX4_EVENT_TYPE_COMP:
472 cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff;
473 mlx4_cq_completion(dev, cqn);
476 case MLX4_EVENT_TYPE_PATH_MIG:
477 case MLX4_EVENT_TYPE_COMM_EST:
478 case MLX4_EVENT_TYPE_SQ_DRAINED:
479 case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
480 case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
481 case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
482 case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
483 case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
484 mlx4_dbg(dev, "event %d arrived\n", eqe->type);
485 if (mlx4_is_master(dev)) {
486 /* forward only to slave owning the QP */
487 ret = mlx4_get_slave_from_resource_id(dev,
489 be32_to_cpu(eqe->event.qp.qpn)
491 if (ret && ret != -ENOENT) {
492 mlx4_dbg(dev, "QP event %02x(%02x) on EQ %d at index %u: could not get slave id (%d)\n",
493 eqe->type, eqe->subtype,
494 eq->eqn, eq->cons_index, ret);
498 if (!ret && slave != dev->caps.function) {
499 mlx4_slave_event(dev, slave, eqe);
504 mlx4_qp_event(dev, be32_to_cpu(eqe->event.qp.qpn) &
505 0xffffff, eqe->type);
508 case MLX4_EVENT_TYPE_SRQ_LIMIT:
509 mlx4_dbg(dev, "%s: MLX4_EVENT_TYPE_SRQ_LIMIT\n",
511 case MLX4_EVENT_TYPE_SRQ_CATAS_ERROR:
512 if (mlx4_is_master(dev)) {
513 /* forward only to slave owning the SRQ */
514 ret = mlx4_get_slave_from_resource_id(dev,
516 be32_to_cpu(eqe->event.srq.srqn)
519 if (ret && ret != -ENOENT) {
520 mlx4_warn(dev, "SRQ event %02x(%02x) on EQ %d at index %u: could not get slave id (%d)\n",
521 eqe->type, eqe->subtype,
522 eq->eqn, eq->cons_index, ret);
525 mlx4_warn(dev, "%s: slave:%d, srq_no:0x%x, event: %02x(%02x)\n",
527 be32_to_cpu(eqe->event.srq.srqn),
528 eqe->type, eqe->subtype);
530 if (!ret && slave != dev->caps.function) {
531 mlx4_warn(dev, "%s: sending event %02x(%02x) to slave:%d\n",
533 eqe->subtype, slave);
534 mlx4_slave_event(dev, slave, eqe);
538 mlx4_srq_event(dev, be32_to_cpu(eqe->event.srq.srqn) &
539 0xffffff, eqe->type);
542 case MLX4_EVENT_TYPE_CMD:
544 be16_to_cpu(eqe->event.cmd.token),
545 eqe->event.cmd.status,
546 be64_to_cpu(eqe->event.cmd.out_param));
549 case MLX4_EVENT_TYPE_PORT_CHANGE: {
550 struct mlx4_slaves_pport slaves_port;
551 port = be32_to_cpu(eqe->event.port_change.port) >> 28;
552 slaves_port = mlx4_phys_to_slaves_pport(dev, port);
553 if (eqe->subtype == MLX4_PORT_CHANGE_SUBTYPE_DOWN) {
554 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_PORT_DOWN,
556 mlx4_priv(dev)->sense.do_sense_port[port] = 1;
557 if (!mlx4_is_master(dev))
559 for (i = 0; i < dev->num_vfs + 1; i++) {
560 if (!test_bit(i, slaves_port.slaves))
562 if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH) {
563 if (i == mlx4_master_func_num(dev))
565 mlx4_dbg(dev, "%s: Sending MLX4_PORT_CHANGE_SUBTYPE_DOWN to slave: %d, port:%d\n",
567 s_info = &priv->mfunc.master.vf_oper[slave].vport[port].state;
568 if (IFLA_VF_LINK_STATE_AUTO == s_info->link_state) {
569 eqe->event.port_change.port =
571 (be32_to_cpu(eqe->event.port_change.port) & 0xFFFFFFF)
572 | (mlx4_phys_to_slave_port(dev, i, port) << 28));
573 mlx4_slave_event(dev, i, eqe);
575 } else { /* IB port */
576 set_and_calc_slave_port_state(dev, i, port,
577 MLX4_PORT_STATE_DEV_EVENT_PORT_DOWN,
579 /*we can be in pending state, then do not send port_down event*/
580 if (SLAVE_PORT_GEN_EVENT_DOWN == gen_event) {
581 if (i == mlx4_master_func_num(dev))
583 mlx4_slave_event(dev, i, eqe);
588 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_PORT_UP, port);
590 mlx4_priv(dev)->sense.do_sense_port[port] = 0;
592 if (!mlx4_is_master(dev))
594 if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH)
595 for (i = 0; i < dev->num_vfs + 1; i++) {
596 if (!test_bit(i, slaves_port.slaves))
598 if (i == mlx4_master_func_num(dev))
600 s_info = &priv->mfunc.master.vf_oper[slave].vport[port].state;
601 if (IFLA_VF_LINK_STATE_AUTO == s_info->link_state) {
602 eqe->event.port_change.port =
604 (be32_to_cpu(eqe->event.port_change.port) & 0xFFFFFFF)
605 | (mlx4_phys_to_slave_port(dev, i, port) << 28));
606 mlx4_slave_event(dev, i, eqe);
610 /* port-up event will be sent to a slave when the
611 * slave's alias-guid is set. This is done in alias_GUID.c
613 set_all_slave_state(dev, port, MLX4_DEV_EVENT_PORT_UP);
618 case MLX4_EVENT_TYPE_CQ_ERROR:
619 mlx4_warn(dev, "CQ %s on CQN %06x\n",
620 eqe->event.cq_err.syndrome == 1 ?
621 "overrun" : "access violation",
622 be32_to_cpu(eqe->event.cq_err.cqn) & 0xffffff);
623 if (mlx4_is_master(dev)) {
624 ret = mlx4_get_slave_from_resource_id(dev,
626 be32_to_cpu(eqe->event.cq_err.cqn)
628 if (ret && ret != -ENOENT) {
629 mlx4_dbg(dev, "CQ event %02x(%02x) on EQ %d at index %u: could not get slave id (%d)\n",
630 eqe->type, eqe->subtype,
631 eq->eqn, eq->cons_index, ret);
635 if (!ret && slave != dev->caps.function) {
636 mlx4_slave_event(dev, slave, eqe);
641 be32_to_cpu(eqe->event.cq_err.cqn)
646 case MLX4_EVENT_TYPE_EQ_OVERFLOW:
647 mlx4_warn(dev, "EQ overrun on EQN %d\n", eq->eqn);
650 case MLX4_EVENT_TYPE_OP_REQUIRED:
651 atomic_inc(&priv->opreq_count);
652 /* FW commands can't be executed from interrupt context
653 * working in deferred task
655 queue_work(mlx4_wq, &priv->opreq_task);
658 case MLX4_EVENT_TYPE_COMM_CHANNEL:
659 if (!mlx4_is_master(dev)) {
660 mlx4_warn(dev, "Received comm channel event for non master device\n");
663 memcpy(&priv->mfunc.master.comm_arm_bit_vector,
664 eqe->event.comm_channel_arm.bit_vec,
665 sizeof eqe->event.comm_channel_arm.bit_vec);
666 queue_work(priv->mfunc.master.comm_wq,
667 &priv->mfunc.master.comm_work);
670 case MLX4_EVENT_TYPE_FLR_EVENT:
671 flr_slave = be32_to_cpu(eqe->event.flr_event.slave_id);
672 if (!mlx4_is_master(dev)) {
673 mlx4_warn(dev, "Non-master function received FLR event\n");
677 mlx4_dbg(dev, "FLR event for slave: %d\n", flr_slave);
679 if (flr_slave >= dev->num_slaves) {
681 "Got FLR for unknown function: %d\n",
683 update_slave_state = 0;
685 update_slave_state = 1;
687 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
688 if (update_slave_state) {
689 priv->mfunc.master.slave_state[flr_slave].active = false;
690 priv->mfunc.master.slave_state[flr_slave].last_cmd = MLX4_COMM_CMD_FLR;
691 priv->mfunc.master.slave_state[flr_slave].is_slave_going_down = 1;
693 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
694 queue_work(priv->mfunc.master.comm_wq,
695 &priv->mfunc.master.slave_flr_event_work);
698 case MLX4_EVENT_TYPE_FATAL_WARNING:
699 if (eqe->subtype == MLX4_FATAL_WARNING_SUBTYPE_WARMING) {
700 if (mlx4_is_master(dev))
701 for (i = 0; i < dev->num_slaves; i++) {
702 mlx4_dbg(dev, "%s: Sending MLX4_FATAL_WARNING_SUBTYPE_WARMING to slave: %d\n",
704 if (i == dev->caps.function)
706 mlx4_slave_event(dev, i, eqe);
708 mlx4_err(dev, "Temperature Threshold was reached! Threshold: %d celsius degrees; Current Temperature: %d\n",
709 be16_to_cpu(eqe->event.warming.warning_threshold),
710 be16_to_cpu(eqe->event.warming.current_temperature));
712 mlx4_warn(dev, "Unhandled event FATAL WARNING (%02x), subtype %02x on EQ %d at index %u. owner=%x, nent=0x%x, slave=%x, ownership=%s\n",
713 eqe->type, eqe->subtype, eq->eqn,
714 eq->cons_index, eqe->owner, eq->nent,
716 !!(eqe->owner & 0x80) ^
717 !!(eq->cons_index & eq->nent) ? "HW" : "SW");
721 case MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT:
722 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_PORT_MGMT_CHANGE,
723 (unsigned long) eqe);
726 case MLX4_EVENT_TYPE_EEC_CATAS_ERROR:
727 case MLX4_EVENT_TYPE_ECC_DETECT:
729 mlx4_warn(dev, "Unhandled event %02x(%02x) on EQ %d at index %u. owner=%x, nent=0x%x, slave=%x, ownership=%s\n",
730 eqe->type, eqe->subtype, eq->eqn,
731 eq->cons_index, eqe->owner, eq->nent,
733 !!(eqe->owner & 0x80) ^
734 !!(eq->cons_index & eq->nent) ? "HW" : "SW");
743 * The HCA will think the queue has overflowed if we
744 * don't tell it we've been processing events. We
745 * create our EQs with MLX4_NUM_SPARE_EQE extra
746 * entries, so we must update our consumer index at
749 if (unlikely(set_ci >= MLX4_NUM_SPARE_EQE)) {
760 static irqreturn_t mlx4_interrupt(int irq, void *dev_ptr)
762 struct mlx4_dev *dev = dev_ptr;
763 struct mlx4_priv *priv = mlx4_priv(dev);
767 writel(priv->eq_table.clr_mask, priv->eq_table.clr_int);
769 for (i = 0; i < dev->caps.num_comp_vectors + 1; ++i)
770 work |= mlx4_eq_int(dev, &priv->eq_table.eq[i]);
772 return IRQ_RETVAL(work);
775 static irqreturn_t mlx4_msi_x_interrupt(int irq, void *eq_ptr)
777 struct mlx4_eq *eq = eq_ptr;
778 struct mlx4_dev *dev = eq->dev;
780 mlx4_eq_int(dev, eq);
782 /* MSI-X vectors always belong to us */
786 int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
787 struct mlx4_vhcr *vhcr,
788 struct mlx4_cmd_mailbox *inbox,
789 struct mlx4_cmd_mailbox *outbox,
790 struct mlx4_cmd_info *cmd)
792 struct mlx4_priv *priv = mlx4_priv(dev);
793 struct mlx4_slave_event_eq_info *event_eq =
794 priv->mfunc.master.slave_state[slave].event_eq;
795 u32 in_modifier = vhcr->in_modifier;
796 u32 eqn = in_modifier & 0x3FF;
797 u64 in_param = vhcr->in_param;
801 if (slave == dev->caps.function)
802 err = mlx4_cmd(dev, in_param, (in_modifier & 0x80000000) | eqn,
803 0, MLX4_CMD_MAP_EQ, MLX4_CMD_TIME_CLASS_B,
806 for (i = 0; i < MLX4_EVENT_TYPES_NUM; ++i)
807 if (in_param & (1LL << i))
808 event_eq[i].eqn = in_modifier >> 31 ? -1 : eqn;
813 static int mlx4_MAP_EQ(struct mlx4_dev *dev, u64 event_mask, int unmap,
816 return mlx4_cmd(dev, event_mask, (unmap << 31) | eq_num,
817 0, MLX4_CMD_MAP_EQ, MLX4_CMD_TIME_CLASS_B,
821 static int mlx4_SW2HW_EQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
824 return mlx4_cmd(dev, mailbox->dma, eq_num, 0,
825 MLX4_CMD_SW2HW_EQ, MLX4_CMD_TIME_CLASS_A,
829 static int mlx4_HW2SW_EQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
832 return mlx4_cmd_box(dev, 0, mailbox->dma, eq_num,
833 0, MLX4_CMD_HW2SW_EQ, MLX4_CMD_TIME_CLASS_A,
837 static int mlx4_num_eq_uar(struct mlx4_dev *dev)
840 * Each UAR holds 4 EQ doorbells. To figure out how many UARs
841 * we need to map, take the difference of highest index and
842 * the lowest index we'll use and add 1.
844 return (dev->caps.num_comp_vectors + 1 + dev->caps.reserved_eqs +
845 dev->caps.comp_pool)/4 - dev->caps.reserved_eqs/4 + 1;
848 static void __iomem *mlx4_get_eq_uar(struct mlx4_dev *dev, struct mlx4_eq *eq)
850 struct mlx4_priv *priv = mlx4_priv(dev);
853 index = eq->eqn / 4 - dev->caps.reserved_eqs / 4;
855 if (!priv->eq_table.uar_map[index]) {
856 priv->eq_table.uar_map[index] =
857 ioremap(pci_resource_start(dev->pdev, 2) +
858 ((eq->eqn / 4) << PAGE_SHIFT),
860 if (!priv->eq_table.uar_map[index]) {
861 mlx4_err(dev, "Couldn't map EQ doorbell for EQN 0x%06x\n",
867 return priv->eq_table.uar_map[index] + 0x800 + 8 * (eq->eqn % 4);
870 static void mlx4_unmap_uar(struct mlx4_dev *dev)
872 struct mlx4_priv *priv = mlx4_priv(dev);
875 for (i = 0; i < mlx4_num_eq_uar(dev); ++i)
876 if (priv->eq_table.uar_map[i]) {
877 iounmap(priv->eq_table.uar_map[i]);
878 priv->eq_table.uar_map[i] = NULL;
882 static int mlx4_create_eq(struct mlx4_dev *dev, int nent,
883 u8 intr, struct mlx4_eq *eq)
885 struct mlx4_priv *priv = mlx4_priv(dev);
886 struct mlx4_cmd_mailbox *mailbox;
887 struct mlx4_eq_context *eq_context;
889 u64 *dma_list = NULL;
896 eq->nent = roundup_pow_of_two(max(nent, 2));
897 /* CX3 is capable of extending the CQE/EQE from 32 to 64 bytes */
898 npages = PAGE_ALIGN(eq->nent * (MLX4_EQ_ENTRY_SIZE << dev->caps.eqe_factor)) / PAGE_SIZE;
900 eq->page_list = kmalloc(npages * sizeof *eq->page_list,
905 for (i = 0; i < npages; ++i)
906 eq->page_list[i].buf = NULL;
908 dma_list = kmalloc(npages * sizeof *dma_list, GFP_KERNEL);
912 mailbox = mlx4_alloc_cmd_mailbox(dev);
915 eq_context = mailbox->buf;
917 for (i = 0; i < npages; ++i) {
918 eq->page_list[i].buf = dma_alloc_coherent(&dev->pdev->dev,
919 PAGE_SIZE, &t, GFP_KERNEL);
920 if (!eq->page_list[i].buf)
921 goto err_out_free_pages;
924 eq->page_list[i].map = t;
926 memset(eq->page_list[i].buf, 0, PAGE_SIZE);
929 eq->eqn = mlx4_bitmap_alloc(&priv->eq_table.bitmap);
931 goto err_out_free_pages;
933 eq->doorbell = mlx4_get_eq_uar(dev, eq);
936 goto err_out_free_eq;
939 err = mlx4_mtt_init(dev, npages, PAGE_SHIFT, &eq->mtt);
941 goto err_out_free_eq;
943 err = mlx4_write_mtt(dev, &eq->mtt, 0, npages, dma_list);
945 goto err_out_free_mtt;
947 eq_context->flags = cpu_to_be32(MLX4_EQ_STATUS_OK |
948 MLX4_EQ_STATE_ARMED);
949 eq_context->log_eq_size = ilog2(eq->nent);
950 eq_context->intr = intr;
951 eq_context->log_page_size = PAGE_SHIFT - MLX4_ICM_PAGE_SHIFT;
953 mtt_addr = mlx4_mtt_addr(dev, &eq->mtt);
954 eq_context->mtt_base_addr_h = mtt_addr >> 32;
955 eq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff);
957 err = mlx4_SW2HW_EQ(dev, mailbox, eq->eqn);
959 mlx4_warn(dev, "SW2HW_EQ failed (%d)\n", err);
960 goto err_out_free_mtt;
964 mlx4_free_cmd_mailbox(dev, mailbox);
971 mlx4_mtt_cleanup(dev, &eq->mtt);
974 mlx4_bitmap_free(&priv->eq_table.bitmap, eq->eqn, MLX4_USE_RR);
977 for (i = 0; i < npages; ++i)
978 if (eq->page_list[i].buf)
979 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
980 eq->page_list[i].buf,
981 eq->page_list[i].map);
983 mlx4_free_cmd_mailbox(dev, mailbox);
986 kfree(eq->page_list);
993 static void mlx4_free_eq(struct mlx4_dev *dev,
996 struct mlx4_priv *priv = mlx4_priv(dev);
997 struct mlx4_cmd_mailbox *mailbox;
1000 /* CX3 is capable of extending the CQE/EQE from 32 to 64 bytes */
1001 int npages = PAGE_ALIGN((MLX4_EQ_ENTRY_SIZE << dev->caps.eqe_factor) * eq->nent) / PAGE_SIZE;
1003 mailbox = mlx4_alloc_cmd_mailbox(dev);
1004 if (IS_ERR(mailbox))
1007 err = mlx4_HW2SW_EQ(dev, mailbox, eq->eqn);
1009 mlx4_warn(dev, "HW2SW_EQ failed (%d)\n", err);
1012 mlx4_dbg(dev, "Dumping EQ context %02x:\n", eq->eqn);
1013 for (i = 0; i < sizeof (struct mlx4_eq_context) / 4; ++i) {
1015 pr_cont("[%02x] ", i * 4);
1016 pr_cont(" %08x", be32_to_cpup(mailbox->buf + i * 4));
1017 if ((i + 1) % 4 == 0)
1022 mlx4_mtt_cleanup(dev, &eq->mtt);
1023 for (i = 0; i < npages; ++i)
1024 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
1025 eq->page_list[i].buf,
1026 eq->page_list[i].map);
1028 kfree(eq->page_list);
1029 mlx4_bitmap_free(&priv->eq_table.bitmap, eq->eqn, MLX4_USE_RR);
1030 mlx4_free_cmd_mailbox(dev, mailbox);
1033 static void mlx4_free_irqs(struct mlx4_dev *dev)
1035 struct mlx4_eq_table *eq_table = &mlx4_priv(dev)->eq_table;
1036 struct mlx4_priv *priv = mlx4_priv(dev);
1039 if (eq_table->have_irq)
1040 free_irq(dev->pdev->irq, dev);
1042 for (i = 0; i < dev->caps.num_comp_vectors + 1; ++i)
1043 if (eq_table->eq[i].have_irq) {
1044 free_irq(eq_table->eq[i].irq, eq_table->eq + i);
1045 eq_table->eq[i].have_irq = 0;
1048 for (i = 0; i < dev->caps.comp_pool; i++) {
1050 * Freeing the assigned irq's
1051 * all bits should be 0, but we need to validate
1053 if (priv->msix_ctl.pool_bm & 1ULL << i) {
1054 /* NO need protecting*/
1055 vec = dev->caps.num_comp_vectors + 1 + i;
1056 free_irq(priv->eq_table.eq[vec].irq,
1057 &priv->eq_table.eq[vec]);
1062 kfree(eq_table->irq_names);
1065 static int mlx4_map_clr_int(struct mlx4_dev *dev)
1067 struct mlx4_priv *priv = mlx4_priv(dev);
1069 priv->clr_base = ioremap(pci_resource_start(dev->pdev, priv->fw.clr_int_bar) +
1070 priv->fw.clr_int_base, MLX4_CLR_INT_SIZE);
1071 if (!priv->clr_base) {
1072 mlx4_err(dev, "Couldn't map interrupt clear register, aborting\n");
1079 static void mlx4_unmap_clr_int(struct mlx4_dev *dev)
1081 struct mlx4_priv *priv = mlx4_priv(dev);
1083 iounmap(priv->clr_base);
1086 int mlx4_alloc_eq_table(struct mlx4_dev *dev)
1088 struct mlx4_priv *priv = mlx4_priv(dev);
1090 priv->eq_table.eq = kcalloc(dev->caps.num_eqs - dev->caps.reserved_eqs,
1091 sizeof *priv->eq_table.eq, GFP_KERNEL);
1092 if (!priv->eq_table.eq)
1098 void mlx4_free_eq_table(struct mlx4_dev *dev)
1100 kfree(mlx4_priv(dev)->eq_table.eq);
1103 int mlx4_init_eq_table(struct mlx4_dev *dev)
1105 struct mlx4_priv *priv = mlx4_priv(dev);
1109 priv->eq_table.uar_map = kcalloc(mlx4_num_eq_uar(dev),
1110 sizeof *priv->eq_table.uar_map,
1112 if (!priv->eq_table.uar_map) {
1117 err = mlx4_bitmap_init(&priv->eq_table.bitmap, dev->caps.num_eqs,
1118 dev->caps.num_eqs - 1, dev->caps.reserved_eqs, 0);
1122 for (i = 0; i < mlx4_num_eq_uar(dev); ++i)
1123 priv->eq_table.uar_map[i] = NULL;
1125 if (!mlx4_is_slave(dev)) {
1126 err = mlx4_map_clr_int(dev);
1128 goto err_out_bitmap;
1130 priv->eq_table.clr_mask =
1131 swab32(1 << (priv->eq_table.inta_pin & 31));
1132 priv->eq_table.clr_int = priv->clr_base +
1133 (priv->eq_table.inta_pin < 32 ? 4 : 0);
1136 priv->eq_table.irq_names =
1137 kmalloc(MLX4_IRQNAME_SIZE * (dev->caps.num_comp_vectors + 1 +
1138 dev->caps.comp_pool),
1140 if (!priv->eq_table.irq_names) {
1142 goto err_out_bitmap;
1145 for (i = 0; i < dev->caps.num_comp_vectors; ++i) {
1146 err = mlx4_create_eq(dev, dev->caps.num_cqs -
1147 dev->caps.reserved_cqs +
1149 (dev->flags & MLX4_FLAG_MSI_X) ? i : 0,
1150 &priv->eq_table.eq[i]);
1157 err = mlx4_create_eq(dev, MLX4_NUM_ASYNC_EQE + MLX4_NUM_SPARE_EQE,
1158 (dev->flags & MLX4_FLAG_MSI_X) ? dev->caps.num_comp_vectors : 0,
1159 &priv->eq_table.eq[dev->caps.num_comp_vectors]);
1163 /*if additional completion vectors poolsize is 0 this loop will not run*/
1164 for (i = dev->caps.num_comp_vectors + 1;
1165 i < dev->caps.num_comp_vectors + dev->caps.comp_pool + 1; ++i) {
1167 err = mlx4_create_eq(dev, dev->caps.num_cqs -
1168 dev->caps.reserved_cqs +
1170 (dev->flags & MLX4_FLAG_MSI_X) ? i : 0,
1171 &priv->eq_table.eq[i]);
1179 if (dev->flags & MLX4_FLAG_MSI_X) {
1180 const char *eq_name;
1182 for (i = 0; i < dev->caps.num_comp_vectors + 1; ++i) {
1183 if (i < dev->caps.num_comp_vectors) {
1184 snprintf(priv->eq_table.irq_names +
1185 i * MLX4_IRQNAME_SIZE,
1187 "mlx4-comp-%d@pci:%s", i,
1188 pci_name(dev->pdev));
1190 snprintf(priv->eq_table.irq_names +
1191 i * MLX4_IRQNAME_SIZE,
1193 "mlx4-async@pci:%s",
1194 pci_name(dev->pdev));
1197 eq_name = priv->eq_table.irq_names +
1198 i * MLX4_IRQNAME_SIZE;
1199 err = request_irq(priv->eq_table.eq[i].irq,
1200 mlx4_msi_x_interrupt, 0, eq_name,
1201 priv->eq_table.eq + i);
1205 priv->eq_table.eq[i].have_irq = 1;
1208 snprintf(priv->eq_table.irq_names,
1211 pci_name(dev->pdev));
1212 err = request_irq(dev->pdev->irq, mlx4_interrupt,
1213 IRQF_SHARED, priv->eq_table.irq_names, dev);
1217 priv->eq_table.have_irq = 1;
1220 err = mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0,
1221 priv->eq_table.eq[dev->caps.num_comp_vectors].eqn);
1223 mlx4_warn(dev, "MAP_EQ for async EQ %d failed (%d)\n",
1224 priv->eq_table.eq[dev->caps.num_comp_vectors].eqn, err);
1226 for (i = 0; i < dev->caps.num_comp_vectors + 1; ++i)
1227 eq_set_ci(&priv->eq_table.eq[i], 1);
1232 mlx4_free_eq(dev, &priv->eq_table.eq[dev->caps.num_comp_vectors]);
1235 i = dev->caps.num_comp_vectors - 1;
1239 mlx4_free_eq(dev, &priv->eq_table.eq[i]);
1242 if (!mlx4_is_slave(dev))
1243 mlx4_unmap_clr_int(dev);
1244 mlx4_free_irqs(dev);
1247 mlx4_unmap_uar(dev);
1248 mlx4_bitmap_cleanup(&priv->eq_table.bitmap);
1251 kfree(priv->eq_table.uar_map);
1256 void mlx4_cleanup_eq_table(struct mlx4_dev *dev)
1258 struct mlx4_priv *priv = mlx4_priv(dev);
1261 mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 1,
1262 priv->eq_table.eq[dev->caps.num_comp_vectors].eqn);
1264 mlx4_free_irqs(dev);
1266 for (i = 0; i < dev->caps.num_comp_vectors + dev->caps.comp_pool + 1; ++i)
1267 mlx4_free_eq(dev, &priv->eq_table.eq[i]);
1269 if (!mlx4_is_slave(dev))
1270 mlx4_unmap_clr_int(dev);
1272 mlx4_unmap_uar(dev);
1273 mlx4_bitmap_cleanup(&priv->eq_table.bitmap);
1275 kfree(priv->eq_table.uar_map);
1278 /* A test that verifies that we can accept interrupts on all
1279 * the irq vectors of the device.
1280 * Interrupts are checked using the NOP command.
1282 int mlx4_test_interrupts(struct mlx4_dev *dev)
1284 struct mlx4_priv *priv = mlx4_priv(dev);
1288 err = mlx4_NOP(dev);
1289 /* When not in MSI_X, there is only one irq to check */
1290 if (!(dev->flags & MLX4_FLAG_MSI_X) || mlx4_is_slave(dev))
1293 /* A loop over all completion vectors, for each vector we will check
1294 * whether it works by mapping command completions to that vector
1295 * and performing a NOP command
1297 for(i = 0; !err && (i < dev->caps.num_comp_vectors); ++i) {
1298 /* Temporary use polling for command completions */
1299 mlx4_cmd_use_polling(dev);
1301 /* Map the new eq to handle all asynchronous events */
1302 err = mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0,
1303 priv->eq_table.eq[i].eqn);
1305 mlx4_warn(dev, "Failed mapping eq for interrupt test\n");
1306 mlx4_cmd_use_events(dev);
1310 /* Go back to using events */
1311 mlx4_cmd_use_events(dev);
1312 err = mlx4_NOP(dev);
1315 /* Return to default */
1316 mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0,
1317 priv->eq_table.eq[dev->caps.num_comp_vectors].eqn);
1320 EXPORT_SYMBOL(mlx4_test_interrupts);
1322 int mlx4_assign_eq(struct mlx4_dev *dev, char *name, struct cpu_rmap *rmap,
1326 struct mlx4_priv *priv = mlx4_priv(dev);
1327 int vec = 0, err = 0, i;
1329 mutex_lock(&priv->msix_ctl.pool_lock);
1330 for (i = 0; !vec && i < dev->caps.comp_pool; i++) {
1331 if (~priv->msix_ctl.pool_bm & 1ULL << i) {
1332 priv->msix_ctl.pool_bm |= 1ULL << i;
1333 vec = dev->caps.num_comp_vectors + 1 + i;
1334 snprintf(priv->eq_table.irq_names +
1335 vec * MLX4_IRQNAME_SIZE,
1336 MLX4_IRQNAME_SIZE, "%s", name);
1337 #ifdef CONFIG_RFS_ACCEL
1339 err = irq_cpu_rmap_add(rmap,
1340 priv->eq_table.eq[vec].irq);
1342 mlx4_warn(dev, "Failed adding irq rmap\n");
1345 err = request_irq(priv->eq_table.eq[vec].irq,
1346 mlx4_msi_x_interrupt, 0,
1347 &priv->eq_table.irq_names[vec<<5],
1348 priv->eq_table.eq + vec);
1350 /*zero out bit by fliping it*/
1351 priv->msix_ctl.pool_bm ^= 1 << i;
1354 /*we dont want to break here*/
1357 eq_set_ci(&priv->eq_table.eq[vec], 1);
1360 mutex_unlock(&priv->msix_ctl.pool_lock);
1366 err = (i == dev->caps.comp_pool) ? -ENOSPC : err;
1370 EXPORT_SYMBOL(mlx4_assign_eq);
1372 int mlx4_eq_get_irq(struct mlx4_dev *dev, int vec)
1374 struct mlx4_priv *priv = mlx4_priv(dev);
1376 return priv->eq_table.eq[vec].irq;
1378 EXPORT_SYMBOL(mlx4_eq_get_irq);
1380 void mlx4_release_eq(struct mlx4_dev *dev, int vec)
1382 struct mlx4_priv *priv = mlx4_priv(dev);
1384 int i = vec - dev->caps.num_comp_vectors - 1;
1386 if (likely(i >= 0)) {
1387 /*sanity check , making sure were not trying to free irq's
1388 Belonging to a legacy EQ*/
1389 mutex_lock(&priv->msix_ctl.pool_lock);
1390 if (priv->msix_ctl.pool_bm & 1ULL << i) {
1391 free_irq(priv->eq_table.eq[vec].irq,
1392 &priv->eq_table.eq[vec]);
1393 priv->msix_ctl.pool_bm &= ~(1ULL << i);
1395 mutex_unlock(&priv->msix_ctl.pool_lock);
1399 EXPORT_SYMBOL(mlx4_release_eq);