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 <linux/version.h>
54 #include <net/devlink.h>
55 #include "mlx5_core.h"
56 #include "lib/eq.h"
57 #include "fs_core.h"
58 #include "lib/mpfs.h"
59 #include "eswitch.h"
60 #include "devlink.h"
61 #include "fw_reset.h"
62 #include "lib/mlx5.h"
63 #include "lib/tout.h"
64 #include "fpga/core.h"
65 #include "accel/ipsec.h"
66 #include "lib/clock.h"
67 #include "lib/vxlan.h"
68 #include "lib/geneve.h"
69 #include "lib/devcom.h"
70 #include "lib/pci_vsc.h"
71 #include "diag/fw_tracer.h"
72 #include "ecpf.h"
73 #include "lib/hv_vhca.h"
74 #include "diag/rsc_dump.h"
75 #include "sf/vhca_event.h"
76 #include "sf/dev/dev.h"
77 #include "sf/sf.h"
78 #include "mlx5_irq.h"
79 
80 MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
81 MODULE_DESCRIPTION("Mellanox 5th generation network adapters (ConnectX series) core driver");
82 MODULE_LICENSE("Dual BSD/GPL");
83 
84 unsigned int mlx5_core_debug_mask;
85 module_param_named(debug_mask, mlx5_core_debug_mask, uint, 0644);
86 MODULE_PARM_DESC(debug_mask, "debug mask: 1 = dump cmd data, 2 = dump cmd exec time, 3 = both. Default=0");
87 
88 static unsigned int prof_sel = MLX5_DEFAULT_PROF;
89 module_param_named(prof_sel, prof_sel, uint, 0444);
90 MODULE_PARM_DESC(prof_sel, "profile selector. Valid range 0 - 2");
91 
92 static u32 sw_owner_id[4];
93 
94 enum {
95 	MLX5_ATOMIC_REQ_MODE_BE = 0x0,
96 	MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS = 0x1,
97 };
98 
99 #define LOG_MAX_SUPPORTED_QPS 0xff
100 
101 static struct mlx5_profile profile[] = {
102 	[0] = {
103 		.mask           = 0,
104 	},
105 	[1] = {
106 		.mask		= MLX5_PROF_MASK_QP_SIZE,
107 		.log_max_qp	= 12,
108 	},
109 	[2] = {
110 		.mask		= MLX5_PROF_MASK_QP_SIZE |
111 				  MLX5_PROF_MASK_MR_CACHE,
112 		.log_max_qp	= LOG_MAX_SUPPORTED_QPS,
113 		.mr_cache[0]	= {
114 			.size	= 500,
115 			.limit	= 250
116 		},
117 		.mr_cache[1]	= {
118 			.size	= 500,
119 			.limit	= 250
120 		},
121 		.mr_cache[2]	= {
122 			.size	= 500,
123 			.limit	= 250
124 		},
125 		.mr_cache[3]	= {
126 			.size	= 500,
127 			.limit	= 250
128 		},
129 		.mr_cache[4]	= {
130 			.size	= 500,
131 			.limit	= 250
132 		},
133 		.mr_cache[5]	= {
134 			.size	= 500,
135 			.limit	= 250
136 		},
137 		.mr_cache[6]	= {
138 			.size	= 500,
139 			.limit	= 250
140 		},
141 		.mr_cache[7]	= {
142 			.size	= 500,
143 			.limit	= 250
144 		},
145 		.mr_cache[8]	= {
146 			.size	= 500,
147 			.limit	= 250
148 		},
149 		.mr_cache[9]	= {
150 			.size	= 500,
151 			.limit	= 250
152 		},
153 		.mr_cache[10]	= {
154 			.size	= 500,
155 			.limit	= 250
156 		},
157 		.mr_cache[11]	= {
158 			.size	= 500,
159 			.limit	= 250
160 		},
161 		.mr_cache[12]	= {
162 			.size	= 64,
163 			.limit	= 32
164 		},
165 		.mr_cache[13]	= {
166 			.size	= 32,
167 			.limit	= 16
168 		},
169 		.mr_cache[14]	= {
170 			.size	= 16,
171 			.limit	= 8
172 		},
173 		.mr_cache[15]	= {
174 			.size	= 8,
175 			.limit	= 4
176 		},
177 	},
178 };
179 
180 static int fw_initializing(struct mlx5_core_dev *dev)
181 {
182 	return ioread32be(&dev->iseg->initializing) >> 31;
183 }
184 
185 static int wait_fw_init(struct mlx5_core_dev *dev, u32 max_wait_mili,
186 			u32 warn_time_mili)
187 {
188 	unsigned long warn = jiffies + msecs_to_jiffies(warn_time_mili);
189 	unsigned long end = jiffies + msecs_to_jiffies(max_wait_mili);
190 	int err = 0;
191 
192 	while (fw_initializing(dev)) {
193 		if (time_after(jiffies, end)) {
194 			err = -EBUSY;
195 			break;
196 		}
197 		if (warn_time_mili && time_after(jiffies, warn)) {
198 			mlx5_core_warn(dev, "Waiting for FW initialization, timeout abort in %ds\n",
199 				       jiffies_to_msecs(end - warn) / 1000);
200 			warn = jiffies + msecs_to_jiffies(warn_time_mili);
201 		}
202 		msleep(mlx5_tout_ms(dev, FW_PRE_INIT_WAIT));
203 	}
204 
205 	return err;
206 }
207 
208 static void mlx5_set_driver_version(struct mlx5_core_dev *dev)
209 {
210 	int driver_ver_sz = MLX5_FLD_SZ_BYTES(set_driver_version_in,
211 					      driver_version);
212 	u8 in[MLX5_ST_SZ_BYTES(set_driver_version_in)] = {};
213 	int remaining_size = driver_ver_sz;
214 	char *string;
215 
216 	if (!MLX5_CAP_GEN(dev, driver_version))
217 		return;
218 
219 	string = MLX5_ADDR_OF(set_driver_version_in, in, driver_version);
220 
221 	strncpy(string, "Linux", remaining_size);
222 
223 	remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
224 	strncat(string, ",", remaining_size);
225 
226 	remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
227 	strncat(string, KBUILD_MODNAME, remaining_size);
228 
229 	remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
230 	strncat(string, ",", remaining_size);
231 
232 	remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
233 
234 	snprintf(string + strlen(string), remaining_size, "%u.%u.%u",
235 		LINUX_VERSION_MAJOR, LINUX_VERSION_PATCHLEVEL,
236 		LINUX_VERSION_SUBLEVEL);
237 
238 	/*Send the command*/
239 	MLX5_SET(set_driver_version_in, in, opcode,
240 		 MLX5_CMD_OP_SET_DRIVER_VERSION);
241 
242 	mlx5_cmd_exec_in(dev, set_driver_version, in);
243 }
244 
245 static int set_dma_caps(struct pci_dev *pdev)
246 {
247 	int err;
248 
249 	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
250 	if (err) {
251 		dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask\n");
252 		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
253 		if (err) {
254 			dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting\n");
255 			return err;
256 		}
257 	}
258 
259 	dma_set_max_seg_size(&pdev->dev, 2u * 1024 * 1024 * 1024);
260 	return err;
261 }
262 
263 static int mlx5_pci_enable_device(struct mlx5_core_dev *dev)
264 {
265 	struct pci_dev *pdev = dev->pdev;
266 	int err = 0;
267 
268 	mutex_lock(&dev->pci_status_mutex);
269 	if (dev->pci_status == MLX5_PCI_STATUS_DISABLED) {
270 		err = pci_enable_device(pdev);
271 		if (!err)
272 			dev->pci_status = MLX5_PCI_STATUS_ENABLED;
273 	}
274 	mutex_unlock(&dev->pci_status_mutex);
275 
276 	return err;
277 }
278 
279 static void mlx5_pci_disable_device(struct mlx5_core_dev *dev)
280 {
281 	struct pci_dev *pdev = dev->pdev;
282 
283 	mutex_lock(&dev->pci_status_mutex);
284 	if (dev->pci_status == MLX5_PCI_STATUS_ENABLED) {
285 		pci_disable_device(pdev);
286 		dev->pci_status = MLX5_PCI_STATUS_DISABLED;
287 	}
288 	mutex_unlock(&dev->pci_status_mutex);
289 }
290 
291 static int request_bar(struct pci_dev *pdev)
292 {
293 	int err = 0;
294 
295 	if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
296 		dev_err(&pdev->dev, "Missing registers BAR, aborting\n");
297 		return -ENODEV;
298 	}
299 
300 	err = pci_request_regions(pdev, KBUILD_MODNAME);
301 	if (err)
302 		dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
303 
304 	return err;
305 }
306 
307 static void release_bar(struct pci_dev *pdev)
308 {
309 	pci_release_regions(pdev);
310 }
311 
312 struct mlx5_reg_host_endianness {
313 	u8	he;
314 	u8      rsvd[15];
315 };
316 
317 #define CAP_MASK(pos, size) ((u64)((1 << (size)) - 1) << (pos))
318 
319 enum {
320 	MLX5_CAP_BITS_RW_MASK = CAP_MASK(MLX5_CAP_OFF_CMDIF_CSUM, 2) |
321 				MLX5_DEV_CAP_FLAG_DCT,
322 };
323 
324 static u16 to_fw_pkey_sz(struct mlx5_core_dev *dev, u32 size)
325 {
326 	switch (size) {
327 	case 128:
328 		return 0;
329 	case 256:
330 		return 1;
331 	case 512:
332 		return 2;
333 	case 1024:
334 		return 3;
335 	case 2048:
336 		return 4;
337 	case 4096:
338 		return 5;
339 	default:
340 		mlx5_core_warn(dev, "invalid pkey table size %d\n", size);
341 		return 0;
342 	}
343 }
344 
345 static int mlx5_core_get_caps_mode(struct mlx5_core_dev *dev,
346 				   enum mlx5_cap_type cap_type,
347 				   enum mlx5_cap_mode cap_mode)
348 {
349 	u8 in[MLX5_ST_SZ_BYTES(query_hca_cap_in)];
350 	int out_sz = MLX5_ST_SZ_BYTES(query_hca_cap_out);
351 	void *out, *hca_caps;
352 	u16 opmod = (cap_type << 1) | (cap_mode & 0x01);
353 	int err;
354 
355 	memset(in, 0, sizeof(in));
356 	out = kzalloc(out_sz, GFP_KERNEL);
357 	if (!out)
358 		return -ENOMEM;
359 
360 	MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
361 	MLX5_SET(query_hca_cap_in, in, op_mod, opmod);
362 	err = mlx5_cmd_exec_inout(dev, query_hca_cap, in, out);
363 	if (err) {
364 		mlx5_core_warn(dev,
365 			       "QUERY_HCA_CAP : type(%x) opmode(%x) Failed(%d)\n",
366 			       cap_type, cap_mode, err);
367 		goto query_ex;
368 	}
369 
370 	hca_caps =  MLX5_ADDR_OF(query_hca_cap_out, out, capability);
371 
372 	switch (cap_mode) {
373 	case HCA_CAP_OPMOD_GET_MAX:
374 		memcpy(dev->caps.hca[cap_type]->max, hca_caps,
375 		       MLX5_UN_SZ_BYTES(hca_cap_union));
376 		break;
377 	case HCA_CAP_OPMOD_GET_CUR:
378 		memcpy(dev->caps.hca[cap_type]->cur, hca_caps,
379 		       MLX5_UN_SZ_BYTES(hca_cap_union));
380 		break;
381 	default:
382 		mlx5_core_warn(dev,
383 			       "Tried to query dev cap type(%x) with wrong opmode(%x)\n",
384 			       cap_type, cap_mode);
385 		err = -EINVAL;
386 		break;
387 	}
388 query_ex:
389 	kfree(out);
390 	return err;
391 }
392 
393 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type)
394 {
395 	int ret;
396 
397 	ret = mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_CUR);
398 	if (ret)
399 		return ret;
400 	return mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_MAX);
401 }
402 
403 static int set_caps(struct mlx5_core_dev *dev, void *in, int opmod)
404 {
405 	MLX5_SET(set_hca_cap_in, in, opcode, MLX5_CMD_OP_SET_HCA_CAP);
406 	MLX5_SET(set_hca_cap_in, in, op_mod, opmod << 1);
407 	return mlx5_cmd_exec_in(dev, set_hca_cap, in);
408 }
409 
410 static int handle_hca_cap_atomic(struct mlx5_core_dev *dev, void *set_ctx)
411 {
412 	void *set_hca_cap;
413 	int req_endianness;
414 	int err;
415 
416 	if (!MLX5_CAP_GEN(dev, atomic))
417 		return 0;
418 
419 	err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
420 	if (err)
421 		return err;
422 
423 	req_endianness =
424 		MLX5_CAP_ATOMIC(dev,
425 				supported_atomic_req_8B_endianness_mode_1);
426 
427 	if (req_endianness != MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS)
428 		return 0;
429 
430 	set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
431 
432 	/* Set requestor to host endianness */
433 	MLX5_SET(atomic_caps, set_hca_cap, atomic_req_8B_endianness_mode,
434 		 MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS);
435 
436 	return set_caps(dev, set_ctx, MLX5_SET_HCA_CAP_OP_MOD_ATOMIC);
437 }
438 
439 static int handle_hca_cap_odp(struct mlx5_core_dev *dev, void *set_ctx)
440 {
441 	void *set_hca_cap;
442 	bool do_set = false;
443 	int err;
444 
445 	if (!IS_ENABLED(CONFIG_INFINIBAND_ON_DEMAND_PAGING) ||
446 	    !MLX5_CAP_GEN(dev, pg))
447 		return 0;
448 
449 	err = mlx5_core_get_caps(dev, MLX5_CAP_ODP);
450 	if (err)
451 		return err;
452 
453 	set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
454 	memcpy(set_hca_cap, dev->caps.hca[MLX5_CAP_ODP]->cur,
455 	       MLX5_ST_SZ_BYTES(odp_cap));
456 
457 #define ODP_CAP_SET_MAX(dev, field)                                            \
458 	do {                                                                   \
459 		u32 _res = MLX5_CAP_ODP_MAX(dev, field);                       \
460 		if (_res) {                                                    \
461 			do_set = true;                                         \
462 			MLX5_SET(odp_cap, set_hca_cap, field, _res);           \
463 		}                                                              \
464 	} while (0)
465 
466 	ODP_CAP_SET_MAX(dev, ud_odp_caps.srq_receive);
467 	ODP_CAP_SET_MAX(dev, rc_odp_caps.srq_receive);
468 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.srq_receive);
469 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.send);
470 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.receive);
471 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.write);
472 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.read);
473 	ODP_CAP_SET_MAX(dev, xrc_odp_caps.atomic);
474 	ODP_CAP_SET_MAX(dev, dc_odp_caps.srq_receive);
475 	ODP_CAP_SET_MAX(dev, dc_odp_caps.send);
476 	ODP_CAP_SET_MAX(dev, dc_odp_caps.receive);
477 	ODP_CAP_SET_MAX(dev, dc_odp_caps.write);
478 	ODP_CAP_SET_MAX(dev, dc_odp_caps.read);
479 	ODP_CAP_SET_MAX(dev, dc_odp_caps.atomic);
480 
481 	if (!do_set)
482 		return 0;
483 
484 	return set_caps(dev, set_ctx, MLX5_SET_HCA_CAP_OP_MOD_ODP);
485 }
486 
487 static int max_uc_list_get_devlink_param(struct mlx5_core_dev *dev)
488 {
489 	struct devlink *devlink = priv_to_devlink(dev);
490 	union devlink_param_value val;
491 	int err;
492 
493 	err = devlink_param_driverinit_value_get(devlink,
494 						 DEVLINK_PARAM_GENERIC_ID_MAX_MACS,
495 						 &val);
496 	if (!err)
497 		return val.vu32;
498 	mlx5_core_dbg(dev, "Failed to get param. err = %d\n", err);
499 	return err;
500 }
501 
502 static int handle_hca_cap(struct mlx5_core_dev *dev, void *set_ctx)
503 {
504 	struct mlx5_profile *prof = &dev->profile;
505 	void *set_hca_cap;
506 	int max_uc_list;
507 	int err;
508 
509 	err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
510 	if (err)
511 		return err;
512 
513 	set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx,
514 				   capability);
515 	memcpy(set_hca_cap, dev->caps.hca[MLX5_CAP_GENERAL]->cur,
516 	       MLX5_ST_SZ_BYTES(cmd_hca_cap));
517 
518 	mlx5_core_dbg(dev, "Current Pkey table size %d Setting new size %d\n",
519 		      mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(dev, pkey_table_size)),
520 		      128);
521 	/* we limit the size of the pkey table to 128 entries for now */
522 	MLX5_SET(cmd_hca_cap, set_hca_cap, pkey_table_size,
523 		 to_fw_pkey_sz(dev, 128));
524 
525 	/* Check log_max_qp from HCA caps to set in current profile */
526 	if (prof->log_max_qp == LOG_MAX_SUPPORTED_QPS) {
527 		prof->log_max_qp = min_t(u8, 17, MLX5_CAP_GEN_MAX(dev, log_max_qp));
528 	} else if (MLX5_CAP_GEN_MAX(dev, log_max_qp) < prof->log_max_qp) {
529 		mlx5_core_warn(dev, "log_max_qp value in current profile is %d, changing it to HCA capability limit (%d)\n",
530 			       prof->log_max_qp,
531 			       MLX5_CAP_GEN_MAX(dev, log_max_qp));
532 		prof->log_max_qp = MLX5_CAP_GEN_MAX(dev, log_max_qp);
533 	}
534 	if (prof->mask & MLX5_PROF_MASK_QP_SIZE)
535 		MLX5_SET(cmd_hca_cap, set_hca_cap, log_max_qp,
536 			 prof->log_max_qp);
537 
538 	/* disable cmdif checksum */
539 	MLX5_SET(cmd_hca_cap, set_hca_cap, cmdif_checksum, 0);
540 
541 	/* Enable 4K UAR only when HCA supports it and page size is bigger
542 	 * than 4K.
543 	 */
544 	if (MLX5_CAP_GEN_MAX(dev, uar_4k) && PAGE_SIZE > 4096)
545 		MLX5_SET(cmd_hca_cap, set_hca_cap, uar_4k, 1);
546 
547 	MLX5_SET(cmd_hca_cap, set_hca_cap, log_uar_page_sz, PAGE_SHIFT - 12);
548 
549 	if (MLX5_CAP_GEN_MAX(dev, cache_line_128byte))
550 		MLX5_SET(cmd_hca_cap,
551 			 set_hca_cap,
552 			 cache_line_128byte,
553 			 cache_line_size() >= 128 ? 1 : 0);
554 
555 	if (MLX5_CAP_GEN_MAX(dev, dct))
556 		MLX5_SET(cmd_hca_cap, set_hca_cap, dct, 1);
557 
558 	if (MLX5_CAP_GEN_MAX(dev, pci_sync_for_fw_update_event))
559 		MLX5_SET(cmd_hca_cap, set_hca_cap, pci_sync_for_fw_update_event, 1);
560 
561 	if (MLX5_CAP_GEN_MAX(dev, num_vhca_ports))
562 		MLX5_SET(cmd_hca_cap,
563 			 set_hca_cap,
564 			 num_vhca_ports,
565 			 MLX5_CAP_GEN_MAX(dev, num_vhca_ports));
566 
567 	if (MLX5_CAP_GEN_MAX(dev, release_all_pages))
568 		MLX5_SET(cmd_hca_cap, set_hca_cap, release_all_pages, 1);
569 
570 	if (MLX5_CAP_GEN_MAX(dev, mkey_by_name))
571 		MLX5_SET(cmd_hca_cap, set_hca_cap, mkey_by_name, 1);
572 
573 	mlx5_vhca_state_cap_handle(dev, set_hca_cap);
574 
575 	if (MLX5_CAP_GEN_MAX(dev, num_total_dynamic_vf_msix))
576 		MLX5_SET(cmd_hca_cap, set_hca_cap, num_total_dynamic_vf_msix,
577 			 MLX5_CAP_GEN_MAX(dev, num_total_dynamic_vf_msix));
578 
579 	if (MLX5_CAP_GEN(dev, roce_rw_supported))
580 		MLX5_SET(cmd_hca_cap, set_hca_cap, roce, mlx5_is_roce_init_enabled(dev));
581 
582 	max_uc_list = max_uc_list_get_devlink_param(dev);
583 	if (max_uc_list > 0)
584 		MLX5_SET(cmd_hca_cap, set_hca_cap, log_max_current_uc_list,
585 			 ilog2(max_uc_list));
586 
587 	return set_caps(dev, set_ctx, MLX5_SET_HCA_CAP_OP_MOD_GENERAL_DEVICE);
588 }
589 
590 /* Cached MLX5_CAP_GEN(dev, roce) can be out of sync this early in the
591  * boot process.
592  * In case RoCE cap is writable in FW and user/devlink requested to change the
593  * cap, we are yet to query the final state of the above cap.
594  * Hence, the need for this function.
595  *
596  * Returns
597  * True:
598  * 1) RoCE cap is read only in FW and already disabled
599  * OR:
600  * 2) RoCE cap is writable in FW and user/devlink requested it off.
601  *
602  * In any other case, return False.
603  */
604 static bool is_roce_fw_disabled(struct mlx5_core_dev *dev)
605 {
606 	return (MLX5_CAP_GEN(dev, roce_rw_supported) && !mlx5_is_roce_init_enabled(dev)) ||
607 		(!MLX5_CAP_GEN(dev, roce_rw_supported) && !MLX5_CAP_GEN(dev, roce));
608 }
609 
610 static int handle_hca_cap_roce(struct mlx5_core_dev *dev, void *set_ctx)
611 {
612 	void *set_hca_cap;
613 	int err;
614 
615 	if (is_roce_fw_disabled(dev))
616 		return 0;
617 
618 	err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE);
619 	if (err)
620 		return err;
621 
622 	if (MLX5_CAP_ROCE(dev, sw_r_roce_src_udp_port) ||
623 	    !MLX5_CAP_ROCE_MAX(dev, sw_r_roce_src_udp_port))
624 		return 0;
625 
626 	set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
627 	memcpy(set_hca_cap, dev->caps.hca[MLX5_CAP_ROCE]->cur,
628 	       MLX5_ST_SZ_BYTES(roce_cap));
629 	MLX5_SET(roce_cap, set_hca_cap, sw_r_roce_src_udp_port, 1);
630 
631 	err = set_caps(dev, set_ctx, MLX5_SET_HCA_CAP_OP_MOD_ROCE);
632 	return err;
633 }
634 
635 static int set_hca_cap(struct mlx5_core_dev *dev)
636 {
637 	int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
638 	void *set_ctx;
639 	int err;
640 
641 	set_ctx = kzalloc(set_sz, GFP_KERNEL);
642 	if (!set_ctx)
643 		return -ENOMEM;
644 
645 	err = handle_hca_cap(dev, set_ctx);
646 	if (err) {
647 		mlx5_core_err(dev, "handle_hca_cap failed\n");
648 		goto out;
649 	}
650 
651 	memset(set_ctx, 0, set_sz);
652 	err = handle_hca_cap_atomic(dev, set_ctx);
653 	if (err) {
654 		mlx5_core_err(dev, "handle_hca_cap_atomic failed\n");
655 		goto out;
656 	}
657 
658 	memset(set_ctx, 0, set_sz);
659 	err = handle_hca_cap_odp(dev, set_ctx);
660 	if (err) {
661 		mlx5_core_err(dev, "handle_hca_cap_odp failed\n");
662 		goto out;
663 	}
664 
665 	memset(set_ctx, 0, set_sz);
666 	err = handle_hca_cap_roce(dev, set_ctx);
667 	if (err) {
668 		mlx5_core_err(dev, "handle_hca_cap_roce failed\n");
669 		goto out;
670 	}
671 
672 out:
673 	kfree(set_ctx);
674 	return err;
675 }
676 
677 static int set_hca_ctrl(struct mlx5_core_dev *dev)
678 {
679 	struct mlx5_reg_host_endianness he_in;
680 	struct mlx5_reg_host_endianness he_out;
681 	int err;
682 
683 	if (!mlx5_core_is_pf(dev))
684 		return 0;
685 
686 	memset(&he_in, 0, sizeof(he_in));
687 	he_in.he = MLX5_SET_HOST_ENDIANNESS;
688 	err = mlx5_core_access_reg(dev, &he_in,  sizeof(he_in),
689 					&he_out, sizeof(he_out),
690 					MLX5_REG_HOST_ENDIANNESS, 0, 1);
691 	return err;
692 }
693 
694 static int mlx5_core_set_hca_defaults(struct mlx5_core_dev *dev)
695 {
696 	int ret = 0;
697 
698 	/* Disable local_lb by default */
699 	if (MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_ETH)
700 		ret = mlx5_nic_vport_update_local_lb(dev, false);
701 
702 	return ret;
703 }
704 
705 int mlx5_core_enable_hca(struct mlx5_core_dev *dev, u16 func_id)
706 {
707 	u32 in[MLX5_ST_SZ_DW(enable_hca_in)] = {};
708 
709 	MLX5_SET(enable_hca_in, in, opcode, MLX5_CMD_OP_ENABLE_HCA);
710 	MLX5_SET(enable_hca_in, in, function_id, func_id);
711 	MLX5_SET(enable_hca_in, in, embedded_cpu_function,
712 		 dev->caps.embedded_cpu);
713 	return mlx5_cmd_exec_in(dev, enable_hca, in);
714 }
715 
716 int mlx5_core_disable_hca(struct mlx5_core_dev *dev, u16 func_id)
717 {
718 	u32 in[MLX5_ST_SZ_DW(disable_hca_in)] = {};
719 
720 	MLX5_SET(disable_hca_in, in, opcode, MLX5_CMD_OP_DISABLE_HCA);
721 	MLX5_SET(disable_hca_in, in, function_id, func_id);
722 	MLX5_SET(enable_hca_in, in, embedded_cpu_function,
723 		 dev->caps.embedded_cpu);
724 	return mlx5_cmd_exec_in(dev, disable_hca, in);
725 }
726 
727 static int mlx5_core_set_issi(struct mlx5_core_dev *dev)
728 {
729 	u32 query_out[MLX5_ST_SZ_DW(query_issi_out)] = {};
730 	u32 query_in[MLX5_ST_SZ_DW(query_issi_in)] = {};
731 	u32 sup_issi;
732 	int err;
733 
734 	MLX5_SET(query_issi_in, query_in, opcode, MLX5_CMD_OP_QUERY_ISSI);
735 	err = mlx5_cmd_exec_inout(dev, query_issi, query_in, query_out);
736 	if (err) {
737 		u32 syndrome = MLX5_GET(query_issi_out, query_out, syndrome);
738 		u8 status = MLX5_GET(query_issi_out, query_out, status);
739 
740 		if (!status || syndrome == MLX5_DRIVER_SYND) {
741 			mlx5_core_err(dev, "Failed to query ISSI err(%d) status(%d) synd(%d)\n",
742 				      err, status, syndrome);
743 			return err;
744 		}
745 
746 		mlx5_core_warn(dev, "Query ISSI is not supported by FW, ISSI is 0\n");
747 		dev->issi = 0;
748 		return 0;
749 	}
750 
751 	sup_issi = MLX5_GET(query_issi_out, query_out, supported_issi_dw0);
752 
753 	if (sup_issi & (1 << 1)) {
754 		u32 set_in[MLX5_ST_SZ_DW(set_issi_in)] = {};
755 
756 		MLX5_SET(set_issi_in, set_in, opcode, MLX5_CMD_OP_SET_ISSI);
757 		MLX5_SET(set_issi_in, set_in, current_issi, 1);
758 		err = mlx5_cmd_exec_in(dev, set_issi, set_in);
759 		if (err) {
760 			mlx5_core_err(dev, "Failed to set ISSI to 1 err(%d)\n",
761 				      err);
762 			return err;
763 		}
764 
765 		dev->issi = 1;
766 
767 		return 0;
768 	} else if (sup_issi & (1 << 0) || !sup_issi) {
769 		return 0;
770 	}
771 
772 	return -EOPNOTSUPP;
773 }
774 
775 static int mlx5_pci_init(struct mlx5_core_dev *dev, struct pci_dev *pdev,
776 			 const struct pci_device_id *id)
777 {
778 	int err = 0;
779 
780 	mutex_init(&dev->pci_status_mutex);
781 	pci_set_drvdata(dev->pdev, dev);
782 
783 	dev->bar_addr = pci_resource_start(pdev, 0);
784 
785 	err = mlx5_pci_enable_device(dev);
786 	if (err) {
787 		mlx5_core_err(dev, "Cannot enable PCI device, aborting\n");
788 		return err;
789 	}
790 
791 	err = request_bar(pdev);
792 	if (err) {
793 		mlx5_core_err(dev, "error requesting BARs, aborting\n");
794 		goto err_disable;
795 	}
796 
797 	pci_set_master(pdev);
798 
799 	err = set_dma_caps(pdev);
800 	if (err) {
801 		mlx5_core_err(dev, "Failed setting DMA capabilities mask, aborting\n");
802 		goto err_clr_master;
803 	}
804 
805 	if (pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP32) &&
806 	    pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP64) &&
807 	    pci_enable_atomic_ops_to_root(pdev, PCI_EXP_DEVCAP2_ATOMIC_COMP128))
808 		mlx5_core_dbg(dev, "Enabling pci atomics failed\n");
809 
810 	dev->iseg_base = dev->bar_addr;
811 	dev->iseg = ioremap(dev->iseg_base, sizeof(*dev->iseg));
812 	if (!dev->iseg) {
813 		err = -ENOMEM;
814 		mlx5_core_err(dev, "Failed mapping initialization segment, aborting\n");
815 		goto err_clr_master;
816 	}
817 
818 	mlx5_pci_vsc_init(dev);
819 	dev->caps.embedded_cpu = mlx5_read_embedded_cpu(dev);
820 	return 0;
821 
822 err_clr_master:
823 	pci_clear_master(dev->pdev);
824 	release_bar(dev->pdev);
825 err_disable:
826 	mlx5_pci_disable_device(dev);
827 	return err;
828 }
829 
830 static void mlx5_pci_close(struct mlx5_core_dev *dev)
831 {
832 	/* health work might still be active, and it needs pci bar in
833 	 * order to know the NIC state. Therefore, drain the health WQ
834 	 * before removing the pci bars
835 	 */
836 	mlx5_drain_health_wq(dev);
837 	iounmap(dev->iseg);
838 	pci_clear_master(dev->pdev);
839 	release_bar(dev->pdev);
840 	mlx5_pci_disable_device(dev);
841 }
842 
843 static int mlx5_init_once(struct mlx5_core_dev *dev)
844 {
845 	int err;
846 
847 	dev->priv.devcom = mlx5_devcom_register_device(dev);
848 	if (IS_ERR(dev->priv.devcom))
849 		mlx5_core_err(dev, "failed to register with devcom (0x%p)\n",
850 			      dev->priv.devcom);
851 
852 	err = mlx5_query_board_id(dev);
853 	if (err) {
854 		mlx5_core_err(dev, "query board id failed\n");
855 		goto err_devcom;
856 	}
857 
858 	err = mlx5_irq_table_init(dev);
859 	if (err) {
860 		mlx5_core_err(dev, "failed to initialize irq table\n");
861 		goto err_devcom;
862 	}
863 
864 	err = mlx5_eq_table_init(dev);
865 	if (err) {
866 		mlx5_core_err(dev, "failed to initialize eq\n");
867 		goto err_irq_cleanup;
868 	}
869 
870 	err = mlx5_events_init(dev);
871 	if (err) {
872 		mlx5_core_err(dev, "failed to initialize events\n");
873 		goto err_eq_cleanup;
874 	}
875 
876 	err = mlx5_fw_reset_init(dev);
877 	if (err) {
878 		mlx5_core_err(dev, "failed to initialize fw reset events\n");
879 		goto err_events_cleanup;
880 	}
881 
882 	mlx5_cq_debugfs_init(dev);
883 
884 	mlx5_init_reserved_gids(dev);
885 
886 	mlx5_init_clock(dev);
887 
888 	dev->vxlan = mlx5_vxlan_create(dev);
889 	dev->geneve = mlx5_geneve_create(dev);
890 
891 	err = mlx5_init_rl_table(dev);
892 	if (err) {
893 		mlx5_core_err(dev, "Failed to init rate limiting\n");
894 		goto err_tables_cleanup;
895 	}
896 
897 	err = mlx5_mpfs_init(dev);
898 	if (err) {
899 		mlx5_core_err(dev, "Failed to init l2 table %d\n", err);
900 		goto err_rl_cleanup;
901 	}
902 
903 	err = mlx5_sriov_init(dev);
904 	if (err) {
905 		mlx5_core_err(dev, "Failed to init sriov %d\n", err);
906 		goto err_mpfs_cleanup;
907 	}
908 
909 	err = mlx5_eswitch_init(dev);
910 	if (err) {
911 		mlx5_core_err(dev, "Failed to init eswitch %d\n", err);
912 		goto err_sriov_cleanup;
913 	}
914 
915 	err = mlx5_fpga_init(dev);
916 	if (err) {
917 		mlx5_core_err(dev, "Failed to init fpga device %d\n", err);
918 		goto err_eswitch_cleanup;
919 	}
920 
921 	err = mlx5_vhca_event_init(dev);
922 	if (err) {
923 		mlx5_core_err(dev, "Failed to init vhca event notifier %d\n", err);
924 		goto err_fpga_cleanup;
925 	}
926 
927 	err = mlx5_sf_hw_table_init(dev);
928 	if (err) {
929 		mlx5_core_err(dev, "Failed to init SF HW table %d\n", err);
930 		goto err_sf_hw_table_cleanup;
931 	}
932 
933 	err = mlx5_sf_table_init(dev);
934 	if (err) {
935 		mlx5_core_err(dev, "Failed to init SF table %d\n", err);
936 		goto err_sf_table_cleanup;
937 	}
938 
939 	dev->dm = mlx5_dm_create(dev);
940 	if (IS_ERR(dev->dm))
941 		mlx5_core_warn(dev, "Failed to init device memory%d\n", err);
942 
943 	dev->tracer = mlx5_fw_tracer_create(dev);
944 	dev->hv_vhca = mlx5_hv_vhca_create(dev);
945 	dev->rsc_dump = mlx5_rsc_dump_create(dev);
946 
947 	return 0;
948 
949 err_sf_table_cleanup:
950 	mlx5_sf_hw_table_cleanup(dev);
951 err_sf_hw_table_cleanup:
952 	mlx5_vhca_event_cleanup(dev);
953 err_fpga_cleanup:
954 	mlx5_fpga_cleanup(dev);
955 err_eswitch_cleanup:
956 	mlx5_eswitch_cleanup(dev->priv.eswitch);
957 err_sriov_cleanup:
958 	mlx5_sriov_cleanup(dev);
959 err_mpfs_cleanup:
960 	mlx5_mpfs_cleanup(dev);
961 err_rl_cleanup:
962 	mlx5_cleanup_rl_table(dev);
963 err_tables_cleanup:
964 	mlx5_geneve_destroy(dev->geneve);
965 	mlx5_vxlan_destroy(dev->vxlan);
966 	mlx5_cq_debugfs_cleanup(dev);
967 	mlx5_fw_reset_cleanup(dev);
968 err_events_cleanup:
969 	mlx5_events_cleanup(dev);
970 err_eq_cleanup:
971 	mlx5_eq_table_cleanup(dev);
972 err_irq_cleanup:
973 	mlx5_irq_table_cleanup(dev);
974 err_devcom:
975 	mlx5_devcom_unregister_device(dev->priv.devcom);
976 
977 	return err;
978 }
979 
980 static void mlx5_cleanup_once(struct mlx5_core_dev *dev)
981 {
982 	mlx5_rsc_dump_destroy(dev);
983 	mlx5_hv_vhca_destroy(dev->hv_vhca);
984 	mlx5_fw_tracer_destroy(dev->tracer);
985 	mlx5_dm_cleanup(dev);
986 	mlx5_sf_table_cleanup(dev);
987 	mlx5_sf_hw_table_cleanup(dev);
988 	mlx5_vhca_event_cleanup(dev);
989 	mlx5_fpga_cleanup(dev);
990 	mlx5_eswitch_cleanup(dev->priv.eswitch);
991 	mlx5_sriov_cleanup(dev);
992 	mlx5_mpfs_cleanup(dev);
993 	mlx5_cleanup_rl_table(dev);
994 	mlx5_geneve_destroy(dev->geneve);
995 	mlx5_vxlan_destroy(dev->vxlan);
996 	mlx5_cleanup_clock(dev);
997 	mlx5_cleanup_reserved_gids(dev);
998 	mlx5_cq_debugfs_cleanup(dev);
999 	mlx5_fw_reset_cleanup(dev);
1000 	mlx5_events_cleanup(dev);
1001 	mlx5_eq_table_cleanup(dev);
1002 	mlx5_irq_table_cleanup(dev);
1003 	mlx5_devcom_unregister_device(dev->priv.devcom);
1004 }
1005 
1006 static int mlx5_function_setup(struct mlx5_core_dev *dev, bool boot)
1007 {
1008 	int err;
1009 
1010 	mlx5_core_info(dev, "firmware version: %d.%d.%d\n", fw_rev_maj(dev),
1011 		       fw_rev_min(dev), fw_rev_sub(dev));
1012 
1013 	/* Only PFs hold the relevant PCIe information for this query */
1014 	if (mlx5_core_is_pf(dev))
1015 		pcie_print_link_status(dev->pdev);
1016 
1017 	mlx5_tout_set_def_val(dev);
1018 
1019 	/* wait for firmware to accept initialization segments configurations
1020 	 */
1021 	err = wait_fw_init(dev, mlx5_tout_ms(dev, FW_PRE_INIT_TIMEOUT),
1022 			   mlx5_tout_ms(dev, FW_PRE_INIT_WARN_MESSAGE_INTERVAL));
1023 	if (err) {
1024 		mlx5_core_err(dev, "Firmware over %llu MS in pre-initializing state, aborting\n",
1025 			      mlx5_tout_ms(dev, FW_PRE_INIT_TIMEOUT));
1026 		return err;
1027 	}
1028 
1029 	err = mlx5_cmd_init(dev);
1030 	if (err) {
1031 		mlx5_core_err(dev, "Failed initializing command interface, aborting\n");
1032 		return err;
1033 	}
1034 
1035 	mlx5_tout_query_iseg(dev);
1036 
1037 	err = wait_fw_init(dev, mlx5_tout_ms(dev, FW_INIT), 0);
1038 	if (err) {
1039 		mlx5_core_err(dev, "Firmware over %llu MS in initializing state, aborting\n",
1040 			      mlx5_tout_ms(dev, FW_INIT));
1041 		goto err_cmd_cleanup;
1042 	}
1043 
1044 	mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_UP);
1045 
1046 	err = mlx5_core_enable_hca(dev, 0);
1047 	if (err) {
1048 		mlx5_core_err(dev, "enable hca failed\n");
1049 		goto err_cmd_cleanup;
1050 	}
1051 
1052 	err = mlx5_core_set_issi(dev);
1053 	if (err) {
1054 		mlx5_core_err(dev, "failed to set issi\n");
1055 		goto err_disable_hca;
1056 	}
1057 
1058 	err = mlx5_satisfy_startup_pages(dev, 1);
1059 	if (err) {
1060 		mlx5_core_err(dev, "failed to allocate boot pages\n");
1061 		goto err_disable_hca;
1062 	}
1063 
1064 	err = mlx5_tout_query_dtor(dev);
1065 	if (err) {
1066 		mlx5_core_err(dev, "failed to read dtor\n");
1067 		goto reclaim_boot_pages;
1068 	}
1069 
1070 	err = set_hca_ctrl(dev);
1071 	if (err) {
1072 		mlx5_core_err(dev, "set_hca_ctrl failed\n");
1073 		goto reclaim_boot_pages;
1074 	}
1075 
1076 	err = set_hca_cap(dev);
1077 	if (err) {
1078 		mlx5_core_err(dev, "set_hca_cap failed\n");
1079 		goto reclaim_boot_pages;
1080 	}
1081 
1082 	err = mlx5_satisfy_startup_pages(dev, 0);
1083 	if (err) {
1084 		mlx5_core_err(dev, "failed to allocate init pages\n");
1085 		goto reclaim_boot_pages;
1086 	}
1087 
1088 	err = mlx5_cmd_init_hca(dev, sw_owner_id);
1089 	if (err) {
1090 		mlx5_core_err(dev, "init hca failed\n");
1091 		goto reclaim_boot_pages;
1092 	}
1093 
1094 	mlx5_set_driver_version(dev);
1095 
1096 	err = mlx5_query_hca_caps(dev);
1097 	if (err) {
1098 		mlx5_core_err(dev, "query hca failed\n");
1099 		goto reclaim_boot_pages;
1100 	}
1101 
1102 	mlx5_start_health_poll(dev);
1103 
1104 	return 0;
1105 
1106 reclaim_boot_pages:
1107 	mlx5_reclaim_startup_pages(dev);
1108 err_disable_hca:
1109 	mlx5_core_disable_hca(dev, 0);
1110 err_cmd_cleanup:
1111 	mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_DOWN);
1112 	mlx5_cmd_cleanup(dev);
1113 
1114 	return err;
1115 }
1116 
1117 static int mlx5_function_teardown(struct mlx5_core_dev *dev, bool boot)
1118 {
1119 	int err;
1120 
1121 	mlx5_stop_health_poll(dev, boot);
1122 	err = mlx5_cmd_teardown_hca(dev);
1123 	if (err) {
1124 		mlx5_core_err(dev, "tear_down_hca failed, skip cleanup\n");
1125 		return err;
1126 	}
1127 	mlx5_reclaim_startup_pages(dev);
1128 	mlx5_core_disable_hca(dev, 0);
1129 	mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_DOWN);
1130 	mlx5_cmd_cleanup(dev);
1131 
1132 	return 0;
1133 }
1134 
1135 static int mlx5_load(struct mlx5_core_dev *dev)
1136 {
1137 	int err;
1138 
1139 	dev->priv.uar = mlx5_get_uars_page(dev);
1140 	if (IS_ERR(dev->priv.uar)) {
1141 		mlx5_core_err(dev, "Failed allocating uar, aborting\n");
1142 		err = PTR_ERR(dev->priv.uar);
1143 		return err;
1144 	}
1145 
1146 	mlx5_events_start(dev);
1147 	mlx5_pagealloc_start(dev);
1148 
1149 	err = mlx5_irq_table_create(dev);
1150 	if (err) {
1151 		mlx5_core_err(dev, "Failed to alloc IRQs\n");
1152 		goto err_irq_table;
1153 	}
1154 
1155 	err = mlx5_eq_table_create(dev);
1156 	if (err) {
1157 		mlx5_core_err(dev, "Failed to create EQs\n");
1158 		goto err_eq_table;
1159 	}
1160 
1161 	err = mlx5_fw_tracer_init(dev->tracer);
1162 	if (err) {
1163 		mlx5_core_err(dev, "Failed to init FW tracer %d\n", err);
1164 		mlx5_fw_tracer_destroy(dev->tracer);
1165 		dev->tracer = NULL;
1166 	}
1167 
1168 	mlx5_fw_reset_events_start(dev);
1169 	mlx5_hv_vhca_init(dev->hv_vhca);
1170 
1171 	err = mlx5_rsc_dump_init(dev);
1172 	if (err) {
1173 		mlx5_core_err(dev, "Failed to init Resource dump %d\n", err);
1174 		mlx5_rsc_dump_destroy(dev);
1175 		dev->rsc_dump = NULL;
1176 	}
1177 
1178 	err = mlx5_fpga_device_start(dev);
1179 	if (err) {
1180 		mlx5_core_err(dev, "fpga device start failed %d\n", err);
1181 		goto err_fpga_start;
1182 	}
1183 
1184 	mlx5_accel_ipsec_init(dev);
1185 
1186 	err = mlx5_init_fs(dev);
1187 	if (err) {
1188 		mlx5_core_err(dev, "Failed to init flow steering\n");
1189 		goto err_fs;
1190 	}
1191 
1192 	err = mlx5_core_set_hca_defaults(dev);
1193 	if (err) {
1194 		mlx5_core_err(dev, "Failed to set hca defaults\n");
1195 		goto err_set_hca;
1196 	}
1197 
1198 	mlx5_vhca_event_start(dev);
1199 
1200 	err = mlx5_sf_hw_table_create(dev);
1201 	if (err) {
1202 		mlx5_core_err(dev, "sf table create failed %d\n", err);
1203 		goto err_vhca;
1204 	}
1205 
1206 	err = mlx5_ec_init(dev);
1207 	if (err) {
1208 		mlx5_core_err(dev, "Failed to init embedded CPU\n");
1209 		goto err_ec;
1210 	}
1211 
1212 	mlx5_lag_add_mdev(dev);
1213 	err = mlx5_sriov_attach(dev);
1214 	if (err) {
1215 		mlx5_core_err(dev, "sriov init failed %d\n", err);
1216 		goto err_sriov;
1217 	}
1218 
1219 	mlx5_sf_dev_table_create(dev);
1220 
1221 	return 0;
1222 
1223 err_sriov:
1224 	mlx5_lag_remove_mdev(dev);
1225 	mlx5_ec_cleanup(dev);
1226 err_ec:
1227 	mlx5_sf_hw_table_destroy(dev);
1228 err_vhca:
1229 	mlx5_vhca_event_stop(dev);
1230 err_set_hca:
1231 	mlx5_cleanup_fs(dev);
1232 err_fs:
1233 	mlx5_accel_ipsec_cleanup(dev);
1234 	mlx5_fpga_device_stop(dev);
1235 err_fpga_start:
1236 	mlx5_rsc_dump_cleanup(dev);
1237 	mlx5_hv_vhca_cleanup(dev->hv_vhca);
1238 	mlx5_fw_reset_events_stop(dev);
1239 	mlx5_fw_tracer_cleanup(dev->tracer);
1240 	mlx5_eq_table_destroy(dev);
1241 err_eq_table:
1242 	mlx5_irq_table_destroy(dev);
1243 err_irq_table:
1244 	mlx5_pagealloc_stop(dev);
1245 	mlx5_events_stop(dev);
1246 	mlx5_put_uars_page(dev, dev->priv.uar);
1247 	return err;
1248 }
1249 
1250 static void mlx5_unload(struct mlx5_core_dev *dev)
1251 {
1252 	mlx5_sf_dev_table_destroy(dev);
1253 	mlx5_sriov_detach(dev);
1254 	mlx5_lag_remove_mdev(dev);
1255 	mlx5_ec_cleanup(dev);
1256 	mlx5_sf_hw_table_destroy(dev);
1257 	mlx5_vhca_event_stop(dev);
1258 	mlx5_cleanup_fs(dev);
1259 	mlx5_accel_ipsec_cleanup(dev);
1260 	mlx5_fpga_device_stop(dev);
1261 	mlx5_rsc_dump_cleanup(dev);
1262 	mlx5_hv_vhca_cleanup(dev->hv_vhca);
1263 	mlx5_fw_reset_events_stop(dev);
1264 	mlx5_fw_tracer_cleanup(dev->tracer);
1265 	mlx5_eq_table_destroy(dev);
1266 	mlx5_irq_table_destroy(dev);
1267 	mlx5_pagealloc_stop(dev);
1268 	mlx5_events_stop(dev);
1269 	mlx5_put_uars_page(dev, dev->priv.uar);
1270 }
1271 
1272 int mlx5_init_one(struct mlx5_core_dev *dev)
1273 {
1274 	int err = 0;
1275 
1276 	mutex_lock(&dev->intf_state_mutex);
1277 	dev->state = MLX5_DEVICE_STATE_UP;
1278 
1279 	err = mlx5_function_setup(dev, true);
1280 	if (err)
1281 		goto err_function;
1282 
1283 	err = mlx5_init_once(dev);
1284 	if (err) {
1285 		mlx5_core_err(dev, "sw objs init failed\n");
1286 		goto function_teardown;
1287 	}
1288 
1289 	err = mlx5_load(dev);
1290 	if (err)
1291 		goto err_load;
1292 
1293 	set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1294 
1295 	err = mlx5_devlink_register(priv_to_devlink(dev));
1296 	if (err)
1297 		goto err_devlink_reg;
1298 
1299 	err = mlx5_register_device(dev);
1300 	if (err)
1301 		goto err_register;
1302 
1303 	mutex_unlock(&dev->intf_state_mutex);
1304 	return 0;
1305 
1306 err_register:
1307 	mlx5_devlink_unregister(priv_to_devlink(dev));
1308 err_devlink_reg:
1309 	clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1310 	mlx5_unload(dev);
1311 err_load:
1312 	mlx5_cleanup_once(dev);
1313 function_teardown:
1314 	mlx5_function_teardown(dev, true);
1315 err_function:
1316 	dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
1317 	mutex_unlock(&dev->intf_state_mutex);
1318 	return err;
1319 }
1320 
1321 void mlx5_uninit_one(struct mlx5_core_dev *dev)
1322 {
1323 	mutex_lock(&dev->intf_state_mutex);
1324 
1325 	mlx5_unregister_device(dev);
1326 	mlx5_devlink_unregister(priv_to_devlink(dev));
1327 
1328 	if (!test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
1329 		mlx5_core_warn(dev, "%s: interface is down, NOP\n",
1330 			       __func__);
1331 		mlx5_cleanup_once(dev);
1332 		goto out;
1333 	}
1334 
1335 	clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1336 	mlx5_unload(dev);
1337 	mlx5_cleanup_once(dev);
1338 	mlx5_function_teardown(dev, true);
1339 out:
1340 	mutex_unlock(&dev->intf_state_mutex);
1341 }
1342 
1343 int mlx5_load_one(struct mlx5_core_dev *dev)
1344 {
1345 	int err = 0;
1346 
1347 	mutex_lock(&dev->intf_state_mutex);
1348 	if (test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
1349 		mlx5_core_warn(dev, "interface is up, NOP\n");
1350 		goto out;
1351 	}
1352 	/* remove any previous indication of internal error */
1353 	dev->state = MLX5_DEVICE_STATE_UP;
1354 
1355 	err = mlx5_function_setup(dev, false);
1356 	if (err)
1357 		goto err_function;
1358 
1359 	err = mlx5_load(dev);
1360 	if (err)
1361 		goto err_load;
1362 
1363 	set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1364 
1365 	err = mlx5_attach_device(dev);
1366 	if (err)
1367 		goto err_attach;
1368 
1369 	mutex_unlock(&dev->intf_state_mutex);
1370 	return 0;
1371 
1372 err_attach:
1373 	clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1374 	mlx5_unload(dev);
1375 err_load:
1376 	mlx5_function_teardown(dev, false);
1377 err_function:
1378 	dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
1379 out:
1380 	mutex_unlock(&dev->intf_state_mutex);
1381 	return err;
1382 }
1383 
1384 void mlx5_unload_one(struct mlx5_core_dev *dev)
1385 {
1386 	mutex_lock(&dev->intf_state_mutex);
1387 
1388 	mlx5_detach_device(dev);
1389 
1390 	if (!test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
1391 		mlx5_core_warn(dev, "%s: interface is down, NOP\n",
1392 			       __func__);
1393 		goto out;
1394 	}
1395 
1396 	clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1397 	mlx5_unload(dev);
1398 	mlx5_function_teardown(dev, false);
1399 out:
1400 	mutex_unlock(&dev->intf_state_mutex);
1401 }
1402 
1403 static const int types[] = {
1404 	MLX5_CAP_GENERAL,
1405 	MLX5_CAP_GENERAL_2,
1406 	MLX5_CAP_ETHERNET_OFFLOADS,
1407 	MLX5_CAP_IPOIB_ENHANCED_OFFLOADS,
1408 	MLX5_CAP_ODP,
1409 	MLX5_CAP_ATOMIC,
1410 	MLX5_CAP_ROCE,
1411 	MLX5_CAP_IPOIB_OFFLOADS,
1412 	MLX5_CAP_FLOW_TABLE,
1413 	MLX5_CAP_ESWITCH_FLOW_TABLE,
1414 	MLX5_CAP_ESWITCH,
1415 	MLX5_CAP_VECTOR_CALC,
1416 	MLX5_CAP_QOS,
1417 	MLX5_CAP_DEBUG,
1418 	MLX5_CAP_DEV_MEM,
1419 	MLX5_CAP_DEV_EVENT,
1420 	MLX5_CAP_TLS,
1421 	MLX5_CAP_VDPA_EMULATION,
1422 	MLX5_CAP_IPSEC,
1423 	MLX5_CAP_PORT_SELECTION,
1424 	MLX5_CAP_DEV_SHAMPO,
1425 };
1426 
1427 static void mlx5_hca_caps_free(struct mlx5_core_dev *dev)
1428 {
1429 	int type;
1430 	int i;
1431 
1432 	for (i = 0; i < ARRAY_SIZE(types); i++) {
1433 		type = types[i];
1434 		kfree(dev->caps.hca[type]);
1435 	}
1436 }
1437 
1438 static int mlx5_hca_caps_alloc(struct mlx5_core_dev *dev)
1439 {
1440 	struct mlx5_hca_cap *cap;
1441 	int type;
1442 	int i;
1443 
1444 	for (i = 0; i < ARRAY_SIZE(types); i++) {
1445 		cap = kzalloc(sizeof(*cap), GFP_KERNEL);
1446 		if (!cap)
1447 			goto err;
1448 		type = types[i];
1449 		dev->caps.hca[type] = cap;
1450 	}
1451 
1452 	return 0;
1453 
1454 err:
1455 	mlx5_hca_caps_free(dev);
1456 	return -ENOMEM;
1457 }
1458 
1459 int mlx5_mdev_init(struct mlx5_core_dev *dev, int profile_idx)
1460 {
1461 	struct mlx5_priv *priv = &dev->priv;
1462 	int err;
1463 
1464 	memcpy(&dev->profile, &profile[profile_idx], sizeof(dev->profile));
1465 	INIT_LIST_HEAD(&priv->ctx_list);
1466 	spin_lock_init(&priv->ctx_lock);
1467 	mutex_init(&dev->intf_state_mutex);
1468 
1469 	mutex_init(&priv->bfregs.reg_head.lock);
1470 	mutex_init(&priv->bfregs.wc_head.lock);
1471 	INIT_LIST_HEAD(&priv->bfregs.reg_head.list);
1472 	INIT_LIST_HEAD(&priv->bfregs.wc_head.list);
1473 
1474 	mutex_init(&priv->alloc_mutex);
1475 	mutex_init(&priv->pgdir_mutex);
1476 	INIT_LIST_HEAD(&priv->pgdir_list);
1477 
1478 	priv->numa_node = dev_to_node(mlx5_core_dma_dev(dev));
1479 	priv->dbg.dbg_root = debugfs_create_dir(dev_name(dev->device),
1480 						mlx5_debugfs_root);
1481 	INIT_LIST_HEAD(&priv->traps);
1482 
1483 	err = mlx5_tout_init(dev);
1484 	if (err) {
1485 		mlx5_core_err(dev, "Failed initializing timeouts, aborting\n");
1486 		goto err_timeout_init;
1487 	}
1488 
1489 	err = mlx5_health_init(dev);
1490 	if (err)
1491 		goto err_health_init;
1492 
1493 	err = mlx5_pagealloc_init(dev);
1494 	if (err)
1495 		goto err_pagealloc_init;
1496 
1497 	err = mlx5_adev_init(dev);
1498 	if (err)
1499 		goto err_adev_init;
1500 
1501 	err = mlx5_hca_caps_alloc(dev);
1502 	if (err)
1503 		goto err_hca_caps;
1504 
1505 	return 0;
1506 
1507 err_hca_caps:
1508 	mlx5_adev_cleanup(dev);
1509 err_adev_init:
1510 	mlx5_pagealloc_cleanup(dev);
1511 err_pagealloc_init:
1512 	mlx5_health_cleanup(dev);
1513 err_health_init:
1514 	mlx5_tout_cleanup(dev);
1515 err_timeout_init:
1516 	debugfs_remove(dev->priv.dbg.dbg_root);
1517 	mutex_destroy(&priv->pgdir_mutex);
1518 	mutex_destroy(&priv->alloc_mutex);
1519 	mutex_destroy(&priv->bfregs.wc_head.lock);
1520 	mutex_destroy(&priv->bfregs.reg_head.lock);
1521 	mutex_destroy(&dev->intf_state_mutex);
1522 	return err;
1523 }
1524 
1525 void mlx5_mdev_uninit(struct mlx5_core_dev *dev)
1526 {
1527 	struct mlx5_priv *priv = &dev->priv;
1528 
1529 	mlx5_hca_caps_free(dev);
1530 	mlx5_adev_cleanup(dev);
1531 	mlx5_pagealloc_cleanup(dev);
1532 	mlx5_health_cleanup(dev);
1533 	mlx5_tout_cleanup(dev);
1534 	debugfs_remove_recursive(dev->priv.dbg.dbg_root);
1535 	mutex_destroy(&priv->pgdir_mutex);
1536 	mutex_destroy(&priv->alloc_mutex);
1537 	mutex_destroy(&priv->bfregs.wc_head.lock);
1538 	mutex_destroy(&priv->bfregs.reg_head.lock);
1539 	mutex_destroy(&dev->intf_state_mutex);
1540 }
1541 
1542 static int probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
1543 {
1544 	struct mlx5_core_dev *dev;
1545 	struct devlink *devlink;
1546 	int err;
1547 
1548 	devlink = mlx5_devlink_alloc(&pdev->dev);
1549 	if (!devlink) {
1550 		dev_err(&pdev->dev, "devlink alloc failed\n");
1551 		return -ENOMEM;
1552 	}
1553 
1554 	dev = devlink_priv(devlink);
1555 	dev->device = &pdev->dev;
1556 	dev->pdev = pdev;
1557 
1558 	dev->coredev_type = id->driver_data & MLX5_PCI_DEV_IS_VF ?
1559 			 MLX5_COREDEV_VF : MLX5_COREDEV_PF;
1560 
1561 	dev->priv.adev_idx = mlx5_adev_idx_alloc();
1562 	if (dev->priv.adev_idx < 0) {
1563 		err = dev->priv.adev_idx;
1564 		goto adev_init_err;
1565 	}
1566 
1567 	err = mlx5_mdev_init(dev, prof_sel);
1568 	if (err)
1569 		goto mdev_init_err;
1570 
1571 	err = mlx5_pci_init(dev, pdev, id);
1572 	if (err) {
1573 		mlx5_core_err(dev, "mlx5_pci_init failed with error code %d\n",
1574 			      err);
1575 		goto pci_init_err;
1576 	}
1577 
1578 	err = mlx5_init_one(dev);
1579 	if (err) {
1580 		mlx5_core_err(dev, "mlx5_init_one failed with error code %d\n",
1581 			      err);
1582 		goto err_init_one;
1583 	}
1584 
1585 	err = mlx5_crdump_enable(dev);
1586 	if (err)
1587 		dev_err(&pdev->dev, "mlx5_crdump_enable failed with error code %d\n", err);
1588 
1589 	pci_save_state(pdev);
1590 	devlink_register(devlink);
1591 	return 0;
1592 
1593 err_init_one:
1594 	mlx5_pci_close(dev);
1595 pci_init_err:
1596 	mlx5_mdev_uninit(dev);
1597 mdev_init_err:
1598 	mlx5_adev_idx_free(dev->priv.adev_idx);
1599 adev_init_err:
1600 	mlx5_devlink_free(devlink);
1601 
1602 	return err;
1603 }
1604 
1605 static void remove_one(struct pci_dev *pdev)
1606 {
1607 	struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1608 	struct devlink *devlink = priv_to_devlink(dev);
1609 
1610 	devlink_unregister(devlink);
1611 	mlx5_sriov_disable(pdev);
1612 	mlx5_crdump_disable(dev);
1613 	mlx5_drain_health_wq(dev);
1614 	mlx5_uninit_one(dev);
1615 	mlx5_pci_close(dev);
1616 	mlx5_mdev_uninit(dev);
1617 	mlx5_adev_idx_free(dev->priv.adev_idx);
1618 	mlx5_devlink_free(devlink);
1619 }
1620 
1621 #define mlx5_pci_trace(dev, fmt, ...) ({ \
1622 	struct mlx5_core_dev *__dev = (dev); \
1623 	mlx5_core_info(__dev, "%s Device state = %d health sensors: %d pci_status: %d. " fmt, \
1624 		       __func__, __dev->state, mlx5_health_check_fatal_sensors(__dev), \
1625 		       __dev->pci_status, ##__VA_ARGS__); \
1626 })
1627 
1628 static const char *result2str(enum pci_ers_result result)
1629 {
1630 	return  result == PCI_ERS_RESULT_NEED_RESET ? "need reset" :
1631 		result == PCI_ERS_RESULT_DISCONNECT ? "disconnect" :
1632 		result == PCI_ERS_RESULT_RECOVERED  ? "recovered" :
1633 		"unknown";
1634 }
1635 
1636 static pci_ers_result_t mlx5_pci_err_detected(struct pci_dev *pdev,
1637 					      pci_channel_state_t state)
1638 {
1639 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1640 	enum pci_ers_result res;
1641 
1642 	mlx5_pci_trace(dev, "Enter, pci channel state = %d\n", state);
1643 
1644 	mlx5_enter_error_state(dev, false);
1645 	mlx5_error_sw_reset(dev);
1646 	mlx5_unload_one(dev);
1647 	mlx5_drain_health_wq(dev);
1648 	mlx5_pci_disable_device(dev);
1649 
1650 	res = state == pci_channel_io_perm_failure ?
1651 		PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
1652 
1653 	mlx5_pci_trace(dev, "Exit, result = %d, %s\n",  res, result2str(res));
1654 	return res;
1655 }
1656 
1657 /* wait for the device to show vital signs by waiting
1658  * for the health counter to start counting.
1659  */
1660 static int wait_vital(struct pci_dev *pdev)
1661 {
1662 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1663 	struct mlx5_core_health *health = &dev->priv.health;
1664 	const int niter = 100;
1665 	u32 last_count = 0;
1666 	u32 count;
1667 	int i;
1668 
1669 	for (i = 0; i < niter; i++) {
1670 		count = ioread32be(health->health_counter);
1671 		if (count && count != 0xffffffff) {
1672 			if (last_count && last_count != count) {
1673 				mlx5_core_info(dev,
1674 					       "wait vital counter value 0x%x after %d iterations\n",
1675 					       count, i);
1676 				return 0;
1677 			}
1678 			last_count = count;
1679 		}
1680 		msleep(50);
1681 	}
1682 
1683 	return -ETIMEDOUT;
1684 }
1685 
1686 static pci_ers_result_t mlx5_pci_slot_reset(struct pci_dev *pdev)
1687 {
1688 	enum pci_ers_result res = PCI_ERS_RESULT_DISCONNECT;
1689 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1690 	int err;
1691 
1692 	mlx5_pci_trace(dev, "Enter\n");
1693 
1694 	err = mlx5_pci_enable_device(dev);
1695 	if (err) {
1696 		mlx5_core_err(dev, "%s: mlx5_pci_enable_device failed with error code: %d\n",
1697 			      __func__, err);
1698 		goto out;
1699 	}
1700 
1701 	pci_set_master(pdev);
1702 	pci_restore_state(pdev);
1703 	pci_save_state(pdev);
1704 
1705 	err = wait_vital(pdev);
1706 	if (err) {
1707 		mlx5_core_err(dev, "%s: wait vital failed with error code: %d\n",
1708 			      __func__, err);
1709 		goto out;
1710 	}
1711 
1712 	res = PCI_ERS_RESULT_RECOVERED;
1713 out:
1714 	mlx5_pci_trace(dev, "Exit, err = %d, result = %d, %s\n", err, res, result2str(res));
1715 	return res;
1716 }
1717 
1718 static void mlx5_pci_resume(struct pci_dev *pdev)
1719 {
1720 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1721 	int err;
1722 
1723 	mlx5_pci_trace(dev, "Enter, loading driver..\n");
1724 
1725 	err = mlx5_load_one(dev);
1726 
1727 	mlx5_pci_trace(dev, "Done, err = %d, device %s\n", err,
1728 		       !err ? "recovered" : "Failed");
1729 }
1730 
1731 static const struct pci_error_handlers mlx5_err_handler = {
1732 	.error_detected = mlx5_pci_err_detected,
1733 	.slot_reset	= mlx5_pci_slot_reset,
1734 	.resume		= mlx5_pci_resume
1735 };
1736 
1737 static int mlx5_try_fast_unload(struct mlx5_core_dev *dev)
1738 {
1739 	bool fast_teardown = false, force_teardown = false;
1740 	int ret = 1;
1741 
1742 	fast_teardown = MLX5_CAP_GEN(dev, fast_teardown);
1743 	force_teardown = MLX5_CAP_GEN(dev, force_teardown);
1744 
1745 	mlx5_core_dbg(dev, "force teardown firmware support=%d\n", force_teardown);
1746 	mlx5_core_dbg(dev, "fast teardown firmware support=%d\n", fast_teardown);
1747 
1748 	if (!fast_teardown && !force_teardown)
1749 		return -EOPNOTSUPP;
1750 
1751 	if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
1752 		mlx5_core_dbg(dev, "Device in internal error state, giving up\n");
1753 		return -EAGAIN;
1754 	}
1755 
1756 	/* Panic tear down fw command will stop the PCI bus communication
1757 	 * with the HCA, so the health polll is no longer needed.
1758 	 */
1759 	mlx5_drain_health_wq(dev);
1760 	mlx5_stop_health_poll(dev, false);
1761 
1762 	ret = mlx5_cmd_fast_teardown_hca(dev);
1763 	if (!ret)
1764 		goto succeed;
1765 
1766 	ret = mlx5_cmd_force_teardown_hca(dev);
1767 	if (!ret)
1768 		goto succeed;
1769 
1770 	mlx5_core_dbg(dev, "Firmware couldn't do fast unload error: %d\n", ret);
1771 	mlx5_start_health_poll(dev);
1772 	return ret;
1773 
1774 succeed:
1775 	mlx5_enter_error_state(dev, true);
1776 
1777 	/* Some platforms requiring freeing the IRQ's in the shutdown
1778 	 * flow. If they aren't freed they can't be allocated after
1779 	 * kexec. There is no need to cleanup the mlx5_core software
1780 	 * contexts.
1781 	 */
1782 	mlx5_core_eq_free_irqs(dev);
1783 
1784 	return 0;
1785 }
1786 
1787 static void shutdown(struct pci_dev *pdev)
1788 {
1789 	struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
1790 	int err;
1791 
1792 	mlx5_core_info(dev, "Shutdown was called\n");
1793 	err = mlx5_try_fast_unload(dev);
1794 	if (err)
1795 		mlx5_unload_one(dev);
1796 	mlx5_pci_disable_device(dev);
1797 }
1798 
1799 static int mlx5_suspend(struct pci_dev *pdev, pm_message_t state)
1800 {
1801 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1802 
1803 	mlx5_unload_one(dev);
1804 
1805 	return 0;
1806 }
1807 
1808 static int mlx5_resume(struct pci_dev *pdev)
1809 {
1810 	struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1811 
1812 	return mlx5_load_one(dev);
1813 }
1814 
1815 static const struct pci_device_id mlx5_core_pci_table[] = {
1816 	{ PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTIB) },
1817 	{ PCI_VDEVICE(MELLANOX, 0x1012), MLX5_PCI_DEV_IS_VF},	/* Connect-IB VF */
1818 	{ PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTX4) },
1819 	{ PCI_VDEVICE(MELLANOX, 0x1014), MLX5_PCI_DEV_IS_VF},	/* ConnectX-4 VF */
1820 	{ PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_CONNECTX4_LX) },
1821 	{ PCI_VDEVICE(MELLANOX, 0x1016), MLX5_PCI_DEV_IS_VF},	/* ConnectX-4LX VF */
1822 	{ PCI_VDEVICE(MELLANOX, 0x1017) },			/* ConnectX-5, PCIe 3.0 */
1823 	{ PCI_VDEVICE(MELLANOX, 0x1018), MLX5_PCI_DEV_IS_VF},	/* ConnectX-5 VF */
1824 	{ PCI_VDEVICE(MELLANOX, 0x1019) },			/* ConnectX-5 Ex */
1825 	{ PCI_VDEVICE(MELLANOX, 0x101a), MLX5_PCI_DEV_IS_VF},	/* ConnectX-5 Ex VF */
1826 	{ PCI_VDEVICE(MELLANOX, 0x101b) },			/* ConnectX-6 */
1827 	{ PCI_VDEVICE(MELLANOX, 0x101c), MLX5_PCI_DEV_IS_VF},	/* ConnectX-6 VF */
1828 	{ PCI_VDEVICE(MELLANOX, 0x101d) },			/* ConnectX-6 Dx */
1829 	{ PCI_VDEVICE(MELLANOX, 0x101e), MLX5_PCI_DEV_IS_VF},	/* ConnectX Family mlx5Gen Virtual Function */
1830 	{ PCI_VDEVICE(MELLANOX, 0x101f) },			/* ConnectX-6 LX */
1831 	{ PCI_VDEVICE(MELLANOX, 0x1021) },			/* ConnectX-7 */
1832 	{ PCI_VDEVICE(MELLANOX, 0x1023) },			/* ConnectX-8 */
1833 	{ PCI_VDEVICE(MELLANOX, 0xa2d2) },			/* BlueField integrated ConnectX-5 network controller */
1834 	{ PCI_VDEVICE(MELLANOX, 0xa2d3), MLX5_PCI_DEV_IS_VF},	/* BlueField integrated ConnectX-5 network controller VF */
1835 	{ PCI_VDEVICE(MELLANOX, 0xa2d6) },			/* BlueField-2 integrated ConnectX-6 Dx network controller */
1836 	{ PCI_VDEVICE(MELLANOX, 0xa2dc) },			/* BlueField-3 integrated ConnectX-7 network controller */
1837 	{ PCI_VDEVICE(MELLANOX, 0xa2df) },			/* BlueField-4 integrated ConnectX-8 network controller */
1838 	{ 0, }
1839 };
1840 
1841 MODULE_DEVICE_TABLE(pci, mlx5_core_pci_table);
1842 
1843 void mlx5_disable_device(struct mlx5_core_dev *dev)
1844 {
1845 	mlx5_error_sw_reset(dev);
1846 	mlx5_unload_one(dev);
1847 }
1848 
1849 int mlx5_recover_device(struct mlx5_core_dev *dev)
1850 {
1851 	if (!mlx5_core_is_sf(dev)) {
1852 		mlx5_pci_disable_device(dev);
1853 		if (mlx5_pci_slot_reset(dev->pdev) != PCI_ERS_RESULT_RECOVERED)
1854 			return -EIO;
1855 	}
1856 
1857 	return mlx5_load_one(dev);
1858 }
1859 
1860 static struct pci_driver mlx5_core_driver = {
1861 	.name           = KBUILD_MODNAME,
1862 	.id_table       = mlx5_core_pci_table,
1863 	.probe          = probe_one,
1864 	.remove         = remove_one,
1865 	.suspend        = mlx5_suspend,
1866 	.resume         = mlx5_resume,
1867 	.shutdown	= shutdown,
1868 	.err_handler	= &mlx5_err_handler,
1869 	.sriov_configure   = mlx5_core_sriov_configure,
1870 	.sriov_get_vf_total_msix = mlx5_sriov_get_vf_total_msix,
1871 	.sriov_set_msix_vec_count = mlx5_core_sriov_set_msix_vec_count,
1872 };
1873 
1874 /**
1875  * mlx5_vf_get_core_dev - Get the mlx5 core device from a given VF PCI device if
1876  *                     mlx5_core is its driver.
1877  * @pdev: The associated PCI device.
1878  *
1879  * Upon return the interface state lock stay held to let caller uses it safely.
1880  * Caller must ensure to use the returned mlx5 device for a narrow window
1881  * and put it back with mlx5_vf_put_core_dev() immediately once usage was over.
1882  *
1883  * Return: Pointer to the associated mlx5_core_dev or NULL.
1884  */
1885 struct mlx5_core_dev *mlx5_vf_get_core_dev(struct pci_dev *pdev)
1886 			__acquires(&mdev->intf_state_mutex)
1887 {
1888 	struct mlx5_core_dev *mdev;
1889 
1890 	mdev = pci_iov_get_pf_drvdata(pdev, &mlx5_core_driver);
1891 	if (IS_ERR(mdev))
1892 		return NULL;
1893 
1894 	mutex_lock(&mdev->intf_state_mutex);
1895 	if (!test_bit(MLX5_INTERFACE_STATE_UP, &mdev->intf_state)) {
1896 		mutex_unlock(&mdev->intf_state_mutex);
1897 		return NULL;
1898 	}
1899 
1900 	return mdev;
1901 }
1902 EXPORT_SYMBOL(mlx5_vf_get_core_dev);
1903 
1904 /**
1905  * mlx5_vf_put_core_dev - Put the mlx5 core device back.
1906  * @mdev: The mlx5 core device.
1907  *
1908  * Upon return the interface state lock is unlocked and caller should not
1909  * access the mdev any more.
1910  */
1911 void mlx5_vf_put_core_dev(struct mlx5_core_dev *mdev)
1912 			__releases(&mdev->intf_state_mutex)
1913 {
1914 	mutex_unlock(&mdev->intf_state_mutex);
1915 }
1916 EXPORT_SYMBOL(mlx5_vf_put_core_dev);
1917 
1918 static void mlx5_core_verify_params(void)
1919 {
1920 	if (prof_sel >= ARRAY_SIZE(profile)) {
1921 		pr_warn("mlx5_core: WARNING: Invalid module parameter prof_sel %d, valid range 0-%zu, changing back to default(%d)\n",
1922 			prof_sel,
1923 			ARRAY_SIZE(profile) - 1,
1924 			MLX5_DEFAULT_PROF);
1925 		prof_sel = MLX5_DEFAULT_PROF;
1926 	}
1927 }
1928 
1929 static int __init init(void)
1930 {
1931 	int err;
1932 
1933 	WARN_ONCE(strcmp(MLX5_ADEV_NAME, KBUILD_MODNAME),
1934 		  "mlx5_core name not in sync with kernel module name");
1935 
1936 	get_random_bytes(&sw_owner_id, sizeof(sw_owner_id));
1937 
1938 	mlx5_core_verify_params();
1939 	mlx5_register_debugfs();
1940 
1941 	err = pci_register_driver(&mlx5_core_driver);
1942 	if (err)
1943 		goto err_debug;
1944 
1945 	err = mlx5_sf_driver_register();
1946 	if (err)
1947 		goto err_sf;
1948 
1949 	err = mlx5e_init();
1950 	if (err)
1951 		goto err_en;
1952 
1953 	return 0;
1954 
1955 err_en:
1956 	mlx5_sf_driver_unregister();
1957 err_sf:
1958 	pci_unregister_driver(&mlx5_core_driver);
1959 err_debug:
1960 	mlx5_unregister_debugfs();
1961 	return err;
1962 }
1963 
1964 static void __exit cleanup(void)
1965 {
1966 	mlx5e_cleanup();
1967 	mlx5_sf_driver_unregister();
1968 	pci_unregister_driver(&mlx5_core_driver);
1969 	mlx5_unregister_debugfs();
1970 }
1971 
1972 module_init(init);
1973 module_exit(cleanup);
1974