]> Git Repo - linux.git/blob - drivers/net/ethernet/mellanox/mlx5/core/main.c
efi/x86: add headroom to decompressor BSS to account for setup block
[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/debugfs.h>
47 #include <linux/kmod.h>
48 #include <linux/mlx5/mlx5_ifc.h>
49 #include <linux/mlx5/vport.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 "lib/eq.h"
56 #include "fs_core.h"
57 #include "lib/mpfs.h"
58 #include "eswitch.h"
59 #include "devlink.h"
60 #include "lib/mlx5.h"
61 #include "fpga/core.h"
62 #include "fpga/ipsec.h"
63 #include "accel/ipsec.h"
64 #include "accel/tls.h"
65 #include "lib/clock.h"
66 #include "lib/vxlan.h"
67 #include "lib/geneve.h"
68 #include "lib/devcom.h"
69 #include "lib/pci_vsc.h"
70 #include "diag/fw_tracer.h"
71 #include "ecpf.h"
72 #include "lib/hv_vhca.h"
73
74 MODULE_AUTHOR("Eli Cohen <[email protected]>");
75 MODULE_DESCRIPTION("Mellanox 5th generation network adapters (ConnectX series) core driver");
76 MODULE_LICENSE("Dual BSD/GPL");
77 MODULE_VERSION(DRIVER_VERSION);
78
79 unsigned int mlx5_core_debug_mask;
80 module_param_named(debug_mask, mlx5_core_debug_mask, uint, 0644);
81 MODULE_PARM_DESC(debug_mask, "debug mask: 1 = dump cmd data, 2 = dump cmd exec time, 3 = both. Default=0");
82
83 #define MLX5_DEFAULT_PROF       2
84 static unsigned int prof_sel = MLX5_DEFAULT_PROF;
85 module_param_named(prof_sel, prof_sel, uint, 0444);
86 MODULE_PARM_DESC(prof_sel, "profile selector. Valid range 0 - 2");
87
88 static u32 sw_owner_id[4];
89
90 enum {
91         MLX5_ATOMIC_REQ_MODE_BE = 0x0,
92         MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS = 0x1,
93 };
94
95 static struct mlx5_profile profile[] = {
96         [0] = {
97                 .mask           = 0,
98         },
99         [1] = {
100                 .mask           = MLX5_PROF_MASK_QP_SIZE,
101                 .log_max_qp     = 12,
102         },
103         [2] = {
104                 .mask           = MLX5_PROF_MASK_QP_SIZE |
105                                   MLX5_PROF_MASK_MR_CACHE,
106                 .log_max_qp     = 18,
107                 .mr_cache[0]    = {
108                         .size   = 500,
109                         .limit  = 250
110                 },
111                 .mr_cache[1]    = {
112                         .size   = 500,
113                         .limit  = 250
114                 },
115                 .mr_cache[2]    = {
116                         .size   = 500,
117                         .limit  = 250
118                 },
119                 .mr_cache[3]    = {
120                         .size   = 500,
121                         .limit  = 250
122                 },
123                 .mr_cache[4]    = {
124                         .size   = 500,
125                         .limit  = 250
126                 },
127                 .mr_cache[5]    = {
128                         .size   = 500,
129                         .limit  = 250
130                 },
131                 .mr_cache[6]    = {
132                         .size   = 500,
133                         .limit  = 250
134                 },
135                 .mr_cache[7]    = {
136                         .size   = 500,
137                         .limit  = 250
138                 },
139                 .mr_cache[8]    = {
140                         .size   = 500,
141                         .limit  = 250
142                 },
143                 .mr_cache[9]    = {
144                         .size   = 500,
145                         .limit  = 250
146                 },
147                 .mr_cache[10]   = {
148                         .size   = 500,
149                         .limit  = 250
150                 },
151                 .mr_cache[11]   = {
152                         .size   = 500,
153                         .limit  = 250
154                 },
155                 .mr_cache[12]   = {
156                         .size   = 64,
157                         .limit  = 32
158                 },
159                 .mr_cache[13]   = {
160                         .size   = 32,
161                         .limit  = 16
162                 },
163                 .mr_cache[14]   = {
164                         .size   = 16,
165                         .limit  = 8
166                 },
167                 .mr_cache[15]   = {
168                         .size   = 8,
169                         .limit  = 4
170                 },
171         },
172 };
173
174 #define FW_INIT_TIMEOUT_MILI            2000
175 #define FW_INIT_WAIT_MS                 2
176 #define FW_PRE_INIT_TIMEOUT_MILI        120000
177 #define FW_INIT_WARN_MESSAGE_INTERVAL   20000
178
179 static int wait_fw_init(struct mlx5_core_dev *dev, u32 max_wait_mili,
180                         u32 warn_time_mili)
181 {
182         unsigned long warn = jiffies + msecs_to_jiffies(warn_time_mili);
183         unsigned long end = jiffies + msecs_to_jiffies(max_wait_mili);
184         int err = 0;
185
186         BUILD_BUG_ON(FW_PRE_INIT_TIMEOUT_MILI < FW_INIT_WARN_MESSAGE_INTERVAL);
187
188         while (fw_initializing(dev)) {
189                 if (time_after(jiffies, end)) {
190                         err = -EBUSY;
191                         break;
192                 }
193                 if (warn_time_mili && time_after(jiffies, warn)) {
194                         mlx5_core_warn(dev, "Waiting for FW initialization, timeout abort in %ds\n",
195                                        jiffies_to_msecs(end - warn) / 1000);
196                         warn = jiffies + msecs_to_jiffies(warn_time_mili);
197                 }
198                 msleep(FW_INIT_WAIT_MS);
199         }
200
201         return err;
202 }
203
204 static void mlx5_set_driver_version(struct mlx5_core_dev *dev)
205 {
206         int driver_ver_sz = MLX5_FLD_SZ_BYTES(set_driver_version_in,
207                                               driver_version);
208         u8 in[MLX5_ST_SZ_BYTES(set_driver_version_in)] = {0};
209         u8 out[MLX5_ST_SZ_BYTES(set_driver_version_out)] = {0};
210         int remaining_size = driver_ver_sz;
211         char *string;
212
213         if (!MLX5_CAP_GEN(dev, driver_version))
214                 return;
215
216         string = MLX5_ADDR_OF(set_driver_version_in, in, driver_version);
217
218         strncpy(string, "Linux", remaining_size);
219
220         remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
221         strncat(string, ",", remaining_size);
222
223         remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
224         strncat(string, DRIVER_NAME, remaining_size);
225
226         remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
227         strncat(string, ",", remaining_size);
228
229         remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
230         strncat(string, DRIVER_VERSION, remaining_size);
231
232         /*Send the command*/
233         MLX5_SET(set_driver_version_in, in, opcode,
234                  MLX5_CMD_OP_SET_DRIVER_VERSION);
235
236         mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
237 }
238
239 static int set_dma_caps(struct pci_dev *pdev)
240 {
241         int err;
242
243         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
244         if (err) {
245                 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask\n");
246                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
247                 if (err) {
248                         dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting\n");
249                         return err;
250                 }
251         }
252
253         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
254         if (err) {
255                 dev_warn(&pdev->dev,
256                          "Warning: couldn't set 64-bit consistent PCI DMA mask\n");
257                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
258                 if (err) {
259                         dev_err(&pdev->dev,
260                                 "Can't set consistent PCI DMA mask, aborting\n");
261                         return err;
262                 }
263         }
264
265         dma_set_max_seg_size(&pdev->dev, 2u * 1024 * 1024 * 1024);
266         return err;
267 }
268
269 static int mlx5_pci_enable_device(struct mlx5_core_dev *dev)
270 {
271         struct pci_dev *pdev = dev->pdev;
272         int err = 0;
273
274         mutex_lock(&dev->pci_status_mutex);
275         if (dev->pci_status == MLX5_PCI_STATUS_DISABLED) {
276                 err = pci_enable_device(pdev);
277                 if (!err)
278                         dev->pci_status = MLX5_PCI_STATUS_ENABLED;
279         }
280         mutex_unlock(&dev->pci_status_mutex);
281
282         return err;
283 }
284
285 static void mlx5_pci_disable_device(struct mlx5_core_dev *dev)
286 {
287         struct pci_dev *pdev = dev->pdev;
288
289         mutex_lock(&dev->pci_status_mutex);
290         if (dev->pci_status == MLX5_PCI_STATUS_ENABLED) {
291                 pci_disable_device(pdev);
292                 dev->pci_status = MLX5_PCI_STATUS_DISABLED;
293         }
294         mutex_unlock(&dev->pci_status_mutex);
295 }
296
297 static int request_bar(struct pci_dev *pdev)
298 {
299         int err = 0;
300
301         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
302                 dev_err(&pdev->dev, "Missing registers BAR, aborting\n");
303                 return -ENODEV;
304         }
305
306         err = pci_request_regions(pdev, DRIVER_NAME);
307         if (err)
308                 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
309
310         return err;
311 }
312
313 static void release_bar(struct pci_dev *pdev)
314 {
315         pci_release_regions(pdev);
316 }
317
318 struct mlx5_reg_host_endianness {
319         u8      he;
320         u8      rsvd[15];
321 };
322
323 #define CAP_MASK(pos, size) ((u64)((1 << (size)) - 1) << (pos))
324
325 enum {
326         MLX5_CAP_BITS_RW_MASK = CAP_MASK(MLX5_CAP_OFF_CMDIF_CSUM, 2) |
327                                 MLX5_DEV_CAP_FLAG_DCT,
328 };
329
330 static u16 to_fw_pkey_sz(struct mlx5_core_dev *dev, u32 size)
331 {
332         switch (size) {
333         case 128:
334                 return 0;
335         case 256:
336                 return 1;
337         case 512:
338                 return 2;
339         case 1024:
340                 return 3;
341         case 2048:
342                 return 4;
343         case 4096:
344                 return 5;
345         default:
346                 mlx5_core_warn(dev, "invalid pkey table size %d\n", size);
347                 return 0;
348         }
349 }
350
351 static int mlx5_core_get_caps_mode(struct mlx5_core_dev *dev,
352                                    enum mlx5_cap_type cap_type,
353                                    enum mlx5_cap_mode cap_mode)
354 {
355         u8 in[MLX5_ST_SZ_BYTES(query_hca_cap_in)];
356         int out_sz = MLX5_ST_SZ_BYTES(query_hca_cap_out);
357         void *out, *hca_caps;
358         u16 opmod = (cap_type << 1) | (cap_mode & 0x01);
359         int err;
360
361         memset(in, 0, sizeof(in));
362         out = kzalloc(out_sz, GFP_KERNEL);
363         if (!out)
364                 return -ENOMEM;
365
366         MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
367         MLX5_SET(query_hca_cap_in, in, op_mod, opmod);
368         err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
369         if (err) {
370                 mlx5_core_warn(dev,
371                                "QUERY_HCA_CAP : type(%x) opmode(%x) Failed(%d)\n",
372                                cap_type, cap_mode, err);
373                 goto query_ex;
374         }
375
376         hca_caps =  MLX5_ADDR_OF(query_hca_cap_out, out, capability);
377
378         switch (cap_mode) {
379         case HCA_CAP_OPMOD_GET_MAX:
380                 memcpy(dev->caps.hca_max[cap_type], hca_caps,
381                        MLX5_UN_SZ_BYTES(hca_cap_union));
382                 break;
383         case HCA_CAP_OPMOD_GET_CUR:
384                 memcpy(dev->caps.hca_cur[cap_type], hca_caps,
385                        MLX5_UN_SZ_BYTES(hca_cap_union));
386                 break;
387         default:
388                 mlx5_core_warn(dev,
389                                "Tried to query dev cap type(%x) with wrong opmode(%x)\n",
390                                cap_type, cap_mode);
391                 err = -EINVAL;
392                 break;
393         }
394 query_ex:
395         kfree(out);
396         return err;
397 }
398
399 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type)
400 {
401         int ret;
402
403         ret = mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_CUR);
404         if (ret)
405                 return ret;
406         return mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_MAX);
407 }
408
409 static int set_caps(struct mlx5_core_dev *dev, void *in, int in_sz, int opmod)
410 {
411         u32 out[MLX5_ST_SZ_DW(set_hca_cap_out)] = {0};
412
413         MLX5_SET(set_hca_cap_in, in, opcode, MLX5_CMD_OP_SET_HCA_CAP);
414         MLX5_SET(set_hca_cap_in, in, op_mod, opmod << 1);
415         return mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
416 }
417
418 static int handle_hca_cap_atomic(struct mlx5_core_dev *dev)
419 {
420         void *set_ctx;
421         void *set_hca_cap;
422         int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
423         int req_endianness;
424         int err;
425
426         if (MLX5_CAP_GEN(dev, atomic)) {
427                 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
428                 if (err)
429                         return err;
430         } else {
431                 return 0;
432         }
433
434         req_endianness =
435                 MLX5_CAP_ATOMIC(dev,
436                                 supported_atomic_req_8B_endianness_mode_1);
437
438         if (req_endianness != MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS)
439                 return 0;
440
441         set_ctx = kzalloc(set_sz, GFP_KERNEL);
442         if (!set_ctx)
443                 return -ENOMEM;
444
445         set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
446
447         /* Set requestor to host endianness */
448         MLX5_SET(atomic_caps, set_hca_cap, atomic_req_8B_endianness_mode,
449                  MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS);
450
451         err = set_caps(dev, set_ctx, set_sz, MLX5_SET_HCA_CAP_OP_MOD_ATOMIC);
452
453         kfree(set_ctx);
454         return err;
455 }
456
457 static int handle_hca_cap_odp(struct mlx5_core_dev *dev)
458 {
459         void *set_hca_cap;
460         void *set_ctx;
461         int set_sz;
462         bool do_set = false;
463         int err;
464
465         if (!IS_ENABLED(CONFIG_INFINIBAND_ON_DEMAND_PAGING) ||
466             !MLX5_CAP_GEN(dev, pg))
467                 return 0;
468
469         err = mlx5_core_get_caps(dev, MLX5_CAP_ODP);
470         if (err)
471                 return err;
472
473         set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
474         set_ctx = kzalloc(set_sz, GFP_KERNEL);
475         if (!set_ctx)
476                 return -ENOMEM;
477
478         set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
479         memcpy(set_hca_cap, dev->caps.hca_cur[MLX5_CAP_ODP],
480                MLX5_ST_SZ_BYTES(odp_cap));
481
482 #define ODP_CAP_SET_MAX(dev, field)                                            \
483         do {                                                                   \
484                 u32 _res = MLX5_CAP_ODP_MAX(dev, field);                       \
485                 if (_res) {                                                    \
486                         do_set = true;                                         \
487                         MLX5_SET(odp_cap, set_hca_cap, field, _res);           \
488                 }                                                              \
489         } while (0)
490
491         ODP_CAP_SET_MAX(dev, ud_odp_caps.srq_receive);
492         ODP_CAP_SET_MAX(dev, rc_odp_caps.srq_receive);
493         ODP_CAP_SET_MAX(dev, xrc_odp_caps.srq_receive);
494         ODP_CAP_SET_MAX(dev, xrc_odp_caps.send);
495         ODP_CAP_SET_MAX(dev, xrc_odp_caps.receive);
496         ODP_CAP_SET_MAX(dev, xrc_odp_caps.write);
497         ODP_CAP_SET_MAX(dev, xrc_odp_caps.read);
498         ODP_CAP_SET_MAX(dev, xrc_odp_caps.atomic);
499         ODP_CAP_SET_MAX(dev, dc_odp_caps.srq_receive);
500         ODP_CAP_SET_MAX(dev, dc_odp_caps.send);
501         ODP_CAP_SET_MAX(dev, dc_odp_caps.receive);
502         ODP_CAP_SET_MAX(dev, dc_odp_caps.write);
503         ODP_CAP_SET_MAX(dev, dc_odp_caps.read);
504         ODP_CAP_SET_MAX(dev, dc_odp_caps.atomic);
505
506         if (do_set)
507                 err = set_caps(dev, set_ctx, set_sz,
508                                MLX5_SET_HCA_CAP_OP_MOD_ODP);
509
510         kfree(set_ctx);
511
512         return err;
513 }
514
515 static int handle_hca_cap(struct mlx5_core_dev *dev)
516 {
517         void *set_ctx = NULL;
518         struct mlx5_profile *prof = dev->profile;
519         int err = -ENOMEM;
520         int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
521         void *set_hca_cap;
522
523         set_ctx = kzalloc(set_sz, GFP_KERNEL);
524         if (!set_ctx)
525                 goto query_ex;
526
527         err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
528         if (err)
529                 goto query_ex;
530
531         set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx,
532                                    capability);
533         memcpy(set_hca_cap, dev->caps.hca_cur[MLX5_CAP_GENERAL],
534                MLX5_ST_SZ_BYTES(cmd_hca_cap));
535
536         mlx5_core_dbg(dev, "Current Pkey table size %d Setting new size %d\n",
537                       mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(dev, pkey_table_size)),
538                       128);
539         /* we limit the size of the pkey table to 128 entries for now */
540         MLX5_SET(cmd_hca_cap, set_hca_cap, pkey_table_size,
541                  to_fw_pkey_sz(dev, 128));
542
543         /* Check log_max_qp from HCA caps to set in current profile */
544         if (MLX5_CAP_GEN_MAX(dev, log_max_qp) < profile[prof_sel].log_max_qp) {
545                 mlx5_core_warn(dev, "log_max_qp value in current profile is %d, changing it to HCA capability limit (%d)\n",
546                                profile[prof_sel].log_max_qp,
547                                MLX5_CAP_GEN_MAX(dev, log_max_qp));
548                 profile[prof_sel].log_max_qp = MLX5_CAP_GEN_MAX(dev, log_max_qp);
549         }
550         if (prof->mask & MLX5_PROF_MASK_QP_SIZE)
551                 MLX5_SET(cmd_hca_cap, set_hca_cap, log_max_qp,
552                          prof->log_max_qp);
553
554         /* disable cmdif checksum */
555         MLX5_SET(cmd_hca_cap, set_hca_cap, cmdif_checksum, 0);
556
557         /* Enable 4K UAR only when HCA supports it and page size is bigger
558          * than 4K.
559          */
560         if (MLX5_CAP_GEN_MAX(dev, uar_4k) && PAGE_SIZE > 4096)
561                 MLX5_SET(cmd_hca_cap, set_hca_cap, uar_4k, 1);
562
563         MLX5_SET(cmd_hca_cap, set_hca_cap, log_uar_page_sz, PAGE_SHIFT - 12);
564
565         if (MLX5_CAP_GEN_MAX(dev, cache_line_128byte))
566                 MLX5_SET(cmd_hca_cap,
567                          set_hca_cap,
568                          cache_line_128byte,
569                          cache_line_size() >= 128 ? 1 : 0);
570
571         if (MLX5_CAP_GEN_MAX(dev, dct))
572                 MLX5_SET(cmd_hca_cap, set_hca_cap, dct, 1);
573
574         if (MLX5_CAP_GEN_MAX(dev, num_vhca_ports))
575                 MLX5_SET(cmd_hca_cap,
576                          set_hca_cap,
577                          num_vhca_ports,
578                          MLX5_CAP_GEN_MAX(dev, num_vhca_ports));
579
580         err = set_caps(dev, set_ctx, set_sz,
581                        MLX5_SET_HCA_CAP_OP_MOD_GENERAL_DEVICE);
582
583 query_ex:
584         kfree(set_ctx);
585         return err;
586 }
587
588 static int set_hca_cap(struct mlx5_core_dev *dev)
589 {
590         int err;
591
592         err = handle_hca_cap(dev);
593         if (err) {
594                 mlx5_core_err(dev, "handle_hca_cap failed\n");
595                 goto out;
596         }
597
598         err = handle_hca_cap_atomic(dev);
599         if (err) {
600                 mlx5_core_err(dev, "handle_hca_cap_atomic failed\n");
601                 goto out;
602         }
603
604         err = handle_hca_cap_odp(dev);
605         if (err) {
606                 mlx5_core_err(dev, "handle_hca_cap_odp failed\n");
607                 goto out;
608         }
609
610 out:
611         return err;
612 }
613
614 static int set_hca_ctrl(struct mlx5_core_dev *dev)
615 {
616         struct mlx5_reg_host_endianness he_in;
617         struct mlx5_reg_host_endianness he_out;
618         int err;
619
620         if (!mlx5_core_is_pf(dev))
621                 return 0;
622
623         memset(&he_in, 0, sizeof(he_in));
624         he_in.he = MLX5_SET_HOST_ENDIANNESS;
625         err = mlx5_core_access_reg(dev, &he_in,  sizeof(he_in),
626                                         &he_out, sizeof(he_out),
627                                         MLX5_REG_HOST_ENDIANNESS, 0, 1);
628         return err;
629 }
630
631 static int mlx5_core_set_hca_defaults(struct mlx5_core_dev *dev)
632 {
633         int ret = 0;
634
635         /* Disable local_lb by default */
636         if (MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_ETH)
637                 ret = mlx5_nic_vport_update_local_lb(dev, false);
638
639         return ret;
640 }
641
642 int mlx5_core_enable_hca(struct mlx5_core_dev *dev, u16 func_id)
643 {
644         u32 out[MLX5_ST_SZ_DW(enable_hca_out)] = {0};
645         u32 in[MLX5_ST_SZ_DW(enable_hca_in)]   = {0};
646
647         MLX5_SET(enable_hca_in, in, opcode, MLX5_CMD_OP_ENABLE_HCA);
648         MLX5_SET(enable_hca_in, in, function_id, func_id);
649         MLX5_SET(enable_hca_in, in, embedded_cpu_function,
650                  dev->caps.embedded_cpu);
651         return mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
652 }
653
654 int mlx5_core_disable_hca(struct mlx5_core_dev *dev, u16 func_id)
655 {
656         u32 out[MLX5_ST_SZ_DW(disable_hca_out)] = {0};
657         u32 in[MLX5_ST_SZ_DW(disable_hca_in)]   = {0};
658
659         MLX5_SET(disable_hca_in, in, opcode, MLX5_CMD_OP_DISABLE_HCA);
660         MLX5_SET(disable_hca_in, in, function_id, func_id);
661         MLX5_SET(enable_hca_in, in, embedded_cpu_function,
662                  dev->caps.embedded_cpu);
663         return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
664 }
665
666 u64 mlx5_read_internal_timer(struct mlx5_core_dev *dev,
667                              struct ptp_system_timestamp *sts)
668 {
669         u32 timer_h, timer_h1, timer_l;
670
671         timer_h = ioread32be(&dev->iseg->internal_timer_h);
672         ptp_read_system_prets(sts);
673         timer_l = ioread32be(&dev->iseg->internal_timer_l);
674         ptp_read_system_postts(sts);
675         timer_h1 = ioread32be(&dev->iseg->internal_timer_h);
676         if (timer_h != timer_h1) {
677                 /* wrap around */
678                 ptp_read_system_prets(sts);
679                 timer_l = ioread32be(&dev->iseg->internal_timer_l);
680                 ptp_read_system_postts(sts);
681         }
682
683         return (u64)timer_l | (u64)timer_h1 << 32;
684 }
685
686 static int mlx5_core_set_issi(struct mlx5_core_dev *dev)
687 {
688         u32 query_in[MLX5_ST_SZ_DW(query_issi_in)]   = {0};
689         u32 query_out[MLX5_ST_SZ_DW(query_issi_out)] = {0};
690         u32 sup_issi;
691         int err;
692
693         MLX5_SET(query_issi_in, query_in, opcode, MLX5_CMD_OP_QUERY_ISSI);
694         err = mlx5_cmd_exec(dev, query_in, sizeof(query_in),
695                             query_out, sizeof(query_out));
696         if (err) {
697                 u32 syndrome;
698                 u8 status;
699
700                 mlx5_cmd_mbox_status(query_out, &status, &syndrome);
701                 if (!status || syndrome == MLX5_DRIVER_SYND) {
702                         mlx5_core_err(dev, "Failed to query ISSI err(%d) status(%d) synd(%d)\n",
703                                       err, status, syndrome);
704                         return err;
705                 }
706
707                 mlx5_core_warn(dev, "Query ISSI is not supported by FW, ISSI is 0\n");
708                 dev->issi = 0;
709                 return 0;
710         }
711
712         sup_issi = MLX5_GET(query_issi_out, query_out, supported_issi_dw0);
713
714         if (sup_issi & (1 << 1)) {
715                 u32 set_in[MLX5_ST_SZ_DW(set_issi_in)]   = {0};
716                 u32 set_out[MLX5_ST_SZ_DW(set_issi_out)] = {0};
717
718                 MLX5_SET(set_issi_in, set_in, opcode, MLX5_CMD_OP_SET_ISSI);
719                 MLX5_SET(set_issi_in, set_in, current_issi, 1);
720                 err = mlx5_cmd_exec(dev, set_in, sizeof(set_in),
721                                     set_out, sizeof(set_out));
722                 if (err) {
723                         mlx5_core_err(dev, "Failed to set ISSI to 1 err(%d)\n",
724                                       err);
725                         return err;
726                 }
727
728                 dev->issi = 1;
729
730                 return 0;
731         } else if (sup_issi & (1 << 0) || !sup_issi) {
732                 return 0;
733         }
734
735         return -EOPNOTSUPP;
736 }
737
738 static int mlx5_pci_init(struct mlx5_core_dev *dev, struct pci_dev *pdev,
739                          const struct pci_device_id *id)
740 {
741         struct mlx5_priv *priv = &dev->priv;
742         int err = 0;
743
744         mutex_init(&dev->pci_status_mutex);
745         pci_set_drvdata(dev->pdev, dev);
746
747         dev->bar_addr = pci_resource_start(pdev, 0);
748         priv->numa_node = dev_to_node(&dev->pdev->dev);
749
750         err = mlx5_pci_enable_device(dev);
751         if (err) {
752                 mlx5_core_err(dev, "Cannot enable PCI device, aborting\n");
753                 return err;
754         }
755
756         err = request_bar(pdev);
757         if (err) {
758                 mlx5_core_err(dev, "error requesting BARs, aborting\n");
759                 goto err_disable;
760         }
761
762         pci_set_master(pdev);
763
764         err = set_dma_caps(pdev);
765         if (err) {
766                 mlx5_core_err(dev, "Failed setting DMA capabilities mask, aborting\n");
767                 goto err_clr_master;
768         }
769
770         if (pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP32) &&
771             pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP64) &&
772             pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP128))
773                 mlx5_core_dbg(dev, "Enabling pci atomics failed\n");
774
775         dev->iseg_base = dev->bar_addr;
776         dev->iseg = ioremap(dev->iseg_base, sizeof(*dev->iseg));
777         if (!dev->iseg) {
778                 err = -ENOMEM;
779                 mlx5_core_err(dev, "Failed mapping initialization segment, aborting\n");
780                 goto err_clr_master;
781         }
782
783         mlx5_pci_vsc_init(dev);
784
785         return 0;
786
787 err_clr_master:
788         pci_clear_master(dev->pdev);
789         release_bar(dev->pdev);
790 err_disable:
791         mlx5_pci_disable_device(dev);
792         return err;
793 }
794
795 static void mlx5_pci_close(struct mlx5_core_dev *dev)
796 {
797         iounmap(dev->iseg);
798         pci_clear_master(dev->pdev);
799         release_bar(dev->pdev);
800         mlx5_pci_disable_device(dev);
801 }
802
803 static int mlx5_init_once(struct mlx5_core_dev *dev)
804 {
805         int err;
806
807         dev->priv.devcom = mlx5_devcom_register_device(dev);
808         if (IS_ERR(dev->priv.devcom))
809                 mlx5_core_err(dev, "failed to register with devcom (0x%p)\n",
810                               dev->priv.devcom);
811
812         err = mlx5_query_board_id(dev);
813         if (err) {
814                 mlx5_core_err(dev, "query board id failed\n");
815                 goto err_devcom;
816         }
817
818         err = mlx5_irq_table_init(dev);
819         if (err) {
820                 mlx5_core_err(dev, "failed to initialize irq table\n");
821                 goto err_devcom;
822         }
823
824         err = mlx5_eq_table_init(dev);
825         if (err) {
826                 mlx5_core_err(dev, "failed to initialize eq\n");
827                 goto err_irq_cleanup;
828         }
829
830         err = mlx5_events_init(dev);
831         if (err) {
832                 mlx5_core_err(dev, "failed to initialize events\n");
833                 goto err_eq_cleanup;
834         }
835
836         mlx5_cq_debugfs_init(dev);
837
838         mlx5_init_qp_table(dev);
839
840         mlx5_init_reserved_gids(dev);
841
842         mlx5_init_clock(dev);
843
844         dev->vxlan = mlx5_vxlan_create(dev);
845         dev->geneve = mlx5_geneve_create(dev);
846
847         err = mlx5_init_rl_table(dev);
848         if (err) {
849                 mlx5_core_err(dev, "Failed to init rate limiting\n");
850                 goto err_tables_cleanup;
851         }
852
853         err = mlx5_mpfs_init(dev);
854         if (err) {
855                 mlx5_core_err(dev, "Failed to init l2 table %d\n", err);
856                 goto err_rl_cleanup;
857         }
858
859         err = mlx5_sriov_init(dev);
860         if (err) {
861                 mlx5_core_err(dev, "Failed to init sriov %d\n", err);
862                 goto err_mpfs_cleanup;
863         }
864
865         err = mlx5_eswitch_init(dev);
866         if (err) {
867                 mlx5_core_err(dev, "Failed to init eswitch %d\n", err);
868                 goto err_sriov_cleanup;
869         }
870
871         err = mlx5_fpga_init(dev);
872         if (err) {
873                 mlx5_core_err(dev, "Failed to init fpga device %d\n", err);
874                 goto err_eswitch_cleanup;
875         }
876
877         dev->dm = mlx5_dm_create(dev);
878         if (IS_ERR(dev->dm))
879                 mlx5_core_warn(dev, "Failed to init device memory%d\n", err);
880
881         dev->tracer = mlx5_fw_tracer_create(dev);
882         dev->hv_vhca = mlx5_hv_vhca_create(dev);
883
884         return 0;
885
886 err_eswitch_cleanup:
887         mlx5_eswitch_cleanup(dev->priv.eswitch);
888 err_sriov_cleanup:
889         mlx5_sriov_cleanup(dev);
890 err_mpfs_cleanup:
891         mlx5_mpfs_cleanup(dev);
892 err_rl_cleanup:
893         mlx5_cleanup_rl_table(dev);
894 err_tables_cleanup:
895         mlx5_geneve_destroy(dev->geneve);
896         mlx5_vxlan_destroy(dev->vxlan);
897         mlx5_cleanup_qp_table(dev);
898         mlx5_cq_debugfs_cleanup(dev);
899         mlx5_events_cleanup(dev);
900 err_eq_cleanup:
901         mlx5_eq_table_cleanup(dev);
902 err_irq_cleanup:
903         mlx5_irq_table_cleanup(dev);
904 err_devcom:
905         mlx5_devcom_unregister_device(dev->priv.devcom);
906
907         return err;
908 }
909
910 static void mlx5_cleanup_once(struct mlx5_core_dev *dev)
911 {
912         mlx5_hv_vhca_destroy(dev->hv_vhca);
913         mlx5_fw_tracer_destroy(dev->tracer);
914         mlx5_dm_cleanup(dev);
915         mlx5_fpga_cleanup(dev);
916         mlx5_eswitch_cleanup(dev->priv.eswitch);
917         mlx5_sriov_cleanup(dev);
918         mlx5_mpfs_cleanup(dev);
919         mlx5_cleanup_rl_table(dev);
920         mlx5_geneve_destroy(dev->geneve);
921         mlx5_vxlan_destroy(dev->vxlan);
922         mlx5_cleanup_clock(dev);
923         mlx5_cleanup_reserved_gids(dev);
924         mlx5_cleanup_qp_table(dev);
925         mlx5_cq_debugfs_cleanup(dev);
926         mlx5_events_cleanup(dev);
927         mlx5_eq_table_cleanup(dev);
928         mlx5_irq_table_cleanup(dev);
929         mlx5_devcom_unregister_device(dev->priv.devcom);
930 }
931
932 static int mlx5_function_setup(struct mlx5_core_dev *dev, bool boot)
933 {
934         int err;
935
936         mlx5_core_info(dev, "firmware version: %d.%d.%d\n", fw_rev_maj(dev),
937                        fw_rev_min(dev), fw_rev_sub(dev));
938
939         /* Only PFs hold the relevant PCIe information for this query */
940         if (mlx5_core_is_pf(dev))
941                 pcie_print_link_status(dev->pdev);
942
943         /* wait for firmware to accept initialization segments configurations
944          */
945         err = wait_fw_init(dev, FW_PRE_INIT_TIMEOUT_MILI, FW_INIT_WARN_MESSAGE_INTERVAL);
946         if (err) {
947                 mlx5_core_err(dev, "Firmware over %d MS in pre-initializing state, aborting\n",
948                               FW_PRE_INIT_TIMEOUT_MILI);
949                 return err;
950         }
951
952         err = mlx5_cmd_init(dev);
953         if (err) {
954                 mlx5_core_err(dev, "Failed initializing command interface, aborting\n");
955                 return err;
956         }
957
958         err = wait_fw_init(dev, FW_INIT_TIMEOUT_MILI, 0);
959         if (err) {
960                 mlx5_core_err(dev, "Firmware over %d MS in initializing state, aborting\n",
961                               FW_INIT_TIMEOUT_MILI);
962                 goto err_cmd_cleanup;
963         }
964
965         err = mlx5_core_enable_hca(dev, 0);
966         if (err) {
967                 mlx5_core_err(dev, "enable hca failed\n");
968                 goto err_cmd_cleanup;
969         }
970
971         err = mlx5_core_set_issi(dev);
972         if (err) {
973                 mlx5_core_err(dev, "failed to set issi\n");
974                 goto err_disable_hca;
975         }
976
977         err = mlx5_satisfy_startup_pages(dev, 1);
978         if (err) {
979                 mlx5_core_err(dev, "failed to allocate boot pages\n");
980                 goto err_disable_hca;
981         }
982
983         err = set_hca_ctrl(dev);
984         if (err) {
985                 mlx5_core_err(dev, "set_hca_ctrl failed\n");
986                 goto reclaim_boot_pages;
987         }
988
989         err = set_hca_cap(dev);
990         if (err) {
991                 mlx5_core_err(dev, "set_hca_cap failed\n");
992                 goto reclaim_boot_pages;
993         }
994
995         err = mlx5_satisfy_startup_pages(dev, 0);
996         if (err) {
997                 mlx5_core_err(dev, "failed to allocate init pages\n");
998                 goto reclaim_boot_pages;
999         }
1000
1001         err = mlx5_cmd_init_hca(dev, sw_owner_id);
1002         if (err) {
1003                 mlx5_core_err(dev, "init hca failed\n");
1004                 goto reclaim_boot_pages;
1005         }
1006
1007         mlx5_set_driver_version(dev);
1008
1009         mlx5_start_health_poll(dev);
1010
1011         err = mlx5_query_hca_caps(dev);
1012         if (err) {
1013                 mlx5_core_err(dev, "query hca failed\n");
1014                 goto stop_health;
1015         }
1016
1017         return 0;
1018
1019 stop_health:
1020         mlx5_stop_health_poll(dev, boot);
1021 reclaim_boot_pages:
1022         mlx5_reclaim_startup_pages(dev);
1023 err_disable_hca:
1024         mlx5_core_disable_hca(dev, 0);
1025 err_cmd_cleanup:
1026         mlx5_cmd_cleanup(dev);
1027
1028         return err;
1029 }
1030
1031 static int mlx5_function_teardown(struct mlx5_core_dev *dev, bool boot)
1032 {
1033         int err;
1034
1035         mlx5_stop_health_poll(dev, boot);
1036         err = mlx5_cmd_teardown_hca(dev);
1037         if (err) {
1038                 mlx5_core_err(dev, "tear_down_hca failed, skip cleanup\n");
1039                 return err;
1040         }
1041         mlx5_reclaim_startup_pages(dev);
1042         mlx5_core_disable_hca(dev, 0);
1043         mlx5_cmd_cleanup(dev);
1044
1045         return 0;
1046 }
1047
1048 static int mlx5_load(struct mlx5_core_dev *dev)
1049 {
1050         int err;
1051
1052         dev->priv.uar = mlx5_get_uars_page(dev);
1053         if (IS_ERR(dev->priv.uar)) {
1054                 mlx5_core_err(dev, "Failed allocating uar, aborting\n");
1055                 err = PTR_ERR(dev->priv.uar);
1056                 return err;
1057         }
1058
1059         mlx5_events_start(dev);
1060         mlx5_pagealloc_start(dev);
1061
1062         err = mlx5_irq_table_create(dev);
1063         if (err) {
1064                 mlx5_core_err(dev, "Failed to alloc IRQs\n");
1065                 goto err_irq_table;
1066         }
1067
1068         err = mlx5_eq_table_create(dev);
1069         if (err) {
1070                 mlx5_core_err(dev, "Failed to create EQs\n");
1071                 goto err_eq_table;
1072         }
1073
1074         err = mlx5_fw_tracer_init(dev->tracer);
1075         if (err) {
1076                 mlx5_core_err(dev, "Failed to init FW tracer\n");
1077                 goto err_fw_tracer;
1078         }
1079
1080         mlx5_hv_vhca_init(dev->hv_vhca);
1081
1082         err = mlx5_fpga_device_start(dev);
1083         if (err) {
1084                 mlx5_core_err(dev, "fpga device start failed %d\n", err);
1085                 goto err_fpga_start;
1086         }
1087
1088         err = mlx5_accel_ipsec_init(dev);
1089         if (err) {
1090                 mlx5_core_err(dev, "IPSec device start failed %d\n", err);
1091                 goto err_ipsec_start;
1092         }
1093
1094         err = mlx5_accel_tls_init(dev);
1095         if (err) {
1096                 mlx5_core_err(dev, "TLS device start failed %d\n", err);
1097                 goto err_tls_start;
1098         }
1099
1100         err = mlx5_init_fs(dev);
1101         if (err) {
1102                 mlx5_core_err(dev, "Failed to init flow steering\n");
1103                 goto err_fs;
1104         }
1105
1106         err = mlx5_core_set_hca_defaults(dev);
1107         if (err) {
1108                 mlx5_core_err(dev, "Failed to set hca defaults\n");
1109                 goto err_sriov;
1110         }
1111
1112         err = mlx5_sriov_attach(dev);
1113         if (err) {
1114                 mlx5_core_err(dev, "sriov init failed %d\n", err);
1115                 goto err_sriov;
1116         }
1117
1118         err = mlx5_ec_init(dev);
1119         if (err) {
1120                 mlx5_core_err(dev, "Failed to init embedded CPU\n");
1121                 goto err_ec;
1122         }
1123
1124         return 0;
1125
1126 err_ec:
1127         mlx5_sriov_detach(dev);
1128 err_sriov:
1129         mlx5_cleanup_fs(dev);
1130 err_fs:
1131         mlx5_accel_tls_cleanup(dev);
1132 err_tls_start:
1133         mlx5_accel_ipsec_cleanup(dev);
1134 err_ipsec_start:
1135         mlx5_fpga_device_stop(dev);
1136 err_fpga_start:
1137         mlx5_hv_vhca_cleanup(dev->hv_vhca);
1138         mlx5_fw_tracer_cleanup(dev->tracer);
1139 err_fw_tracer:
1140         mlx5_eq_table_destroy(dev);
1141 err_eq_table:
1142         mlx5_irq_table_destroy(dev);
1143 err_irq_table:
1144         mlx5_pagealloc_stop(dev);
1145         mlx5_events_stop(dev);
1146         mlx5_put_uars_page(dev, dev->priv.uar);
1147         return err;
1148 }
1149
1150 static void mlx5_unload(struct mlx5_core_dev *dev)
1151 {
1152         mlx5_ec_cleanup(dev);
1153         mlx5_sriov_detach(dev);
1154         mlx5_cleanup_fs(dev);
1155         mlx5_accel_ipsec_cleanup(dev);
1156         mlx5_accel_tls_cleanup(dev);
1157         mlx5_fpga_device_stop(dev);
1158         mlx5_hv_vhca_cleanup(dev->hv_vhca);
1159         mlx5_fw_tracer_cleanup(dev->tracer);
1160         mlx5_eq_table_destroy(dev);
1161         mlx5_irq_table_destroy(dev);
1162         mlx5_pagealloc_stop(dev);
1163         mlx5_events_stop(dev);
1164         mlx5_put_uars_page(dev, dev->priv.uar);
1165 }
1166
1167 int mlx5_load_one(struct mlx5_core_dev *dev, bool boot)
1168 {
1169         int err = 0;
1170
1171         dev->caps.embedded_cpu = mlx5_read_embedded_cpu(dev);
1172         mutex_lock(&dev->intf_state_mutex);
1173         if (test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
1174                 mlx5_core_warn(dev, "interface is up, NOP\n");
1175                 goto out;
1176         }
1177         /* remove any previous indication of internal error */
1178         dev->state = MLX5_DEVICE_STATE_UP;
1179
1180         err = mlx5_function_setup(dev, boot);
1181         if (err)
1182                 goto out;
1183
1184         if (boot) {
1185                 err = mlx5_init_once(dev);
1186                 if (err) {
1187                         mlx5_core_err(dev, "sw objs init failed\n");
1188                         goto function_teardown;
1189                 }
1190         }
1191
1192         err = mlx5_load(dev);
1193         if (err)
1194                 goto err_load;
1195
1196         if (boot) {
1197                 err = mlx5_devlink_register(priv_to_devlink(dev), dev->device);
1198                 if (err)
1199                         goto err_devlink_reg;
1200         }
1201
1202         if (mlx5_device_registered(dev)) {
1203                 mlx5_attach_device(dev);
1204         } else {
1205                 err = mlx5_register_device(dev);
1206                 if (err) {
1207                         mlx5_core_err(dev, "register device failed %d\n", err);
1208                         goto err_reg_dev;
1209                 }
1210         }
1211
1212         set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1213 out:
1214         mutex_unlock(&dev->intf_state_mutex);
1215
1216         return err;
1217
1218 err_reg_dev:
1219         if (boot)
1220                 mlx5_devlink_unregister(priv_to_devlink(dev));
1221 err_devlink_reg:
1222         mlx5_unload(dev);
1223 err_load:
1224         if (boot)
1225                 mlx5_cleanup_once(dev);
1226 function_teardown:
1227         mlx5_function_teardown(dev, boot);
1228         dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
1229         mutex_unlock(&dev->intf_state_mutex);
1230
1231         return err;
1232 }
1233
1234 int mlx5_unload_one(struct mlx5_core_dev *dev, bool cleanup)
1235 {
1236         if (cleanup) {
1237                 mlx5_unregister_device(dev);
1238                 mlx5_drain_health_wq(dev);
1239         }
1240
1241         mutex_lock(&dev->intf_state_mutex);
1242         if (!test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
1243                 mlx5_core_warn(dev, "%s: interface is down, NOP\n",
1244                                __func__);
1245                 if (cleanup)
1246                         mlx5_cleanup_once(dev);
1247                 goto out;
1248         }
1249
1250         clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1251
1252         if (mlx5_device_registered(dev))
1253                 mlx5_detach_device(dev);
1254
1255         mlx5_unload(dev);
1256
1257         if (cleanup)
1258                 mlx5_cleanup_once(dev);
1259
1260         mlx5_function_teardown(dev, cleanup);
1261 out:
1262         mutex_unlock(&dev->intf_state_mutex);
1263         return 0;
1264 }
1265
1266 static int mlx5_mdev_init(struct mlx5_core_dev *dev, int profile_idx)
1267 {
1268         struct mlx5_priv *priv = &dev->priv;
1269         int err;
1270
1271         dev->profile = &profile[profile_idx];
1272
1273         INIT_LIST_HEAD(&priv->ctx_list);
1274         spin_lock_init(&priv->ctx_lock);
1275         mutex_init(&dev->intf_state_mutex);
1276
1277         mutex_init(&priv->bfregs.reg_head.lock);
1278         mutex_init(&priv->bfregs.wc_head.lock);
1279         INIT_LIST_HEAD(&priv->bfregs.reg_head.list);
1280         INIT_LIST_HEAD(&priv->bfregs.wc_head.list);
1281
1282         mutex_init(&priv->alloc_mutex);
1283         mutex_init(&priv->pgdir_mutex);
1284         INIT_LIST_HEAD(&priv->pgdir_list);
1285         spin_lock_init(&priv->mkey_lock);
1286
1287         priv->dbg_root = debugfs_create_dir(dev_name(dev->device),
1288                                             mlx5_debugfs_root);
1289         if (!priv->dbg_root) {
1290                 dev_err(dev->device, "mlx5_core: error, Cannot create debugfs dir, aborting\n");
1291                 return -ENOMEM;
1292         }
1293
1294         err = mlx5_health_init(dev);
1295         if (err)
1296                 goto err_health_init;
1297
1298         err = mlx5_pagealloc_init(dev);
1299         if (err)
1300                 goto err_pagealloc_init;
1301
1302         return 0;
1303
1304 err_pagealloc_init:
1305         mlx5_health_cleanup(dev);
1306 err_health_init:
1307         debugfs_remove(dev->priv.dbg_root);
1308
1309         return err;
1310 }
1311
1312 static void mlx5_mdev_uninit(struct mlx5_core_dev *dev)
1313 {
1314         mlx5_pagealloc_cleanup(dev);
1315         mlx5_health_cleanup(dev);
1316         debugfs_remove_recursive(dev->priv.dbg_root);
1317 }
1318
1319 #define MLX5_IB_MOD "mlx5_ib"
1320 static int init_one(struct pci_dev *pdev, const struct pci_device_id *id)
1321 {
1322         struct mlx5_core_dev *dev;
1323         struct devlink *devlink;
1324         int err;
1325
1326         devlink = mlx5_devlink_alloc();
1327         if (!devlink) {
1328                 dev_err(&pdev->dev, "devlink alloc failed\n");
1329                 return -ENOMEM;
1330         }
1331
1332         dev = devlink_priv(devlink);
1333         dev->device = &pdev->dev;
1334         dev->pdev = pdev;
1335
1336         dev->coredev_type = id->driver_data & MLX5_PCI_DEV_IS_VF ?
1337                          MLX5_COREDEV_VF : MLX5_COREDEV_PF;
1338
1339         err = mlx5_mdev_init(dev, prof_sel);
1340         if (err)
1341                 goto mdev_init_err;
1342
1343         err = mlx5_pci_init(dev, pdev, id);
1344         if (err) {
1345                 mlx5_core_err(dev, "mlx5_pci_init failed with error code %d\n",
1346                               err);
1347                 goto pci_init_err;
1348         }
1349
1350         err = mlx5_load_one(dev, true);
1351         if (err) {
1352                 mlx5_core_err(dev, "mlx5_load_one failed with error code %d\n",
1353                               err);
1354                 goto err_load_one;
1355         }
1356
1357         request_module_nowait(MLX5_IB_MOD);
1358
1359         err = mlx5_crdump_enable(dev);
1360         if (err)
1361                 dev_err(&pdev->dev, "mlx5_crdump_enable failed with error code %d\n", err);
1362
1363         pci_save_state(pdev);
1364         return 0;
1365
1366 err_load_one:
1367         mlx5_pci_close(dev);
1368 pci_init_err:
1369         mlx5_mdev_uninit(dev);
1370 mdev_init_err:
1371         mlx5_devlink_free(devlink);
1372
1373         return err;
1374 }
1375
1376 static void remove_one(struct pci_dev *pdev)
1377 {
1378         struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1379         struct devlink *devlink = priv_to_devlink(dev);
1380
1381         mlx5_crdump_disable(dev);
1382         mlx5_devlink_unregister(devlink);
1383
1384         if (mlx5_unload_one(dev, true)) {
1385                 mlx5_core_err(dev, "mlx5_unload_one failed\n");
1386                 mlx5_health_flush(dev);
1387                 return;
1388         }
1389
1390         mlx5_pci_close(dev);
1391         mlx5_mdev_uninit(dev);
1392         mlx5_devlink_free(devlink);
1393 }
1394
1395 static pci_ers_result_t mlx5_pci_err_detected(struct pci_dev *pdev,
1396                                               pci_channel_state_t state)
1397 {
1398         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1399
1400         mlx5_core_info(dev, "%s was called\n", __func__);
1401
1402         mlx5_enter_error_state(dev, false);
1403         mlx5_error_sw_reset(dev);
1404         mlx5_unload_one(dev, false);
1405         mlx5_drain_health_wq(dev);
1406         mlx5_pci_disable_device(dev);
1407
1408         return state == pci_channel_io_perm_failure ?
1409                 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
1410 }
1411
1412 /* wait for the device to show vital signs by waiting
1413  * for the health counter to start counting.
1414  */
1415 static int wait_vital(struct pci_dev *pdev)
1416 {
1417         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1418         struct mlx5_core_health *health = &dev->priv.health;
1419         const int niter = 100;
1420         u32 last_count = 0;
1421         u32 count;
1422         int i;
1423
1424         for (i = 0; i < niter; i++) {
1425                 count = ioread32be(health->health_counter);
1426                 if (count && count != 0xffffffff) {
1427                         if (last_count && last_count != count) {
1428                                 mlx5_core_info(dev,
1429                                                "wait vital counter value 0x%x after %d iterations\n",
1430                                                count, i);
1431                                 return 0;
1432                         }
1433                         last_count = count;
1434                 }
1435                 msleep(50);
1436         }
1437
1438         return -ETIMEDOUT;
1439 }
1440
1441 static pci_ers_result_t mlx5_pci_slot_reset(struct pci_dev *pdev)
1442 {
1443         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1444         int err;
1445
1446         mlx5_core_info(dev, "%s was called\n", __func__);
1447
1448         err = mlx5_pci_enable_device(dev);
1449         if (err) {
1450                 mlx5_core_err(dev, "%s: mlx5_pci_enable_device failed with error code: %d\n",
1451                               __func__, err);
1452                 return PCI_ERS_RESULT_DISCONNECT;
1453         }
1454
1455         pci_set_master(pdev);
1456         pci_restore_state(pdev);
1457         pci_save_state(pdev);
1458
1459         if (wait_vital(pdev)) {
1460                 mlx5_core_err(dev, "%s: wait_vital timed out\n", __func__);
1461                 return PCI_ERS_RESULT_DISCONNECT;
1462         }
1463
1464         return PCI_ERS_RESULT_RECOVERED;
1465 }
1466
1467 static void mlx5_pci_resume(struct pci_dev *pdev)
1468 {
1469         struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1470         int err;
1471
1472         mlx5_core_info(dev, "%s was called\n", __func__);
1473
1474         err = mlx5_load_one(dev, false);
1475         if (err)
1476                 mlx5_core_err(dev, "%s: mlx5_load_one failed with error code: %d\n",
1477                               __func__, err);
1478         else
1479                 mlx5_core_info(dev, "%s: device recovered\n", __func__);
1480 }
1481
1482 static const struct pci_error_handlers mlx5_err_handler = {
1483         .error_detected = mlx5_pci_err_detected,
1484         .slot_reset     = mlx5_pci_slot_reset,
1485         .resume         = mlx5_pci_resume
1486 };
1487
1488 static int mlx5_try_fast_unload(struct mlx5_core_dev *dev)
1489 {
1490         bool fast_teardown = false, force_teardown = false;
1491         int ret = 1;
1492
1493         fast_teardown = MLX5_CAP_GEN(dev, fast_teardown);
1494         force_teardown = MLX5_CAP_GEN(dev, force_teardown);
1495
1496         mlx5_core_dbg(dev, "force teardown firmware support=%d\n", force_teardown);
1497         mlx5_core_dbg(dev, "fast teardown firmware support=%d\n", fast_teardown);
1498
1499         if (!fast_teardown && !force_teardown)
1500                 return -EOPNOTSUPP;
1501
1502         if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
1503                 mlx5_core_dbg(dev, "Device in internal error state, giving up\n");
1504                 return -EAGAIN;
1505         }
1506
1507         /* Panic tear down fw command will stop the PCI bus communication
1508          * with the HCA, so the health polll is no longer needed.
1509          */
1510         mlx5_drain_health_wq(dev);
1511         mlx5_stop_health_poll(dev, false);
1512
1513         ret = mlx5_cmd_fast_teardown_hca(dev);
1514         if (!ret)
1515                 goto succeed;
1516
1517         ret = mlx5_cmd_force_teardown_hca(dev);
1518         if (!ret)
1519                 goto succeed;
1520
1521         mlx5_core_dbg(dev, "Firmware couldn't do fast unload error: %d\n", ret);
1522         mlx5_start_health_poll(dev);
1523         return ret;
1524
1525 succeed:
1526         mlx5_enter_error_state(dev, true);
1527
1528         /* Some platforms requiring freeing the IRQ's in the shutdown
1529          * flow. If they aren't freed they can't be allocated after
1530          * kexec. There is no need to cleanup the mlx5_core software
1531          * contexts.
1532          */
1533         mlx5_core_eq_free_irqs(dev);
1534
1535         return 0;
1536 }
1537
1538 static void shutdown(struct pci_dev *pdev)
1539 {
1540         struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1541         int err;
1542
1543         mlx5_core_info(dev, "Shutdown was called\n");
1544         err = mlx5_try_fast_unload(dev);
1545         if (err)
1546                 mlx5_unload_one(dev, false);
1547         mlx5_pci_disable_device(dev);
1548 }
1549
1550 static const struct pci_device_id mlx5_core_pci_table[] = {
1551         { PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTIB) },
1552         { PCI_VDEVICE(MELLANOX, 0x1012), MLX5_PCI_DEV_IS_VF},   /* Connect-IB VF */
1553         { PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTX4) },
1554         { PCI_VDEVICE(MELLANOX, 0x1014), MLX5_PCI_DEV_IS_VF},   /* ConnectX-4 VF */
1555         { PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTX4_LX) },
1556         { PCI_VDEVICE(MELLANOX, 0x1016), MLX5_PCI_DEV_IS_VF},   /* ConnectX-4LX VF */
1557         { PCI_VDEVICE(MELLANOX, 0x1017) },                      /* ConnectX-5, PCIe 3.0 */
1558         { PCI_VDEVICE(MELLANOX, 0x1018), MLX5_PCI_DEV_IS_VF},   /* ConnectX-5 VF */
1559         { PCI_VDEVICE(MELLANOX, 0x1019) },                      /* ConnectX-5 Ex */
1560         { PCI_VDEVICE(MELLANOX, 0x101a), MLX5_PCI_DEV_IS_VF},   /* ConnectX-5 Ex VF */
1561         { PCI_VDEVICE(MELLANOX, 0x101b) },                      /* ConnectX-6 */
1562         { PCI_VDEVICE(MELLANOX, 0x101c), MLX5_PCI_DEV_IS_VF},   /* ConnectX-6 VF */
1563         { PCI_VDEVICE(MELLANOX, 0x101d) },                      /* ConnectX-6 Dx */
1564         { PCI_VDEVICE(MELLANOX, 0x101e), MLX5_PCI_DEV_IS_VF},   /* ConnectX Family mlx5Gen Virtual Function */
1565         { PCI_VDEVICE(MELLANOX, 0x101f) },                      /* ConnectX-6 LX */
1566         { PCI_VDEVICE(MELLANOX, 0x1021) },                      /* ConnectX-7 */
1567         { PCI_VDEVICE(MELLANOX, 0xa2d2) },                      /* BlueField integrated ConnectX-5 network controller */
1568         { PCI_VDEVICE(MELLANOX, 0xa2d3), MLX5_PCI_DEV_IS_VF},   /* BlueField integrated ConnectX-5 network controller VF */
1569         { PCI_VDEVICE(MELLANOX, 0xa2d6) },                      /* BlueField-2 integrated ConnectX-6 Dx network controller */
1570         { 0, }
1571 };
1572
1573 MODULE_DEVICE_TABLE(pci, mlx5_core_pci_table);
1574
1575 void mlx5_disable_device(struct mlx5_core_dev *dev)
1576 {
1577         mlx5_error_sw_reset(dev);
1578         mlx5_unload_one(dev, false);
1579 }
1580
1581 void mlx5_recover_device(struct mlx5_core_dev *dev)
1582 {
1583         mlx5_pci_disable_device(dev);
1584         if (mlx5_pci_slot_reset(dev->pdev) == PCI_ERS_RESULT_RECOVERED)
1585                 mlx5_pci_resume(dev->pdev);
1586 }
1587
1588 static struct pci_driver mlx5_core_driver = {
1589         .name           = DRIVER_NAME,
1590         .id_table       = mlx5_core_pci_table,
1591         .probe          = init_one,
1592         .remove         = remove_one,
1593         .shutdown       = shutdown,
1594         .err_handler    = &mlx5_err_handler,
1595         .sriov_configure   = mlx5_core_sriov_configure,
1596 };
1597
1598 static void mlx5_core_verify_params(void)
1599 {
1600         if (prof_sel >= ARRAY_SIZE(profile)) {
1601                 pr_warn("mlx5_core: WARNING: Invalid module parameter prof_sel %d, valid range 0-%zu, changing back to default(%d)\n",
1602                         prof_sel,
1603                         ARRAY_SIZE(profile) - 1,
1604                         MLX5_DEFAULT_PROF);
1605                 prof_sel = MLX5_DEFAULT_PROF;
1606         }
1607 }
1608
1609 static int __init init(void)
1610 {
1611         int err;
1612
1613         get_random_bytes(&sw_owner_id, sizeof(sw_owner_id));
1614
1615         mlx5_core_verify_params();
1616         mlx5_accel_ipsec_build_fs_cmds();
1617         mlx5_register_debugfs();
1618
1619         err = pci_register_driver(&mlx5_core_driver);
1620         if (err)
1621                 goto err_debug;
1622
1623 #ifdef CONFIG_MLX5_CORE_EN
1624         mlx5e_init();
1625 #endif
1626
1627         return 0;
1628
1629 err_debug:
1630         mlx5_unregister_debugfs();
1631         return err;
1632 }
1633
1634 static void __exit cleanup(void)
1635 {
1636 #ifdef CONFIG_MLX5_CORE_EN
1637         mlx5e_cleanup();
1638 #endif
1639         pci_unregister_driver(&mlx5_core_driver);
1640         mlx5_unregister_debugfs();
1641 }
1642
1643 module_init(init);
1644 module_exit(cleanup);
This page took 0.128972 seconds and 4 git commands to generate.