]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/ethernet/mellanox/mlx5/core/main.c
net/mlx5: Fix query ISSI flow
[karo-tx-linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / main.c
1 /*
2  * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
3  *
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/highmem.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/errno.h>
37 #include <linux/pci.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/slab.h>
40 #include <linux/io-mapping.h>
41 #include <linux/interrupt.h>
42 #include <linux/delay.h>
43 #include <linux/mlx5/driver.h>
44 #include <linux/mlx5/cq.h>
45 #include <linux/mlx5/qp.h>
46 #include <linux/mlx5/srq.h>
47 #include <linux/debugfs.h>
48 #include <linux/kmod.h>
49 #include <linux/mlx5/mlx5_ifc.h>
50 #ifdef CONFIG_RFS_ACCEL
51 #include <linux/cpu_rmap.h>
52 #endif
53 #include <net/devlink.h>
54 #include "mlx5_core.h"
55 #include "fs_core.h"
56 #ifdef CONFIG_MLX5_CORE_EN
57 #include "eswitch.h"
58 #endif
59
60 MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
61 MODULE_DESCRIPTION("Mellanox Connect-IB, ConnectX-4 core driver");
62 MODULE_LICENSE("Dual BSD/GPL");
63 MODULE_VERSION(DRIVER_VERSION);
64
65 unsigned int mlx5_core_debug_mask;
66 module_param_named(debug_mask, mlx5_core_debug_mask, uint, 0644);
67 MODULE_PARM_DESC(debug_mask, "debug mask: 1 = dump cmd data, 2 = dump cmd exec time, 3 = both. Default=0");
68
69 #define MLX5_DEFAULT_PROF       2
70 static unsigned int prof_sel = MLX5_DEFAULT_PROF;
71 module_param_named(prof_sel, prof_sel, uint, 0444);
72 MODULE_PARM_DESC(prof_sel, "profile selector. Valid range 0 - 2");
73
74 enum {
75         MLX5_ATOMIC_REQ_MODE_BE = 0x0,
76         MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS = 0x1,
77 };
78
79 static struct mlx5_profile profile[] = {
80         [0] = {
81                 .mask           = 0,
82         },
83         [1] = {
84                 .mask           = MLX5_PROF_MASK_QP_SIZE,
85                 .log_max_qp     = 12,
86         },
87         [2] = {
88                 .mask           = MLX5_PROF_MASK_QP_SIZE |
89                                   MLX5_PROF_MASK_MR_CACHE,
90                 .log_max_qp     = 17,
91                 .mr_cache[0]    = {
92                         .size   = 500,
93                         .limit  = 250
94                 },
95                 .mr_cache[1]    = {
96                         .size   = 500,
97                         .limit  = 250
98                 },
99                 .mr_cache[2]    = {
100                         .size   = 500,
101                         .limit  = 250
102                 },
103                 .mr_cache[3]    = {
104                         .size   = 500,
105                         .limit  = 250
106                 },
107                 .mr_cache[4]    = {
108                         .size   = 500,
109                         .limit  = 250
110                 },
111                 .mr_cache[5]    = {
112                         .size   = 500,
113                         .limit  = 250
114                 },
115                 .mr_cache[6]    = {
116                         .size   = 500,
117                         .limit  = 250
118                 },
119                 .mr_cache[7]    = {
120                         .size   = 500,
121                         .limit  = 250
122                 },
123                 .mr_cache[8]    = {
124                         .size   = 500,
125                         .limit  = 250
126                 },
127                 .mr_cache[9]    = {
128                         .size   = 500,
129                         .limit  = 250
130                 },
131                 .mr_cache[10]   = {
132                         .size   = 500,
133                         .limit  = 250
134                 },
135                 .mr_cache[11]   = {
136                         .size   = 500,
137                         .limit  = 250
138                 },
139                 .mr_cache[12]   = {
140                         .size   = 64,
141                         .limit  = 32
142                 },
143                 .mr_cache[13]   = {
144                         .size   = 32,
145                         .limit  = 16
146                 },
147                 .mr_cache[14]   = {
148                         .size   = 16,
149                         .limit  = 8
150                 },
151                 .mr_cache[15]   = {
152                         .size   = 8,
153                         .limit  = 4
154                 },
155         },
156 };
157
158 #define FW_INIT_TIMEOUT_MILI    2000
159 #define FW_INIT_WAIT_MS         2
160
161 static int wait_fw_init(struct mlx5_core_dev *dev, u32 max_wait_mili)
162 {
163         unsigned long end = jiffies + msecs_to_jiffies(max_wait_mili);
164         int err = 0;
165
166         while (fw_initializing(dev)) {
167                 if (time_after(jiffies, end)) {
168                         err = -EBUSY;
169                         break;
170                 }
171                 msleep(FW_INIT_WAIT_MS);
172         }
173
174         return err;
175 }
176
177 static int set_dma_caps(struct pci_dev *pdev)
178 {
179         int err;
180
181         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
182         if (err) {
183                 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask\n");
184                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
185                 if (err) {
186                         dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting\n");
187                         return err;
188                 }
189         }
190
191         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
192         if (err) {
193                 dev_warn(&pdev->dev,
194                          "Warning: couldn't set 64-bit consistent PCI DMA mask\n");
195                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
196                 if (err) {
197                         dev_err(&pdev->dev,
198                                 "Can't set consistent PCI DMA mask, aborting\n");
199                         return err;
200                 }
201         }
202
203         dma_set_max_seg_size(&pdev->dev, 2u * 1024 * 1024 * 1024);
204         return err;
205 }
206
207 static int mlx5_pci_enable_device(struct mlx5_core_dev *dev)
208 {
209         struct pci_dev *pdev = dev->pdev;
210         int err = 0;
211
212         mutex_lock(&dev->pci_status_mutex);
213         if (dev->pci_status == MLX5_PCI_STATUS_DISABLED) {
214                 err = pci_enable_device(pdev);
215                 if (!err)
216                         dev->pci_status = MLX5_PCI_STATUS_ENABLED;
217         }
218         mutex_unlock(&dev->pci_status_mutex);
219
220         return err;
221 }
222
223 static void mlx5_pci_disable_device(struct mlx5_core_dev *dev)
224 {
225         struct pci_dev *pdev = dev->pdev;
226
227         mutex_lock(&dev->pci_status_mutex);
228         if (dev->pci_status == MLX5_PCI_STATUS_ENABLED) {
229                 pci_disable_device(pdev);
230                 dev->pci_status = MLX5_PCI_STATUS_DISABLED;
231         }
232         mutex_unlock(&dev->pci_status_mutex);
233 }
234
235 static int request_bar(struct pci_dev *pdev)
236 {
237         int err = 0;
238
239         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
240                 dev_err(&pdev->dev, "Missing registers BAR, aborting\n");
241                 return -ENODEV;
242         }
243
244         err = pci_request_regions(pdev, DRIVER_NAME);
245         if (err)
246                 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
247
248         return err;
249 }
250
251 static void release_bar(struct pci_dev *pdev)
252 {
253         pci_release_regions(pdev);
254 }
255
256 static int mlx5_enable_msix(struct mlx5_core_dev *dev)
257 {
258         struct mlx5_priv *priv = &dev->priv;
259         struct mlx5_eq_table *table = &priv->eq_table;
260         int num_eqs = 1 << MLX5_CAP_GEN(dev, log_max_eq);
261         int nvec;
262         int i;
263
264         nvec = MLX5_CAP_GEN(dev, num_ports) * num_online_cpus() +
265                MLX5_EQ_VEC_COMP_BASE;
266         nvec = min_t(int, nvec, num_eqs);
267         if (nvec <= MLX5_EQ_VEC_COMP_BASE)
268                 return -ENOMEM;
269
270         priv->msix_arr = kcalloc(nvec, sizeof(*priv->msix_arr), GFP_KERNEL);
271
272         priv->irq_info = kcalloc(nvec, sizeof(*priv->irq_info), GFP_KERNEL);
273         if (!priv->msix_arr || !priv->irq_info)
274                 goto err_free_msix;
275
276         for (i = 0; i < nvec; i++)
277                 priv->msix_arr[i].entry = i;
278
279         nvec = pci_enable_msix_range(dev->pdev, priv->msix_arr,
280                                      MLX5_EQ_VEC_COMP_BASE + 1, nvec);
281         if (nvec < 0)
282                 return nvec;
283
284         table->num_comp_vectors = nvec - MLX5_EQ_VEC_COMP_BASE;
285
286         return 0;
287
288 err_free_msix:
289         kfree(priv->irq_info);
290         kfree(priv->msix_arr);
291         return -ENOMEM;
292 }
293
294 static void mlx5_disable_msix(struct mlx5_core_dev *dev)
295 {
296         struct mlx5_priv *priv = &dev->priv;
297
298         pci_disable_msix(dev->pdev);
299         kfree(priv->irq_info);
300         kfree(priv->msix_arr);
301 }
302
303 struct mlx5_reg_host_endianess {
304         u8      he;
305         u8      rsvd[15];
306 };
307
308
309 #define CAP_MASK(pos, size) ((u64)((1 << (size)) - 1) << (pos))
310
311 enum {
312         MLX5_CAP_BITS_RW_MASK = CAP_MASK(MLX5_CAP_OFF_CMDIF_CSUM, 2) |
313                                 MLX5_DEV_CAP_FLAG_DCT,
314 };
315
316 static u16 to_fw_pkey_sz(struct mlx5_core_dev *dev, u32 size)
317 {
318         switch (size) {
319         case 128:
320                 return 0;
321         case 256:
322                 return 1;
323         case 512:
324                 return 2;
325         case 1024:
326                 return 3;
327         case 2048:
328                 return 4;
329         case 4096:
330                 return 5;
331         default:
332                 mlx5_core_warn(dev, "invalid pkey table size %d\n", size);
333                 return 0;
334         }
335 }
336
337 static int mlx5_core_get_caps_mode(struct mlx5_core_dev *dev,
338                                    enum mlx5_cap_type cap_type,
339                                    enum mlx5_cap_mode cap_mode)
340 {
341         u8 in[MLX5_ST_SZ_BYTES(query_hca_cap_in)];
342         int out_sz = MLX5_ST_SZ_BYTES(query_hca_cap_out);
343         void *out, *hca_caps;
344         u16 opmod = (cap_type << 1) | (cap_mode & 0x01);
345         int err;
346
347         memset(in, 0, sizeof(in));
348         out = kzalloc(out_sz, GFP_KERNEL);
349         if (!out)
350                 return -ENOMEM;
351
352         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
353         MLX5_SET(query_hca_cap_in, in, op_mod, opmod);
354         err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
355         if (err) {
356                 mlx5_core_warn(dev,
357                                "QUERY_HCA_CAP : type(%x) opmode(%x) Failed(%d)\n",
358                                cap_type, cap_mode, err);
359                 goto query_ex;
360         }
361
362         hca_caps =  MLX5_ADDR_OF(query_hca_cap_out, out, capability);
363
364         switch (cap_mode) {
365         case HCA_CAP_OPMOD_GET_MAX:
366                 memcpy(dev->hca_caps_max[cap_type], hca_caps,
367                        MLX5_UN_SZ_BYTES(hca_cap_union));
368                 break;
369         case HCA_CAP_OPMOD_GET_CUR:
370                 memcpy(dev->hca_caps_cur[cap_type], hca_caps,
371                        MLX5_UN_SZ_BYTES(hca_cap_union));
372                 break;
373         default:
374                 mlx5_core_warn(dev,
375                                "Tried to query dev cap type(%x) with wrong opmode(%x)\n",
376                                cap_type, cap_mode);
377                 err = -EINVAL;
378                 break;
379         }
380 query_ex:
381         kfree(out);
382         return err;
383 }
384
385 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type)
386 {
387         int ret;
388
389         ret = mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_CUR);
390         if (ret)
391                 return ret;
392         return mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_MAX);
393 }
394
395 static int set_caps(struct mlx5_core_dev *dev, void *in, int in_sz, int opmod)
396 {
397         u32 out[MLX5_ST_SZ_DW(set_hca_cap_out)] = {0};
398
399         MLX5_SET(set_hca_cap_in, in, opcode, MLX5_CMD_OP_SET_HCA_CAP);
400         MLX5_SET(set_hca_cap_in, in, op_mod, opmod << 1);
401         return mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
402 }
403
404 static int handle_hca_cap_atomic(struct mlx5_core_dev *dev)
405 {
406         void *set_ctx;
407         void *set_hca_cap;
408         int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
409         int req_endianness;
410         int err;
411
412         if (MLX5_CAP_GEN(dev, atomic)) {
413                 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
414                 if (err)
415                         return err;
416         } else {
417                 return 0;
418         }
419
420         req_endianness =
421                 MLX5_CAP_ATOMIC(dev,
422                                 supported_atomic_req_8B_endianess_mode_1);
423
424         if (req_endianness != MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS)
425                 return 0;
426
427         set_ctx = kzalloc(set_sz, GFP_KERNEL);
428         if (!set_ctx)
429                 return -ENOMEM;
430
431         set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
432
433         /* Set requestor to host endianness */
434         MLX5_SET(atomic_caps, set_hca_cap, atomic_req_8B_endianess_mode,
435                  MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS);
436
437         err = set_caps(dev, set_ctx, set_sz, MLX5_SET_HCA_CAP_OP_MOD_ATOMIC);
438
439         kfree(set_ctx);
440         return err;
441 }
442
443 static int handle_hca_cap(struct mlx5_core_dev *dev)
444 {
445         void *set_ctx = NULL;
446         struct mlx5_profile *prof = dev->profile;
447         int err = -ENOMEM;
448         int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
449         void *set_hca_cap;
450
451         set_ctx = kzalloc(set_sz, GFP_KERNEL);
452         if (!set_ctx)
453                 goto query_ex;
454
455         err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
456         if (err)
457                 goto query_ex;
458
459         set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx,
460                                    capability);
461         memcpy(set_hca_cap, dev->hca_caps_cur[MLX5_CAP_GENERAL],
462                MLX5_ST_SZ_BYTES(cmd_hca_cap));
463
464         mlx5_core_dbg(dev, "Current Pkey table size %d Setting new size %d\n",
465                       mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(dev, pkey_table_size)),
466                       128);
467         /* we limit the size of the pkey table to 128 entries for now */
468         MLX5_SET(cmd_hca_cap, set_hca_cap, pkey_table_size,
469                  to_fw_pkey_sz(dev, 128));
470
471         if (prof->mask & MLX5_PROF_MASK_QP_SIZE)
472                 MLX5_SET(cmd_hca_cap, set_hca_cap, log_max_qp,
473                          prof->log_max_qp);
474
475         /* disable cmdif checksum */
476         MLX5_SET(cmd_hca_cap, set_hca_cap, cmdif_checksum, 0);
477
478         MLX5_SET(cmd_hca_cap, set_hca_cap, log_uar_page_sz, PAGE_SHIFT - 12);
479
480         err = set_caps(dev, set_ctx, set_sz,
481                        MLX5_SET_HCA_CAP_OP_MOD_GENERAL_DEVICE);
482
483 query_ex:
484         kfree(set_ctx);
485         return err;
486 }
487
488 static int set_hca_ctrl(struct mlx5_core_dev *dev)
489 {
490         struct mlx5_reg_host_endianess he_in;
491         struct mlx5_reg_host_endianess he_out;
492         int err;
493
494         if (!mlx5_core_is_pf(dev))
495                 return 0;
496
497         memset(&he_in, 0, sizeof(he_in));
498         he_in.he = MLX5_SET_HOST_ENDIANNESS;
499         err = mlx5_core_access_reg(dev, &he_in,  sizeof(he_in),
500                                         &he_out, sizeof(he_out),
501                                         MLX5_REG_HOST_ENDIANNESS, 0, 1);
502         return err;
503 }
504
505 int mlx5_core_enable_hca(struct mlx5_core_dev *dev, u16 func_id)
506 {
507         u32 out[MLX5_ST_SZ_DW(enable_hca_out)] = {0};
508         u32 in[MLX5_ST_SZ_DW(enable_hca_in)]   = {0};
509
510         MLX5_SET(enable_hca_in, in, opcode, MLX5_CMD_OP_ENABLE_HCA);
511         MLX5_SET(enable_hca_in, in, function_id, func_id);
512         return mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
513 }
514
515 int mlx5_core_disable_hca(struct mlx5_core_dev *dev, u16 func_id)
516 {
517         u32 out[MLX5_ST_SZ_DW(disable_hca_out)] = {0};
518         u32 in[MLX5_ST_SZ_DW(disable_hca_in)]   = {0};
519
520         MLX5_SET(disable_hca_in, in, opcode, MLX5_CMD_OP_DISABLE_HCA);
521         MLX5_SET(disable_hca_in, in, function_id, func_id);
522         return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
523 }
524
525 cycle_t mlx5_read_internal_timer(struct mlx5_core_dev *dev)
526 {
527         u32 timer_h, timer_h1, timer_l;
528
529         timer_h = ioread32be(&dev->iseg->internal_timer_h);
530         timer_l = ioread32be(&dev->iseg->internal_timer_l);
531         timer_h1 = ioread32be(&dev->iseg->internal_timer_h);
532         if (timer_h != timer_h1) /* wrap around */
533                 timer_l = ioread32be(&dev->iseg->internal_timer_l);
534
535         return (cycle_t)timer_l | (cycle_t)timer_h1 << 32;
536 }
537
538 static int mlx5_irq_set_affinity_hint(struct mlx5_core_dev *mdev, int i)
539 {
540         struct mlx5_priv *priv  = &mdev->priv;
541         struct msix_entry *msix = priv->msix_arr;
542         int irq                 = msix[i + MLX5_EQ_VEC_COMP_BASE].vector;
543         int numa_node           = priv->numa_node;
544         int err;
545
546         if (!zalloc_cpumask_var(&priv->irq_info[i].mask, GFP_KERNEL)) {
547                 mlx5_core_warn(mdev, "zalloc_cpumask_var failed");
548                 return -ENOMEM;
549         }
550
551         cpumask_set_cpu(cpumask_local_spread(i, numa_node),
552                         priv->irq_info[i].mask);
553
554         err = irq_set_affinity_hint(irq, priv->irq_info[i].mask);
555         if (err) {
556                 mlx5_core_warn(mdev, "irq_set_affinity_hint failed,irq 0x%.4x",
557                                irq);
558                 goto err_clear_mask;
559         }
560
561         return 0;
562
563 err_clear_mask:
564         free_cpumask_var(priv->irq_info[i].mask);
565         return err;
566 }
567
568 static void mlx5_irq_clear_affinity_hint(struct mlx5_core_dev *mdev, int i)
569 {
570         struct mlx5_priv *priv  = &mdev->priv;
571         struct msix_entry *msix = priv->msix_arr;
572         int irq                 = msix[i + MLX5_EQ_VEC_COMP_BASE].vector;
573
574         irq_set_affinity_hint(irq, NULL);
575         free_cpumask_var(priv->irq_info[i].mask);
576 }
577
578 static int mlx5_irq_set_affinity_hints(struct mlx5_core_dev *mdev)
579 {
580         int err;
581         int i;
582
583         for (i = 0; i < mdev->priv.eq_table.num_comp_vectors; i++) {
584                 err = mlx5_irq_set_affinity_hint(mdev, i);
585                 if (err)
586                         goto err_out;
587         }
588
589         return 0;
590
591 err_out:
592         for (i--; i >= 0; i--)
593                 mlx5_irq_clear_affinity_hint(mdev, i);
594
595         return err;
596 }
597
598 static void mlx5_irq_clear_affinity_hints(struct mlx5_core_dev *mdev)
599 {
600         int i;
601
602         for (i = 0; i < mdev->priv.eq_table.num_comp_vectors; i++)
603                 mlx5_irq_clear_affinity_hint(mdev, i);
604 }
605
606 int mlx5_vector2eqn(struct mlx5_core_dev *dev, int vector, int *eqn,
607                     unsigned int *irqn)
608 {
609         struct mlx5_eq_table *table = &dev->priv.eq_table;
610         struct mlx5_eq *eq, *n;
611         int err = -ENOENT;
612
613         spin_lock(&table->lock);
614         list_for_each_entry_safe(eq, n, &table->comp_eqs_list, list) {
615                 if (eq->index == vector) {
616                         *eqn = eq->eqn;
617                         *irqn = eq->irqn;
618                         err = 0;
619                         break;
620                 }
621         }
622         spin_unlock(&table->lock);
623
624         return err;
625 }
626 EXPORT_SYMBOL(mlx5_vector2eqn);
627
628 struct mlx5_eq *mlx5_eqn2eq(struct mlx5_core_dev *dev, int eqn)
629 {
630         struct mlx5_eq_table *table = &dev->priv.eq_table;
631         struct mlx5_eq *eq;
632
633         spin_lock(&table->lock);
634         list_for_each_entry(eq, &table->comp_eqs_list, list)
635                 if (eq->eqn == eqn) {
636                         spin_unlock(&table->lock);
637                         return eq;
638                 }
639
640         spin_unlock(&table->lock);
641
642         return ERR_PTR(-ENOENT);
643 }
644
645 static void free_comp_eqs(struct mlx5_core_dev *dev)
646 {
647         struct mlx5_eq_table *table = &dev->priv.eq_table;
648         struct mlx5_eq *eq, *n;
649
650 #ifdef CONFIG_RFS_ACCEL
651         if (dev->rmap) {
652                 free_irq_cpu_rmap(dev->rmap);
653                 dev->rmap = NULL;
654         }
655 #endif
656         spin_lock(&table->lock);
657         list_for_each_entry_safe(eq, n, &table->comp_eqs_list, list) {
658                 list_del(&eq->list);
659                 spin_unlock(&table->lock);
660                 if (mlx5_destroy_unmap_eq(dev, eq))
661                         mlx5_core_warn(dev, "failed to destroy EQ 0x%x\n",
662                                        eq->eqn);
663                 kfree(eq);
664                 spin_lock(&table->lock);
665         }
666         spin_unlock(&table->lock);
667 }
668
669 static int alloc_comp_eqs(struct mlx5_core_dev *dev)
670 {
671         struct mlx5_eq_table *table = &dev->priv.eq_table;
672         char name[MLX5_MAX_IRQ_NAME];
673         struct mlx5_eq *eq;
674         int ncomp_vec;
675         int nent;
676         int err;
677         int i;
678
679         INIT_LIST_HEAD(&table->comp_eqs_list);
680         ncomp_vec = table->num_comp_vectors;
681         nent = MLX5_COMP_EQ_SIZE;
682 #ifdef CONFIG_RFS_ACCEL
683         dev->rmap = alloc_irq_cpu_rmap(ncomp_vec);
684         if (!dev->rmap)
685                 return -ENOMEM;
686 #endif
687         for (i = 0; i < ncomp_vec; i++) {
688                 eq = kzalloc(sizeof(*eq), GFP_KERNEL);
689                 if (!eq) {
690                         err = -ENOMEM;
691                         goto clean;
692                 }
693
694 #ifdef CONFIG_RFS_ACCEL
695                 irq_cpu_rmap_add(dev->rmap,
696                                  dev->priv.msix_arr[i + MLX5_EQ_VEC_COMP_BASE].vector);
697 #endif
698                 snprintf(name, MLX5_MAX_IRQ_NAME, "mlx5_comp%d", i);
699                 err = mlx5_create_map_eq(dev, eq,
700                                          i + MLX5_EQ_VEC_COMP_BASE, nent, 0,
701                                          name, &dev->priv.uuari.uars[0]);
702                 if (err) {
703                         kfree(eq);
704                         goto clean;
705                 }
706                 mlx5_core_dbg(dev, "allocated completion EQN %d\n", eq->eqn);
707                 eq->index = i;
708                 spin_lock(&table->lock);
709                 list_add_tail(&eq->list, &table->comp_eqs_list);
710                 spin_unlock(&table->lock);
711         }
712
713         return 0;
714
715 clean:
716         free_comp_eqs(dev);
717         return err;
718 }
719
720 static int mlx5_core_set_issi(struct mlx5_core_dev *dev)
721 {
722         u32 query_in[MLX5_ST_SZ_DW(query_issi_in)]   = {0};
723         u32 query_out[MLX5_ST_SZ_DW(query_issi_out)] = {0};
724         u32 sup_issi;
725         int err;
726
727         MLX5_SET(query_issi_in, query_in, opcode, MLX5_CMD_OP_QUERY_ISSI);
728         err = mlx5_cmd_exec(dev, query_in, sizeof(query_in),
729                             query_out, sizeof(query_out));
730         if (err) {
731                 u32 syndrome;
732                 u8 status;
733
734                 mlx5_cmd_mbox_status(query_out, &status, &syndrome);
735                 if (!status || syndrome == MLX5_DRIVER_SYND) {
736                         mlx5_core_err(dev, "Failed to query ISSI err(%d) status(%d) synd(%d)\n",
737                                       err, status, syndrome);
738                         return err;
739                 }
740
741                 mlx5_core_warn(dev, "Query ISSI is not supported by FW, ISSI is 0\n");
742                 dev->issi = 0;
743                 return 0;
744         }
745
746         sup_issi = MLX5_GET(query_issi_out, query_out, supported_issi_dw0);
747
748         if (sup_issi & (1 << 1)) {
749                 u32 set_in[MLX5_ST_SZ_DW(set_issi_in)]   = {0};
750                 u32 set_out[MLX5_ST_SZ_DW(set_issi_out)] = {0};
751
752                 MLX5_SET(set_issi_in, set_in, opcode, MLX5_CMD_OP_SET_ISSI);
753                 MLX5_SET(set_issi_in, set_in, current_issi, 1);
754                 err = mlx5_cmd_exec(dev, set_in, sizeof(set_in),
755                                     set_out, sizeof(set_out));
756                 if (err) {
757                         mlx5_core_err(dev, "Failed to set ISSI to 1 err(%d)\n",
758                                       err);
759                         return err;
760                 }
761
762                 dev->issi = 1;
763
764                 return 0;
765         } else if (sup_issi & (1 << 0) || !sup_issi) {
766                 return 0;
767         }
768
769         return -ENOTSUPP;
770 }
771
772
773 static int mlx5_pci_init(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
774 {
775         struct pci_dev *pdev = dev->pdev;
776         int err = 0;
777
778         pci_set_drvdata(dev->pdev, dev);
779         strncpy(priv->name, dev_name(&pdev->dev), MLX5_MAX_NAME_LEN);
780         priv->name[MLX5_MAX_NAME_LEN - 1] = 0;
781
782         mutex_init(&priv->pgdir_mutex);
783         INIT_LIST_HEAD(&priv->pgdir_list);
784         spin_lock_init(&priv->mkey_lock);
785
786         mutex_init(&priv->alloc_mutex);
787
788         priv->numa_node = dev_to_node(&dev->pdev->dev);
789
790         priv->dbg_root = debugfs_create_dir(dev_name(&pdev->dev), mlx5_debugfs_root);
791         if (!priv->dbg_root)
792                 return -ENOMEM;
793
794         err = mlx5_pci_enable_device(dev);
795         if (err) {
796                 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
797                 goto err_dbg;
798         }
799
800         err = request_bar(pdev);
801         if (err) {
802                 dev_err(&pdev->dev, "error requesting BARs, aborting\n");
803                 goto err_disable;
804         }
805
806         pci_set_master(pdev);
807
808         err = set_dma_caps(pdev);
809         if (err) {
810                 dev_err(&pdev->dev, "Failed setting DMA capabilities mask, aborting\n");
811                 goto err_clr_master;
812         }
813
814         dev->iseg_base = pci_resource_start(dev->pdev, 0);
815         dev->iseg = ioremap(dev->iseg_base, sizeof(*dev->iseg));
816         if (!dev->iseg) {
817                 err = -ENOMEM;
818                 dev_err(&pdev->dev, "Failed mapping initialization segment, aborting\n");
819                 goto err_clr_master;
820         }
821
822         return 0;
823
824 err_clr_master:
825         pci_clear_master(dev->pdev);
826         release_bar(dev->pdev);
827 err_disable:
828         mlx5_pci_disable_device(dev);
829
830 err_dbg:
831         debugfs_remove(priv->dbg_root);
832         return err;
833 }
834
835 static void mlx5_pci_close(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
836 {
837         iounmap(dev->iseg);
838         pci_clear_master(dev->pdev);
839         release_bar(dev->pdev);
840         mlx5_pci_disable_device(dev);
841         debugfs_remove(priv->dbg_root);
842 }
843
844 static int mlx5_init_once(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
845 {
846         struct pci_dev *pdev = dev->pdev;
847         int err;
848
849         err = mlx5_query_board_id(dev);
850         if (err) {
851                 dev_err(&pdev->dev, "query board id failed\n");
852                 goto out;
853         }
854
855         err = mlx5_eq_init(dev);
856         if (err) {
857                 dev_err(&pdev->dev, "failed to initialize eq\n");
858                 goto out;
859         }
860
861         MLX5_INIT_DOORBELL_LOCK(&priv->cq_uar_lock);
862
863         err = mlx5_init_cq_table(dev);
864         if (err) {
865                 dev_err(&pdev->dev, "failed to initialize cq table\n");
866                 goto err_eq_cleanup;
867         }
868
869         mlx5_init_qp_table(dev);
870
871         mlx5_init_srq_table(dev);
872
873         mlx5_init_mkey_table(dev);
874
875         err = mlx5_init_rl_table(dev);
876         if (err) {
877                 dev_err(&pdev->dev, "Failed to init rate limiting\n");
878                 goto err_tables_cleanup;
879         }
880
881 #ifdef CONFIG_MLX5_CORE_EN
882         err = mlx5_eswitch_init(dev);
883         if (err) {
884                 dev_err(&pdev->dev, "Failed to init eswitch %d\n", err);
885                 goto err_rl_cleanup;
886         }
887 #endif
888
889         err = mlx5_sriov_init(dev);
890         if (err) {
891                 dev_err(&pdev->dev, "Failed to init sriov %d\n", err);
892                 goto err_eswitch_cleanup;
893         }
894
895         return 0;
896
897 err_eswitch_cleanup:
898 #ifdef CONFIG_MLX5_CORE_EN
899         mlx5_eswitch_cleanup(dev->priv.eswitch);
900
901 err_rl_cleanup:
902 #endif
903         mlx5_cleanup_rl_table(dev);
904
905 err_tables_cleanup:
906         mlx5_cleanup_mkey_table(dev);
907         mlx5_cleanup_srq_table(dev);
908         mlx5_cleanup_qp_table(dev);
909         mlx5_cleanup_cq_table(dev);
910
911 err_eq_cleanup:
912         mlx5_eq_cleanup(dev);
913
914 out:
915         return err;
916 }
917
918 static void mlx5_cleanup_once(struct mlx5_core_dev *dev)
919 {
920         mlx5_sriov_cleanup(dev);
921 #ifdef CONFIG_MLX5_CORE_EN
922         mlx5_eswitch_cleanup(dev->priv.eswitch);
923 #endif
924         mlx5_cleanup_rl_table(dev);
925         mlx5_cleanup_mkey_table(dev);
926         mlx5_cleanup_srq_table(dev);
927         mlx5_cleanup_qp_table(dev);
928         mlx5_cleanup_cq_table(dev);
929         mlx5_eq_cleanup(dev);
930 }
931
932 static int mlx5_load_one(struct mlx5_core_dev *dev, struct mlx5_priv *priv,
933                          bool boot)
934 {
935         struct pci_dev *pdev = dev->pdev;
936         int err;
937
938         mutex_lock(&dev->intf_state_mutex);
939         if (test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
940                 dev_warn(&dev->pdev->dev, "%s: interface is up, NOP\n",
941                          __func__);
942                 goto out;
943         }
944
945         dev_info(&pdev->dev, "firmware version: %d.%d.%d\n", fw_rev_maj(dev),
946                  fw_rev_min(dev), fw_rev_sub(dev));
947
948         /* on load removing any previous indication of internal error, device is
949          * up
950          */
951         dev->state = MLX5_DEVICE_STATE_UP;
952
953         err = mlx5_cmd_init(dev);
954         if (err) {
955                 dev_err(&pdev->dev, "Failed initializing command interface, aborting\n");
956                 goto out_err;
957         }
958
959         err = wait_fw_init(dev, FW_INIT_TIMEOUT_MILI);
960         if (err) {
961                 dev_err(&dev->pdev->dev, "Firmware over %d MS in initializing state, aborting\n",
962                         FW_INIT_TIMEOUT_MILI);
963                 goto out_err;
964         }
965
966         err = mlx5_core_enable_hca(dev, 0);
967         if (err) {
968                 dev_err(&pdev->dev, "enable hca failed\n");
969                 goto err_cmd_cleanup;
970         }
971
972         err = mlx5_core_set_issi(dev);
973         if (err) {
974                 dev_err(&pdev->dev, "failed to set issi\n");
975                 goto err_disable_hca;
976         }
977
978         err = mlx5_satisfy_startup_pages(dev, 1);
979         if (err) {
980                 dev_err(&pdev->dev, "failed to allocate boot pages\n");
981                 goto err_disable_hca;
982         }
983
984         err = set_hca_ctrl(dev);
985         if (err) {
986                 dev_err(&pdev->dev, "set_hca_ctrl failed\n");
987                 goto reclaim_boot_pages;
988         }
989
990         err = handle_hca_cap(dev);
991         if (err) {
992                 dev_err(&pdev->dev, "handle_hca_cap failed\n");
993                 goto reclaim_boot_pages;
994         }
995
996         err = handle_hca_cap_atomic(dev);
997         if (err) {
998                 dev_err(&pdev->dev, "handle_hca_cap_atomic failed\n");
999                 goto reclaim_boot_pages;
1000         }
1001
1002         err = mlx5_satisfy_startup_pages(dev, 0);
1003         if (err) {
1004                 dev_err(&pdev->dev, "failed to allocate init pages\n");
1005                 goto reclaim_boot_pages;
1006         }
1007
1008         err = mlx5_pagealloc_start(dev);
1009         if (err) {
1010                 dev_err(&pdev->dev, "mlx5_pagealloc_start failed\n");
1011                 goto reclaim_boot_pages;
1012         }
1013
1014         err = mlx5_cmd_init_hca(dev);
1015         if (err) {
1016                 dev_err(&pdev->dev, "init hca failed\n");
1017                 goto err_pagealloc_stop;
1018         }
1019
1020         mlx5_start_health_poll(dev);
1021
1022         err = mlx5_query_hca_caps(dev);
1023         if (err) {
1024                 dev_err(&pdev->dev, "query hca failed\n");
1025                 goto err_stop_poll;
1026         }
1027
1028         if (boot && mlx5_init_once(dev, priv)) {
1029                 dev_err(&pdev->dev, "sw objs init failed\n");
1030                 goto err_stop_poll;
1031         }
1032
1033         err = mlx5_enable_msix(dev);
1034         if (err) {
1035                 dev_err(&pdev->dev, "enable msix failed\n");
1036                 goto err_cleanup_once;
1037         }
1038
1039         err = mlx5_alloc_uuars(dev, &priv->uuari);
1040         if (err) {
1041                 dev_err(&pdev->dev, "Failed allocating uar, aborting\n");
1042                 goto err_disable_msix;
1043         }
1044
1045         err = mlx5_start_eqs(dev);
1046         if (err) {
1047                 dev_err(&pdev->dev, "Failed to start pages and async EQs\n");
1048                 goto err_free_uar;
1049         }
1050
1051         err = alloc_comp_eqs(dev);
1052         if (err) {
1053                 dev_err(&pdev->dev, "Failed to alloc completion EQs\n");
1054                 goto err_stop_eqs;
1055         }
1056
1057         err = mlx5_irq_set_affinity_hints(dev);
1058         if (err) {
1059                 dev_err(&pdev->dev, "Failed to alloc affinity hint cpumask\n");
1060                 goto err_affinity_hints;
1061         }
1062
1063         err = mlx5_init_fs(dev);
1064         if (err) {
1065                 dev_err(&pdev->dev, "Failed to init flow steering\n");
1066                 goto err_fs;
1067         }
1068
1069 #ifdef CONFIG_MLX5_CORE_EN
1070         mlx5_eswitch_attach(dev->priv.eswitch);
1071 #endif
1072
1073         err = mlx5_sriov_attach(dev);
1074         if (err) {
1075                 dev_err(&pdev->dev, "sriov init failed %d\n", err);
1076                 goto err_sriov;
1077         }
1078
1079         if (mlx5_device_registered(dev)) {
1080                 mlx5_attach_device(dev);
1081         } else {
1082                 err = mlx5_register_device(dev);
1083                 if (err) {
1084                         dev_err(&pdev->dev, "mlx5_register_device failed %d\n", err);
1085                         goto err_reg_dev;
1086                 }
1087         }
1088
1089         clear_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state);
1090         set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1091 out:
1092         mutex_unlock(&dev->intf_state_mutex);
1093
1094         return 0;
1095
1096 err_reg_dev:
1097         mlx5_sriov_detach(dev);
1098
1099 err_sriov:
1100 #ifdef CONFIG_MLX5_CORE_EN
1101         mlx5_eswitch_detach(dev->priv.eswitch);
1102 #endif
1103         mlx5_cleanup_fs(dev);
1104
1105 err_fs:
1106         mlx5_irq_clear_affinity_hints(dev);
1107
1108 err_affinity_hints:
1109         free_comp_eqs(dev);
1110
1111 err_stop_eqs:
1112         mlx5_stop_eqs(dev);
1113
1114 err_free_uar:
1115         mlx5_free_uuars(dev, &priv->uuari);
1116
1117 err_disable_msix:
1118         mlx5_disable_msix(dev);
1119
1120 err_cleanup_once:
1121         if (boot)
1122                 mlx5_cleanup_once(dev);
1123
1124 err_stop_poll:
1125         mlx5_stop_health_poll(dev);
1126         if (mlx5_cmd_teardown_hca(dev)) {
1127                 dev_err(&dev->pdev->dev, "tear_down_hca failed, skip cleanup\n");
1128                 goto out_err;
1129         }
1130
1131 err_pagealloc_stop:
1132         mlx5_pagealloc_stop(dev);
1133
1134 reclaim_boot_pages:
1135         mlx5_reclaim_startup_pages(dev);
1136
1137 err_disable_hca:
1138         mlx5_core_disable_hca(dev, 0);
1139
1140 err_cmd_cleanup:
1141         mlx5_cmd_cleanup(dev);
1142
1143 out_err:
1144         dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
1145         mutex_unlock(&dev->intf_state_mutex);
1146
1147         return err;
1148 }
1149
1150 static int mlx5_unload_one(struct mlx5_core_dev *dev, struct mlx5_priv *priv,
1151                            bool cleanup)
1152 {
1153         int err = 0;
1154
1155         mutex_lock(&dev->intf_state_mutex);
1156         if (test_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state)) {
1157                 dev_warn(&dev->pdev->dev, "%s: interface is down, NOP\n",
1158                          __func__);
1159                 if (cleanup)
1160                         mlx5_cleanup_once(dev);
1161                 goto out;
1162         }
1163
1164         if (mlx5_device_registered(dev))
1165                 mlx5_detach_device(dev);
1166
1167         mlx5_sriov_detach(dev);
1168 #ifdef CONFIG_MLX5_CORE_EN
1169         mlx5_eswitch_detach(dev->priv.eswitch);
1170 #endif
1171         mlx5_cleanup_fs(dev);
1172         mlx5_irq_clear_affinity_hints(dev);
1173         free_comp_eqs(dev);
1174         mlx5_stop_eqs(dev);
1175         mlx5_free_uuars(dev, &priv->uuari);
1176         mlx5_disable_msix(dev);
1177         if (cleanup)
1178                 mlx5_cleanup_once(dev);
1179         mlx5_stop_health_poll(dev);
1180         err = mlx5_cmd_teardown_hca(dev);
1181         if (err) {
1182                 dev_err(&dev->pdev->dev, "tear_down_hca failed, skip cleanup\n");
1183                 goto out;
1184         }
1185         mlx5_pagealloc_stop(dev);
1186         mlx5_reclaim_startup_pages(dev);
1187         mlx5_core_disable_hca(dev, 0);
1188         mlx5_cmd_cleanup(dev);
1189
1190 out:
1191         clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1192         set_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state);
1193         mutex_unlock(&dev->intf_state_mutex);
1194         return err;
1195 }
1196
1197 struct mlx5_core_event_handler {
1198         void (*event)(struct mlx5_core_dev *dev,
1199                       enum mlx5_dev_event event,
1200                       void *data);
1201 };
1202
1203 static const struct devlink_ops mlx5_devlink_ops = {
1204 #ifdef CONFIG_MLX5_CORE_EN
1205         .eswitch_mode_set = mlx5_devlink_eswitch_mode_set,
1206         .eswitch_mode_get = mlx5_devlink_eswitch_mode_get,
1207 #endif
1208 };
1209
1210 #define MLX5_IB_MOD "mlx5_ib"
1211 static int init_one(struct pci_dev *pdev,
1212                     const struct pci_device_id *id)
1213 {
1214         struct mlx5_core_dev *dev;
1215         struct devlink *devlink;
1216         struct mlx5_priv *priv;
1217         int err;
1218
1219         devlink = devlink_alloc(&mlx5_devlink_ops, sizeof(*dev));
1220         if (!devlink) {
1221                 dev_err(&pdev->dev, "kzalloc failed\n");
1222                 return -ENOMEM;
1223         }
1224
1225         dev = devlink_priv(devlink);
1226         priv = &dev->priv;
1227         priv->pci_dev_data = id->driver_data;
1228
1229         pci_set_drvdata(pdev, dev);
1230
1231         dev->pdev = pdev;
1232         dev->event = mlx5_core_event;
1233         dev->profile = &profile[prof_sel];
1234
1235         INIT_LIST_HEAD(&priv->ctx_list);
1236         spin_lock_init(&priv->ctx_lock);
1237         mutex_init(&dev->pci_status_mutex);
1238         mutex_init(&dev->intf_state_mutex);
1239         err = mlx5_pci_init(dev, priv);
1240         if (err) {
1241                 dev_err(&pdev->dev, "mlx5_pci_init failed with error code %d\n", err);
1242                 goto clean_dev;
1243         }
1244
1245         err = mlx5_health_init(dev);
1246         if (err) {
1247                 dev_err(&pdev->dev, "mlx5_health_init failed with error code %d\n", err);
1248                 goto close_pci;
1249         }
1250
1251         mlx5_pagealloc_init(dev);
1252
1253         err = mlx5_load_one(dev, priv, true);
1254         if (err) {
1255                 dev_err(&pdev->dev, "mlx5_load_one failed with error code %d\n", err);
1256                 goto clean_health;
1257         }
1258
1259         err = request_module_nowait(MLX5_IB_MOD);
1260         if (err)
1261                 pr_info("failed request module on %s\n", MLX5_IB_MOD);
1262
1263         err = devlink_register(devlink, &pdev->dev);
1264         if (err)
1265                 goto clean_load;
1266
1267         return 0;
1268
1269 clean_load:
1270         mlx5_unload_one(dev, priv, true);
1271 clean_health:
1272         mlx5_pagealloc_cleanup(dev);
1273         mlx5_health_cleanup(dev);
1274 close_pci:
1275         mlx5_pci_close(dev, priv);
1276 clean_dev:
1277         pci_set_drvdata(pdev, NULL);
1278         devlink_free(devlink);
1279
1280         return err;
1281 }
1282
1283 static void remove_one(struct pci_dev *pdev)
1284 {
1285         struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1286         struct devlink *devlink = priv_to_devlink(dev);
1287         struct mlx5_priv *priv = &dev->priv;
1288
1289         devlink_unregister(devlink);
1290         mlx5_unregister_device(dev);
1291
1292         if (mlx5_unload_one(dev, priv, true)) {
1293                 dev_err(&dev->pdev->dev, "mlx5_unload_one failed\n");
1294                 mlx5_health_cleanup(dev);
1295                 return;
1296         }
1297
1298         mlx5_pagealloc_cleanup(dev);
1299         mlx5_health_cleanup(dev);
1300         mlx5_pci_close(dev, priv);
1301         pci_set_drvdata(pdev, NULL);
1302         devlink_free(devlink);
1303 }
1304
1305 static pci_ers_result_t mlx5_pci_err_detected(struct pci_dev *pdev,
1306                                               pci_channel_state_t state)
1307 {
1308         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1309         struct mlx5_priv *priv = &dev->priv;
1310
1311         dev_info(&pdev->dev, "%s was called\n", __func__);
1312
1313         mlx5_enter_error_state(dev);
1314         mlx5_unload_one(dev, priv, false);
1315         /* In case of kernel call save the pci state and drain health wq */
1316         if (state) {
1317                 pci_save_state(pdev);
1318                 mlx5_drain_health_wq(dev);
1319                 mlx5_pci_disable_device(dev);
1320         }
1321
1322         return state == pci_channel_io_perm_failure ?
1323                 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
1324 }
1325
1326 /* wait for the device to show vital signs by waiting
1327  * for the health counter to start counting.
1328  */
1329 static int wait_vital(struct pci_dev *pdev)
1330 {
1331         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1332         struct mlx5_core_health *health = &dev->priv.health;
1333         const int niter = 100;
1334         u32 last_count = 0;
1335         u32 count;
1336         int i;
1337
1338         for (i = 0; i < niter; i++) {
1339                 count = ioread32be(health->health_counter);
1340                 if (count && count != 0xffffffff) {
1341                         if (last_count && last_count != count) {
1342                                 dev_info(&pdev->dev, "Counter value 0x%x after %d iterations\n", count, i);
1343                                 return 0;
1344                         }
1345                         last_count = count;
1346                 }
1347                 msleep(50);
1348         }
1349
1350         return -ETIMEDOUT;
1351 }
1352
1353 static pci_ers_result_t mlx5_pci_slot_reset(struct pci_dev *pdev)
1354 {
1355         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1356         int err;
1357
1358         dev_info(&pdev->dev, "%s was called\n", __func__);
1359
1360         err = mlx5_pci_enable_device(dev);
1361         if (err) {
1362                 dev_err(&pdev->dev, "%s: mlx5_pci_enable_device failed with error code: %d\n"
1363                         , __func__, err);
1364                 return PCI_ERS_RESULT_DISCONNECT;
1365         }
1366
1367         pci_set_master(pdev);
1368         pci_restore_state(pdev);
1369
1370         if (wait_vital(pdev)) {
1371                 dev_err(&pdev->dev, "%s: wait_vital timed out\n", __func__);
1372                 return PCI_ERS_RESULT_DISCONNECT;
1373         }
1374
1375         return PCI_ERS_RESULT_RECOVERED;
1376 }
1377
1378 static void mlx5_pci_resume(struct pci_dev *pdev)
1379 {
1380         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1381         struct mlx5_priv *priv = &dev->priv;
1382         int err;
1383
1384         dev_info(&pdev->dev, "%s was called\n", __func__);
1385
1386         err = mlx5_load_one(dev, priv, false);
1387         if (err)
1388                 dev_err(&pdev->dev, "%s: mlx5_load_one failed with error code: %d\n"
1389                         , __func__, err);
1390         else
1391                 dev_info(&pdev->dev, "%s: device recovered\n", __func__);
1392 }
1393
1394 static const struct pci_error_handlers mlx5_err_handler = {
1395         .error_detected = mlx5_pci_err_detected,
1396         .slot_reset     = mlx5_pci_slot_reset,
1397         .resume         = mlx5_pci_resume
1398 };
1399
1400 static void shutdown(struct pci_dev *pdev)
1401 {
1402         struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1403         struct mlx5_priv *priv = &dev->priv;
1404
1405         dev_info(&pdev->dev, "Shutdown was called\n");
1406         /* Notify mlx5 clients that the kernel is being shut down */
1407         set_bit(MLX5_INTERFACE_STATE_SHUTDOWN, &dev->intf_state);
1408         mlx5_unload_one(dev, priv, false);
1409         mlx5_pci_disable_device(dev);
1410 }
1411
1412 static const struct pci_device_id mlx5_core_pci_table[] = {
1413         { PCI_VDEVICE(MELLANOX, 0x1011) },                      /* Connect-IB */
1414         { PCI_VDEVICE(MELLANOX, 0x1012), MLX5_PCI_DEV_IS_VF},   /* Connect-IB VF */
1415         { PCI_VDEVICE(MELLANOX, 0x1013) },                      /* ConnectX-4 */
1416         { PCI_VDEVICE(MELLANOX, 0x1014), MLX5_PCI_DEV_IS_VF},   /* ConnectX-4 VF */
1417         { PCI_VDEVICE(MELLANOX, 0x1015) },                      /* ConnectX-4LX */
1418         { PCI_VDEVICE(MELLANOX, 0x1016), MLX5_PCI_DEV_IS_VF},   /* ConnectX-4LX VF */
1419         { PCI_VDEVICE(MELLANOX, 0x1017) },                      /* ConnectX-5, PCIe 3.0 */
1420         { PCI_VDEVICE(MELLANOX, 0x1018), MLX5_PCI_DEV_IS_VF},   /* ConnectX-5 VF */
1421         { PCI_VDEVICE(MELLANOX, 0x1019) },                      /* ConnectX-5, PCIe 4.0 */
1422         { 0, }
1423 };
1424
1425 MODULE_DEVICE_TABLE(pci, mlx5_core_pci_table);
1426
1427 void mlx5_disable_device(struct mlx5_core_dev *dev)
1428 {
1429         mlx5_pci_err_detected(dev->pdev, 0);
1430 }
1431
1432 void mlx5_recover_device(struct mlx5_core_dev *dev)
1433 {
1434         mlx5_pci_disable_device(dev);
1435         if (mlx5_pci_slot_reset(dev->pdev) == PCI_ERS_RESULT_RECOVERED)
1436                 mlx5_pci_resume(dev->pdev);
1437 }
1438
1439 static struct pci_driver mlx5_core_driver = {
1440         .name           = DRIVER_NAME,
1441         .id_table       = mlx5_core_pci_table,
1442         .probe          = init_one,
1443         .remove         = remove_one,
1444         .shutdown       = shutdown,
1445         .err_handler    = &mlx5_err_handler,
1446         .sriov_configure   = mlx5_core_sriov_configure,
1447 };
1448
1449 static void mlx5_core_verify_params(void)
1450 {
1451         if (prof_sel >= ARRAY_SIZE(profile)) {
1452                 pr_warn("mlx5_core: WARNING: Invalid module parameter prof_sel %d, valid range 0-%zu, changing back to default(%d)\n",
1453                         prof_sel,
1454                         ARRAY_SIZE(profile) - 1,
1455                         MLX5_DEFAULT_PROF);
1456                 prof_sel = MLX5_DEFAULT_PROF;
1457         }
1458 }
1459
1460 static int __init init(void)
1461 {
1462         int err;
1463
1464         mlx5_core_verify_params();
1465         mlx5_register_debugfs();
1466
1467         err = pci_register_driver(&mlx5_core_driver);
1468         if (err)
1469                 goto err_debug;
1470
1471 #ifdef CONFIG_MLX5_CORE_EN
1472         mlx5e_init();
1473 #endif
1474
1475         return 0;
1476
1477 err_debug:
1478         mlx5_unregister_debugfs();
1479         return err;
1480 }
1481
1482 static void __exit cleanup(void)
1483 {
1484 #ifdef CONFIG_MLX5_CORE_EN
1485         mlx5e_cleanup();
1486 #endif
1487         pci_unregister_driver(&mlx5_core_driver);
1488         mlx5_unregister_debugfs();
1489 }
1490
1491 module_init(init);
1492 module_exit(cleanup);