2 * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2007, 2008 Mellanox Technologies. 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/workqueue.h>
35 #include <linux/module.h>
40 MLX4_CATAS_POLL_INTERVAL
= 5 * HZ
,
45 int mlx4_internal_err_reset
= 1;
46 module_param_named(internal_err_reset
, mlx4_internal_err_reset
, int, 0644);
47 MODULE_PARM_DESC(internal_err_reset
,
48 "Reset device on internal errors if non-zero (default 1)");
50 static int read_vendor_id(struct mlx4_dev
*dev
)
55 ret
= pci_read_config_word(dev
->persist
->pdev
, 0, &vendor_id
);
57 mlx4_err(dev
, "Failed to read vendor ID, ret=%d\n", ret
);
61 if (vendor_id
== 0xffff) {
62 mlx4_err(dev
, "PCI can't be accessed to read vendor id\n");
69 static int mlx4_reset_master(struct mlx4_dev
*dev
)
73 if (mlx4_is_master(dev
))
74 mlx4_report_internal_err_comm_event(dev
);
76 if (!pci_channel_offline(dev
->persist
->pdev
)) {
77 err
= read_vendor_id(dev
);
78 /* If PCI can't be accessed to read vendor ID we assume that its
79 * link was disabled and chip was already reset.
84 err
= mlx4_reset(dev
);
86 mlx4_err(dev
, "Fail to reset HCA\n");
92 static int mlx4_reset_slave(struct mlx4_dev
*dev
)
94 #define COM_CHAN_RST_REQ_OFFSET 0x10
95 #define COM_CHAN_RST_ACK_OFFSET 0x08
101 struct mlx4_priv
*priv
= mlx4_priv(dev
);
103 if (pci_channel_offline(dev
->persist
->pdev
))
106 comm_flags
= swab32(readl((__iomem
char *)priv
->mfunc
.comm
+
107 MLX4_COMM_CHAN_FLAGS
));
108 if (comm_flags
== 0xffffffff) {
109 mlx4_err(dev
, "VF reset is not needed\n");
113 if (!(dev
->caps
.vf_caps
& MLX4_VF_CAP_FLAG_RESET
)) {
114 mlx4_err(dev
, "VF reset is not supported\n");
118 rst_req
= (comm_flags
& (u32
)(1 << COM_CHAN_RST_REQ_OFFSET
)) >>
119 COM_CHAN_RST_REQ_OFFSET
;
120 rst_ack
= (comm_flags
& (u32
)(1 << COM_CHAN_RST_ACK_OFFSET
)) >>
121 COM_CHAN_RST_ACK_OFFSET
;
122 if (rst_req
!= rst_ack
) {
123 mlx4_err(dev
, "Communication channel isn't sync, fail to send reset\n");
128 mlx4_warn(dev
, "VF is sending reset request to Firmware\n");
129 comm_flags
= rst_req
<< COM_CHAN_RST_REQ_OFFSET
;
130 __raw_writel((__force u32
)cpu_to_be32(comm_flags
),
131 (__iomem
char *)priv
->mfunc
.comm
+ MLX4_COMM_CHAN_FLAGS
);
133 end
= msecs_to_jiffies(MLX4_COMM_TIME
) + jiffies
;
134 while (time_before(jiffies
, end
)) {
135 comm_flags
= swab32(readl((__iomem
char *)priv
->mfunc
.comm
+
136 MLX4_COMM_CHAN_FLAGS
));
137 rst_ack
= (comm_flags
& (u32
)(1 << COM_CHAN_RST_ACK_OFFSET
)) >>
138 COM_CHAN_RST_ACK_OFFSET
;
140 /* Reading rst_req again since the communication channel can
141 * be reset at any time by the PF and all its bits will be
144 rst_req
= (comm_flags
& (u32
)(1 << COM_CHAN_RST_REQ_OFFSET
)) >>
145 COM_CHAN_RST_REQ_OFFSET
;
147 if (rst_ack
== rst_req
) {
148 mlx4_warn(dev
, "VF Reset succeed\n");
153 mlx4_err(dev
, "Fail to send reset over the communication channel\n");
157 int mlx4_comm_internal_err(u32 slave_read
)
159 return (u32
)COMM_CHAN_EVENT_INTERNAL_ERR
==
160 (slave_read
& (u32
)COMM_CHAN_EVENT_INTERNAL_ERR
) ? 1 : 0;
163 void mlx4_enter_error_state(struct mlx4_dev_persistent
*persist
)
166 struct mlx4_dev
*dev
;
168 if (!mlx4_internal_err_reset
)
171 mutex_lock(&persist
->device_state_mutex
);
172 if (persist
->state
& MLX4_DEVICE_STATE_INTERNAL_ERROR
)
176 mlx4_err(dev
, "device is going to be reset\n");
177 if (mlx4_is_slave(dev
)) {
178 err
= mlx4_reset_slave(dev
);
180 mlx4_crdump_collect(dev
);
181 err
= mlx4_reset_master(dev
);
185 mlx4_err(dev
, "device was reset successfully\n");
187 /* EEH could have disabled the PCI channel during reset. That's
188 * recoverable and the PCI error flow will handle it.
190 if (!pci_channel_offline(dev
->persist
->pdev
))
193 dev
->persist
->state
|= MLX4_DEVICE_STATE_INTERNAL_ERROR
;
194 mutex_unlock(&persist
->device_state_mutex
);
196 /* At that step HW was already reset, now notify clients */
197 mlx4_dispatch_event(dev
, MLX4_DEV_EVENT_CATASTROPHIC_ERROR
, 0);
198 mlx4_cmd_wake_completions(dev
);
202 mutex_unlock(&persist
->device_state_mutex
);
205 static void mlx4_handle_error_state(struct mlx4_dev_persistent
*persist
)
209 mlx4_enter_error_state(persist
);
210 mutex_lock(&persist
->interface_state_mutex
);
211 if (persist
->interface_state
& MLX4_INTERFACE_STATE_UP
&&
212 !(persist
->interface_state
& MLX4_INTERFACE_STATE_DELETION
)) {
213 err
= mlx4_restart_one(persist
->pdev
);
214 mlx4_info(persist
->dev
, "mlx4_restart_one was ended, ret=%d\n",
217 mutex_unlock(&persist
->interface_state_mutex
);
220 static void dump_err_buf(struct mlx4_dev
*dev
)
222 struct mlx4_priv
*priv
= mlx4_priv(dev
);
226 mlx4_err(dev
, "Internal error detected:\n");
227 for (i
= 0; i
< priv
->fw
.catas_size
; ++i
)
228 mlx4_err(dev
, " buf[%02x]: %08x\n",
229 i
, swab32(readl(priv
->catas_err
.map
+ i
)));
232 static void poll_catas(struct timer_list
*t
)
234 struct mlx4_priv
*priv
= from_timer(priv
, t
, catas_err
.timer
);
235 struct mlx4_dev
*dev
= &priv
->dev
;
238 if (mlx4_is_slave(dev
)) {
239 slave_read
= swab32(readl(&priv
->mfunc
.comm
->slave_read
));
240 if (mlx4_comm_internal_err(slave_read
)) {
241 mlx4_warn(dev
, "Internal error detected on the communication channel\n");
244 } else if (readl(priv
->catas_err
.map
)) {
249 if (dev
->persist
->state
& MLX4_DEVICE_STATE_INTERNAL_ERROR
) {
250 mlx4_warn(dev
, "Internal error mark was detected on device\n");
254 mod_timer(&priv
->catas_err
.timer
,
255 round_jiffies(jiffies
+ MLX4_CATAS_POLL_INTERVAL
));
259 if (mlx4_internal_err_reset
)
260 queue_work(dev
->persist
->catas_wq
, &dev
->persist
->catas_work
);
263 static void catas_reset(struct work_struct
*work
)
265 struct mlx4_dev_persistent
*persist
=
266 container_of(work
, struct mlx4_dev_persistent
,
269 mlx4_handle_error_state(persist
);
272 void mlx4_start_catas_poll(struct mlx4_dev
*dev
)
274 struct mlx4_priv
*priv
= mlx4_priv(dev
);
277 INIT_LIST_HEAD(&priv
->catas_err
.list
);
278 timer_setup(&priv
->catas_err
.timer
, poll_catas
, 0);
279 priv
->catas_err
.map
= NULL
;
281 if (!mlx4_is_slave(dev
)) {
282 addr
= pci_resource_start(dev
->persist
->pdev
,
283 priv
->fw
.catas_bar
) +
284 priv
->fw
.catas_offset
;
286 priv
->catas_err
.map
= ioremap(addr
, priv
->fw
.catas_size
* 4);
287 if (!priv
->catas_err
.map
) {
288 mlx4_warn(dev
, "Failed to map internal error buffer at 0x%llx\n",
289 (unsigned long long)addr
);
294 priv
->catas_err
.timer
.expires
=
295 round_jiffies(jiffies
+ MLX4_CATAS_POLL_INTERVAL
);
296 add_timer(&priv
->catas_err
.timer
);
299 void mlx4_stop_catas_poll(struct mlx4_dev
*dev
)
301 struct mlx4_priv
*priv
= mlx4_priv(dev
);
303 del_timer_sync(&priv
->catas_err
.timer
);
305 if (priv
->catas_err
.map
) {
306 iounmap(priv
->catas_err
.map
);
307 priv
->catas_err
.map
= NULL
;
310 if (dev
->persist
->interface_state
& MLX4_INTERFACE_STATE_DELETION
)
311 flush_workqueue(dev
->persist
->catas_wq
);
314 int mlx4_catas_init(struct mlx4_dev
*dev
)
316 INIT_WORK(&dev
->persist
->catas_work
, catas_reset
);
317 dev
->persist
->catas_wq
= create_singlethread_workqueue("mlx4_health");
318 if (!dev
->persist
->catas_wq
)
324 void mlx4_catas_end(struct mlx4_dev
*dev
)
326 if (dev
->persist
->catas_wq
) {
327 destroy_workqueue(dev
->persist
->catas_wq
);
328 dev
->persist
->catas_wq
= NULL
;