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