588d6b5e12110ade5807ad5f3eabfa4dfa1dca78
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx4 / catas.c
1 /*
2  * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
4  *
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.
32  */
33
34 #include <linux/workqueue.h>
35 #include <linux/module.h>
36
37 #include "mlx4.h"
38
39 enum {
40         MLX4_CATAS_POLL_INTERVAL        = 5 * HZ,
41 };
42
43
44
45 static int internal_err_reset = 1;
46 module_param(internal_err_reset, int, 0644);
47 MODULE_PARM_DESC(internal_err_reset,
48                  "Reset device on internal errors if non-zero"
49                  " (default 1, in SRIOV mode default is 0)");
50
51 static int read_vendor_id(struct mlx4_dev *dev)
52 {
53         u16 vendor_id = 0;
54         int ret;
55
56         ret = pci_read_config_word(dev->persist->pdev, 0, &vendor_id);
57         if (ret) {
58                 mlx4_err(dev, "Failed to read vendor ID, ret=%d\n", ret);
59                 return ret;
60         }
61
62         if (vendor_id == 0xffff) {
63                 mlx4_err(dev, "PCI can't be accessed to read vendor id\n");
64                 return -EINVAL;
65         }
66
67         return 0;
68 }
69
70 static int mlx4_reset_master(struct mlx4_dev *dev)
71 {
72         int err = 0;
73
74         if (!pci_channel_offline(dev->persist->pdev)) {
75                 err = read_vendor_id(dev);
76                 /* If PCI can't be accessed to read vendor ID we assume that its
77                  * link was disabled and chip was already reset.
78                  */
79                 if (err)
80                         return 0;
81
82                 err = mlx4_reset(dev);
83                 if (err)
84                         mlx4_err(dev, "Fail to reset HCA\n");
85         }
86
87         return err;
88 }
89
90 void mlx4_enter_error_state(struct mlx4_dev_persistent *persist)
91 {
92         int err;
93         struct mlx4_dev *dev;
94
95         if (!internal_err_reset)
96                 return;
97
98         mutex_lock(&persist->device_state_mutex);
99         if (persist->state & MLX4_DEVICE_STATE_INTERNAL_ERROR)
100                 goto out;
101
102         dev = persist->dev;
103         mlx4_err(dev, "device is going to be reset\n");
104         err = mlx4_reset_master(dev);
105         BUG_ON(err != 0);
106
107         dev->persist->state |= MLX4_DEVICE_STATE_INTERNAL_ERROR;
108         mlx4_err(dev, "device was reset successfully\n");
109         mutex_unlock(&persist->device_state_mutex);
110
111         /* At that step HW was already reset, now notify clients */
112         mlx4_dispatch_event(dev, MLX4_DEV_EVENT_CATASTROPHIC_ERROR, 0);
113         return;
114
115 out:
116         mutex_unlock(&persist->device_state_mutex);
117 }
118
119 static void mlx4_handle_error_state(struct mlx4_dev_persistent *persist)
120 {
121         int err = 0;
122
123         mlx4_enter_error_state(persist);
124         err = mlx4_restart_one(persist->pdev);
125         mlx4_info(persist->dev, "mlx4_restart_one was ended, ret=%d\n", err);
126 }
127
128 static void dump_err_buf(struct mlx4_dev *dev)
129 {
130         struct mlx4_priv *priv = mlx4_priv(dev);
131
132         int i;
133
134         mlx4_err(dev, "Internal error detected:\n");
135         for (i = 0; i < priv->fw.catas_size; ++i)
136                 mlx4_err(dev, "  buf[%02x]: %08x\n",
137                          i, swab32(readl(priv->catas_err.map + i)));
138 }
139
140 static void poll_catas(unsigned long dev_ptr)
141 {
142         struct mlx4_dev *dev = (struct mlx4_dev *) dev_ptr;
143         struct mlx4_priv *priv = mlx4_priv(dev);
144
145         if (readl(priv->catas_err.map)) {
146                 dump_err_buf(dev);
147                 goto internal_err;
148         }
149
150         if (dev->persist->state & MLX4_DEVICE_STATE_INTERNAL_ERROR) {
151                 mlx4_warn(dev, "Internal error mark was detected on device\n");
152                 goto internal_err;
153         }
154
155         mod_timer(&priv->catas_err.timer,
156                   round_jiffies(jiffies + MLX4_CATAS_POLL_INTERVAL));
157         return;
158
159 internal_err:
160         if (internal_err_reset)
161                 queue_work(dev->persist->catas_wq, &dev->persist->catas_work);
162 }
163
164 static void catas_reset(struct work_struct *work)
165 {
166         struct mlx4_dev_persistent *persist =
167                 container_of(work, struct mlx4_dev_persistent,
168                              catas_work);
169
170         mlx4_handle_error_state(persist);
171 }
172
173 void mlx4_start_catas_poll(struct mlx4_dev *dev)
174 {
175         struct mlx4_priv *priv = mlx4_priv(dev);
176         phys_addr_t addr;
177
178         /*If we are in SRIOV the default of the module param must be 0*/
179         if (mlx4_is_mfunc(dev))
180                 internal_err_reset = 0;
181
182         INIT_LIST_HEAD(&priv->catas_err.list);
183         init_timer(&priv->catas_err.timer);
184         priv->catas_err.map = NULL;
185
186         addr = pci_resource_start(dev->persist->pdev, priv->fw.catas_bar) +
187                 priv->fw.catas_offset;
188
189         priv->catas_err.map = ioremap(addr, priv->fw.catas_size * 4);
190         if (!priv->catas_err.map) {
191                 mlx4_warn(dev, "Failed to map internal error buffer at 0x%llx\n",
192                           (unsigned long long) addr);
193                 return;
194         }
195
196         priv->catas_err.timer.data     = (unsigned long) dev;
197         priv->catas_err.timer.function = poll_catas;
198         priv->catas_err.timer.expires  =
199                 round_jiffies(jiffies + MLX4_CATAS_POLL_INTERVAL);
200         add_timer(&priv->catas_err.timer);
201 }
202
203 void mlx4_stop_catas_poll(struct mlx4_dev *dev)
204 {
205         struct mlx4_priv *priv = mlx4_priv(dev);
206
207         del_timer_sync(&priv->catas_err.timer);
208
209         if (priv->catas_err.map) {
210                 iounmap(priv->catas_err.map);
211                 priv->catas_err.map = NULL;
212         }
213 }
214
215 int  mlx4_catas_init(struct mlx4_dev *dev)
216 {
217         INIT_WORK(&dev->persist->catas_work, catas_reset);
218         dev->persist->catas_wq = create_singlethread_workqueue("mlx4_health");
219         if (!dev->persist->catas_wq)
220                 return -ENOMEM;
221
222         return 0;
223 }
224
225 void mlx4_catas_end(struct mlx4_dev *dev)
226 {
227         if (dev->persist->catas_wq) {
228                 destroy_workqueue(dev->persist->catas_wq);
229                 dev->persist->catas_wq = NULL;
230         }
231 }