blob: 8beecd615a219c2aefd00703a224213b182910b5 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed302bdf62015-04-02 17:07:29 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/random.h>
36#include <linux/vmalloc.h>
Majd Dibbiny89d44f02015-10-14 17:43:46 +030037#include <linux/hardirq.h>
Eli Cohene126ba92013-07-07 17:25:49 +030038#include <linux/mlx5/driver.h>
39#include <linux/mlx5/cmd.h>
40#include "mlx5_core.h"
41
42enum {
43 MLX5_HEALTH_POLL_INTERVAL = 2 * HZ,
44 MAX_MISSES = 3,
45};
46
47enum {
48 MLX5_HEALTH_SYNDR_FW_ERR = 0x1,
49 MLX5_HEALTH_SYNDR_IRISC_ERR = 0x7,
Eli Cohen171bb2c2015-09-25 10:49:16 +030050 MLX5_HEALTH_SYNDR_HW_UNRECOVERABLE_ERR = 0x8,
Eli Cohene126ba92013-07-07 17:25:49 +030051 MLX5_HEALTH_SYNDR_CRC_ERR = 0x9,
52 MLX5_HEALTH_SYNDR_FETCH_PCI_ERR = 0xa,
53 MLX5_HEALTH_SYNDR_HW_FTL_ERR = 0xb,
54 MLX5_HEALTH_SYNDR_ASYNC_EQ_OVERRUN_ERR = 0xc,
55 MLX5_HEALTH_SYNDR_EQ_ERR = 0xd,
Eli Cohen171bb2c2015-09-25 10:49:16 +030056 MLX5_HEALTH_SYNDR_EQ_INV = 0xe,
Eli Cohene126ba92013-07-07 17:25:49 +030057 MLX5_HEALTH_SYNDR_FFSER_ERR = 0xf,
Eli Cohen171bb2c2015-09-25 10:49:16 +030058 MLX5_HEALTH_SYNDR_HIGH_TEMP = 0x10
Eli Cohene126ba92013-07-07 17:25:49 +030059};
60
Eli Cohenfd76ee42015-10-14 17:43:45 +030061enum {
62 MLX5_NIC_IFC_FULL = 0,
63 MLX5_NIC_IFC_DISABLED = 1,
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +030064 MLX5_NIC_IFC_NO_DRAM_NIC = 2,
65 MLX5_NIC_IFC_INVALID = 3
Eli Cohenfd76ee42015-10-14 17:43:45 +030066};
67
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +030068enum {
69 MLX5_DROP_NEW_HEALTH_WORK,
Mohamad Haj Yahiae20204d2017-03-30 17:09:00 +030070 MLX5_DROP_NEW_RECOVERY_WORK,
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +030071};
72
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +030073static u8 get_nic_state(struct mlx5_core_dev *dev)
Eli Cohenfd76ee42015-10-14 17:43:45 +030074{
75 return (ioread32be(&dev->iseg->cmdq_addr_l_sz) >> 8) & 3;
76}
77
Majd Dibbiny89d44f02015-10-14 17:43:46 +030078static void trigger_cmd_completions(struct mlx5_core_dev *dev)
79{
80 unsigned long flags;
81 u64 vector;
82
83 /* wait for pending handlers to complete */
84 synchronize_irq(dev->priv.msix_arr[MLX5_EQ_VEC_CMD].vector);
85 spin_lock_irqsave(&dev->cmd.alloc_lock, flags);
86 vector = ~dev->cmd.bitmask & ((1ul << (1 << dev->cmd.log_sz)) - 1);
87 if (!vector)
88 goto no_trig;
89
90 vector |= MLX5_TRIGGERED_CMD_COMP;
91 spin_unlock_irqrestore(&dev->cmd.alloc_lock, flags);
92
93 mlx5_core_dbg(dev, "vector 0x%llx\n", vector);
Mohamad Haj Yahia4fb5fd22017-02-23 11:19:36 +020094 mlx5_cmd_comp_handler(dev, vector, true);
Majd Dibbiny89d44f02015-10-14 17:43:46 +030095 return;
96
97no_trig:
98 spin_unlock_irqrestore(&dev->cmd.alloc_lock, flags);
99}
100
Eli Cohenfd76ee42015-10-14 17:43:45 +0300101static int in_fatal(struct mlx5_core_dev *dev)
102{
103 struct mlx5_core_health *health = &dev->priv.health;
104 struct health_buffer __iomem *h = health->health;
105
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300106 if (get_nic_state(dev) == MLX5_NIC_IFC_DISABLED)
Eli Cohenfd76ee42015-10-14 17:43:45 +0300107 return 1;
108
109 if (ioread32be(&h->fw_ver) == 0xffffffff)
110 return 1;
111
112 return 0;
113}
114
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300115void mlx5_enter_error_state(struct mlx5_core_dev *dev)
116{
Mohamad Haj Yahiac1d4d2e2016-06-30 17:34:39 +0300117 mutex_lock(&dev->intf_state_mutex);
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300118 if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR)
Mohamad Haj Yahiac1d4d2e2016-06-30 17:34:39 +0300119 goto unlock;
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300120
121 mlx5_core_err(dev, "start\n");
Mohamad Haj Yahiac1d4d2e2016-06-30 17:34:39 +0300122 if (pci_channel_offline(dev->pdev) || in_fatal(dev)) {
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300123 dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
Mohamad Haj Yahiac1d4d2e2016-06-30 17:34:39 +0300124 trigger_cmd_completions(dev);
125 }
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300126
127 mlx5_core_event(dev, MLX5_DEV_EVENT_SYS_ERROR, 0);
128 mlx5_core_err(dev, "end\n");
Mohamad Haj Yahiac1d4d2e2016-06-30 17:34:39 +0300129
130unlock:
131 mutex_unlock(&dev->intf_state_mutex);
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300132}
133
134static void mlx5_handle_bad_state(struct mlx5_core_dev *dev)
135{
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300136 u8 nic_interface = get_nic_state(dev);
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300137
138 switch (nic_interface) {
139 case MLX5_NIC_IFC_FULL:
140 mlx5_core_warn(dev, "Expected to see disabled NIC but it is full driver\n");
141 break;
142
143 case MLX5_NIC_IFC_DISABLED:
144 mlx5_core_warn(dev, "starting teardown\n");
145 break;
146
147 case MLX5_NIC_IFC_NO_DRAM_NIC:
148 mlx5_core_warn(dev, "Expected to see disabled NIC but it is no dram nic\n");
149 break;
150 default:
151 mlx5_core_warn(dev, "Expected to see disabled NIC but it is has invalid value %d\n",
152 nic_interface);
153 }
154
155 mlx5_disable_device(dev);
156}
157
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300158static void health_recover(struct work_struct *work)
159{
160 struct mlx5_core_health *health;
161 struct delayed_work *dwork;
162 struct mlx5_core_dev *dev;
163 struct mlx5_priv *priv;
164 u8 nic_state;
165
166 dwork = container_of(work, struct delayed_work, work);
167 health = container_of(dwork, struct mlx5_core_health, recover_work);
168 priv = container_of(health, struct mlx5_priv, health);
169 dev = container_of(priv, struct mlx5_core_dev, priv);
170
171 nic_state = get_nic_state(dev);
172 if (nic_state == MLX5_NIC_IFC_INVALID) {
173 dev_err(&dev->pdev->dev, "health recovery flow aborted since the nic state is invalid\n");
174 return;
175 }
176
177 dev_err(&dev->pdev->dev, "starting health recovery flow\n");
178 mlx5_recover_device(dev);
179}
180
181/* How much time to wait until health resetting the driver (in msecs) */
182#define MLX5_RECOVERY_DELAY_MSECS 60000
Eli Cohene126ba92013-07-07 17:25:49 +0300183static void health_care(struct work_struct *work)
184{
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300185 unsigned long recover_delay = msecs_to_jiffies(MLX5_RECOVERY_DELAY_MSECS);
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300186 struct mlx5_core_health *health;
Eli Cohene126ba92013-07-07 17:25:49 +0300187 struct mlx5_core_dev *dev;
188 struct mlx5_priv *priv;
Eli Cohene126ba92013-07-07 17:25:49 +0300189
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300190 health = container_of(work, struct mlx5_core_health, work);
191 priv = container_of(health, struct mlx5_priv, health);
192 dev = container_of(priv, struct mlx5_core_dev, priv);
193 mlx5_core_warn(dev, "handling bad device here\n");
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300194 mlx5_handle_bad_state(dev);
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300195
196 spin_lock(&health->wq_lock);
Mohamad Haj Yahiae20204d2017-03-30 17:09:00 +0300197 if (!test_bit(MLX5_DROP_NEW_RECOVERY_WORK, &health->flags))
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300198 schedule_delayed_work(&health->recover_work, recover_delay);
199 else
200 dev_err(&dev->pdev->dev,
201 "new health works are not permitted at this stage\n");
202 spin_unlock(&health->wq_lock);
Eli Cohene126ba92013-07-07 17:25:49 +0300203}
204
205static const char *hsynd_str(u8 synd)
206{
207 switch (synd) {
208 case MLX5_HEALTH_SYNDR_FW_ERR:
209 return "firmware internal error";
210 case MLX5_HEALTH_SYNDR_IRISC_ERR:
211 return "irisc not responding";
Eli Cohen171bb2c2015-09-25 10:49:16 +0300212 case MLX5_HEALTH_SYNDR_HW_UNRECOVERABLE_ERR:
213 return "unrecoverable hardware error";
Eli Cohene126ba92013-07-07 17:25:49 +0300214 case MLX5_HEALTH_SYNDR_CRC_ERR:
215 return "firmware CRC error";
216 case MLX5_HEALTH_SYNDR_FETCH_PCI_ERR:
217 return "ICM fetch PCI error";
218 case MLX5_HEALTH_SYNDR_HW_FTL_ERR:
219 return "HW fatal error\n";
220 case MLX5_HEALTH_SYNDR_ASYNC_EQ_OVERRUN_ERR:
221 return "async EQ buffer overrun";
222 case MLX5_HEALTH_SYNDR_EQ_ERR:
223 return "EQ error";
Eli Cohen171bb2c2015-09-25 10:49:16 +0300224 case MLX5_HEALTH_SYNDR_EQ_INV:
Masanari Iidac01e0152016-04-20 00:27:33 +0900225 return "Invalid EQ referenced";
Eli Cohene126ba92013-07-07 17:25:49 +0300226 case MLX5_HEALTH_SYNDR_FFSER_ERR:
227 return "FFSER error";
Eli Cohen171bb2c2015-09-25 10:49:16 +0300228 case MLX5_HEALTH_SYNDR_HIGH_TEMP:
Masanari Iidac01e0152016-04-20 00:27:33 +0900229 return "High temperature";
Eli Cohene126ba92013-07-07 17:25:49 +0300230 default:
231 return "unrecognized error";
232 }
233}
234
Eli Cohen0144a952015-10-08 17:13:59 +0300235static u16 get_maj(u32 fw)
Roland Dreier582c0162013-07-08 10:52:28 -0700236{
Eli Cohen0144a952015-10-08 17:13:59 +0300237 return fw >> 28;
Roland Dreier582c0162013-07-08 10:52:28 -0700238}
239
Eli Cohen0144a952015-10-08 17:13:59 +0300240static u16 get_min(u32 fw)
Roland Dreier582c0162013-07-08 10:52:28 -0700241{
Eli Cohen0144a952015-10-08 17:13:59 +0300242 return fw >> 16 & 0xfff;
243}
244
245static u16 get_sub(u32 fw)
246{
247 return fw & 0xffff;
Roland Dreier582c0162013-07-08 10:52:28 -0700248}
249
Eli Cohene126ba92013-07-07 17:25:49 +0300250static void print_health_info(struct mlx5_core_dev *dev)
251{
252 struct mlx5_core_health *health = &dev->priv.health;
253 struct health_buffer __iomem *h = health->health;
Eli Cohen0144a952015-10-08 17:13:59 +0300254 char fw_str[18];
255 u32 fw;
Eli Cohene126ba92013-07-07 17:25:49 +0300256 int i;
257
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300258 /* If the syndrom is 0, the device is OK and no need to print buffer */
259 if (!ioread8(&h->synd))
260 return;
261
Eli Cohene126ba92013-07-07 17:25:49 +0300262 for (i = 0; i < ARRAY_SIZE(h->assert_var); i++)
Eli Cohen0144a952015-10-08 17:13:59 +0300263 dev_err(&dev->pdev->dev, "assert_var[%d] 0x%08x\n", i, ioread32be(h->assert_var + i));
Eli Cohene126ba92013-07-07 17:25:49 +0300264
Eli Cohen0144a952015-10-08 17:13:59 +0300265 dev_err(&dev->pdev->dev, "assert_exit_ptr 0x%08x\n", ioread32be(&h->assert_exit_ptr));
266 dev_err(&dev->pdev->dev, "assert_callra 0x%08x\n", ioread32be(&h->assert_callra));
267 fw = ioread32be(&h->fw_ver);
268 sprintf(fw_str, "%d.%d.%d", get_maj(fw), get_min(fw), get_sub(fw));
269 dev_err(&dev->pdev->dev, "fw_ver %s\n", fw_str);
270 dev_err(&dev->pdev->dev, "hw_id 0x%08x\n", ioread32be(&h->hw_id));
271 dev_err(&dev->pdev->dev, "irisc_index %d\n", ioread8(&h->irisc_index));
272 dev_err(&dev->pdev->dev, "synd 0x%x: %s\n", ioread8(&h->synd), hsynd_str(ioread8(&h->synd)));
273 dev_err(&dev->pdev->dev, "ext_synd 0x%04x\n", ioread16be(&h->ext_synd));
Eli Cohene126ba92013-07-07 17:25:49 +0300274}
275
Eli Cohenfd76ee42015-10-14 17:43:45 +0300276static unsigned long get_next_poll_jiffies(void)
277{
278 unsigned long next;
279
280 get_random_bytes(&next, sizeof(next));
281 next %= HZ;
282 next += jiffies + MLX5_HEALTH_POLL_INTERVAL;
283
284 return next;
285}
286
Eli Cohene126ba92013-07-07 17:25:49 +0300287static void poll_health(unsigned long data)
288{
289 struct mlx5_core_dev *dev = (struct mlx5_core_dev *)data;
290 struct mlx5_core_health *health = &dev->priv.health;
Eli Cohene126ba92013-07-07 17:25:49 +0300291 u32 count;
292
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300293 if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300294 mod_timer(&health->timer, get_next_poll_jiffies());
295 return;
296 }
297
Eli Cohene126ba92013-07-07 17:25:49 +0300298 count = ioread32be(health->health_counter);
299 if (count == health->prev)
300 ++health->miss_counter;
301 else
302 health->miss_counter = 0;
303
304 health->prev = count;
305 if (health->miss_counter == MAX_MISSES) {
Eli Cohenfd76ee42015-10-14 17:43:45 +0300306 dev_err(&dev->pdev->dev, "device's health compromised - reached miss count\n");
307 print_health_info(dev);
308 } else {
309 mod_timer(&health->timer, get_next_poll_jiffies());
310 }
311
312 if (in_fatal(dev) && !health->sick) {
313 health->sick = true;
Eli Cohene126ba92013-07-07 17:25:49 +0300314 print_health_info(dev);
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300315 spin_lock(&health->wq_lock);
316 if (!test_bit(MLX5_DROP_NEW_HEALTH_WORK, &health->flags))
317 queue_work(health->wq, &health->work);
318 else
319 dev_err(&dev->pdev->dev,
320 "new health works are not permitted at this stage\n");
321 spin_unlock(&health->wq_lock);
Eli Cohene126ba92013-07-07 17:25:49 +0300322 }
323}
324
325void mlx5_start_health_poll(struct mlx5_core_dev *dev)
326{
327 struct mlx5_core_health *health = &dev->priv.health;
328
Eli Cohene126ba92013-07-07 17:25:49 +0300329 init_timer(&health->timer);
Mohamad Haj Yahia22410072016-10-25 18:36:32 +0300330 health->sick = 0;
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300331 clear_bit(MLX5_DROP_NEW_HEALTH_WORK, &health->flags);
Mohamad Haj Yahiae20204d2017-03-30 17:09:00 +0300332 clear_bit(MLX5_DROP_NEW_RECOVERY_WORK, &health->flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300333 health->health = &dev->iseg->health;
334 health->health_counter = &dev->iseg->health_counter;
335
336 health->timer.data = (unsigned long)dev;
337 health->timer.function = poll_health;
338 health->timer.expires = round_jiffies(jiffies + MLX5_HEALTH_POLL_INTERVAL);
339 add_timer(&health->timer);
340}
341
342void mlx5_stop_health_poll(struct mlx5_core_dev *dev)
343{
344 struct mlx5_core_health *health = &dev->priv.health;
345
346 del_timer_sync(&health->timer);
Eli Cohene126ba92013-07-07 17:25:49 +0300347}
348
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300349void mlx5_drain_health_wq(struct mlx5_core_dev *dev)
350{
351 struct mlx5_core_health *health = &dev->priv.health;
352
353 spin_lock(&health->wq_lock);
354 set_bit(MLX5_DROP_NEW_HEALTH_WORK, &health->flags);
Mohamad Haj Yahiae20204d2017-03-30 17:09:00 +0300355 set_bit(MLX5_DROP_NEW_RECOVERY_WORK, &health->flags);
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300356 spin_unlock(&health->wq_lock);
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300357 cancel_delayed_work_sync(&health->recover_work);
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300358 cancel_work_sync(&health->work);
359}
360
Mohamad Haj Yahiae20204d2017-03-30 17:09:00 +0300361void mlx5_drain_health_recovery(struct mlx5_core_dev *dev)
362{
363 struct mlx5_core_health *health = &dev->priv.health;
364
365 spin_lock(&health->wq_lock);
366 set_bit(MLX5_DROP_NEW_RECOVERY_WORK, &health->flags);
367 spin_unlock(&health->wq_lock);
368 cancel_delayed_work_sync(&dev->priv.health.recover_work);
369}
370
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300371void mlx5_health_cleanup(struct mlx5_core_dev *dev)
Eli Cohene126ba92013-07-07 17:25:49 +0300372{
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300373 struct mlx5_core_health *health = &dev->priv.health;
374
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300375 destroy_workqueue(health->wq);
Eli Cohene126ba92013-07-07 17:25:49 +0300376}
377
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300378int mlx5_health_init(struct mlx5_core_dev *dev)
Eli Cohene126ba92013-07-07 17:25:49 +0300379{
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300380 struct mlx5_core_health *health;
381 char *name;
382
383 health = &dev->priv.health;
384 name = kmalloc(64, GFP_KERNEL);
385 if (!name)
386 return -ENOMEM;
387
388 strcpy(name, "mlx5_health");
389 strcat(name, dev_name(&dev->pdev->dev));
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300390 health->wq = create_singlethread_workqueue(name);
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300391 kfree(name);
Mohamad Haj Yahia05ac2c02016-10-25 18:36:33 +0300392 if (!health->wq)
393 return -ENOMEM;
394 spin_lock_init(&health->wq_lock);
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300395 INIT_WORK(&health->work, health_care);
Mohamad Haj Yahia04c0c1ab2016-10-25 18:36:34 +0300396 INIT_DELAYED_WORK(&health->recover_work, health_recover);
Eli Cohenac6ea6e2015-10-08 17:14:00 +0300397
398 return 0;
Eli Cohene126ba92013-07-07 17:25:49 +0300399}