mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Enable FPGA and FPGA QP errors for EQ and call the handler in mlx5core.
Submitted by: kib@ MFC after: 3 days Sponsored by: Mellanox Technologies
This commit is contained in:
parent
c322dbafd5
commit
e5eae1dc7d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=347248
@ -29,6 +29,7 @@
|
||||
#include <linux/module.h>
|
||||
#include <dev/mlx5/port.h>
|
||||
#include <dev/mlx5/mlx5_ifc.h>
|
||||
#include <dev/mlx5/mlx5_fpga/core.h>
|
||||
#include "mlx5_core.h"
|
||||
|
||||
#include "opt_rss.h"
|
||||
@ -153,6 +154,10 @@ static const char *eqe_type_str(u8 type)
|
||||
return "MLX5_EVENT_TYPE_PAGE_REQUEST";
|
||||
case MLX5_EVENT_TYPE_NIC_VPORT_CHANGE:
|
||||
return "MLX5_EVENT_TYPE_NIC_VPORT_CHANGE";
|
||||
case MLX5_EVENT_TYPE_FPGA_ERROR:
|
||||
return "MLX5_EVENT_TYPE_FPGA_ERROR";
|
||||
case MLX5_EVENT_TYPE_FPGA_QP_ERROR:
|
||||
return "MLX5_EVENT_TYPE_FPGA_QP_ERROR";
|
||||
case MLX5_EVENT_TYPE_CODING_DCBX_CHANGE_EVENT:
|
||||
return "MLX5_EVENT_TYPE_CODING_DCBX_CHANGE_EVENT";
|
||||
case MLX5_EVENT_TYPE_CODING_GENERAL_NOTIFICATION_EVENT:
|
||||
@ -338,6 +343,11 @@ static int mlx5_eq_int(struct mlx5_core_dev *dev, struct mlx5_eq *eq)
|
||||
}
|
||||
break;
|
||||
|
||||
case MLX5_EVENT_TYPE_FPGA_ERROR:
|
||||
case MLX5_EVENT_TYPE_FPGA_QP_ERROR:
|
||||
mlx5_fpga_event(dev, eqe->type, &eqe->data.raw);
|
||||
break;
|
||||
|
||||
default:
|
||||
mlx5_core_warn(dev, "Unhandled event 0x%x on EQ 0x%x\n",
|
||||
eqe->type, eq->eqn);
|
||||
@ -527,6 +537,10 @@ int mlx5_start_eqs(struct mlx5_core_dev *dev)
|
||||
async_event_mask |= (1ull <<
|
||||
MLX5_EVENT_TYPE_CODING_DCBX_CHANGE_EVENT);
|
||||
|
||||
if (MLX5_CAP_GEN(dev, fpga))
|
||||
async_event_mask |= (1ull << MLX5_EVENT_TYPE_FPGA_ERROR) |
|
||||
(1ull << MLX5_EVENT_TYPE_FPGA_QP_ERROR);
|
||||
|
||||
err = mlx5_create_map_eq(dev, &table->cmd_eq, MLX5_EQ_VEC_CMD,
|
||||
MLX5_NUM_CMD_EQE, 1ull << MLX5_EVENT_TYPE_CMD,
|
||||
"mlx5_cmd_eq", &dev->priv.uuari.uars[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user