2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/highmem.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/errno.h>
37 #include <linux/pci.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/slab.h>
40 #include <linux/io-mapping.h>
41 #include <linux/interrupt.h>
42 #include <linux/delay.h>
43 #include <linux/mlx5/driver.h>
44 #include <linux/mlx5/cq.h>
45 #include <linux/mlx5/qp.h>
46 #include <linux/mlx5/srq.h>
47 #include <linux/debugfs.h>
48 #include <linux/kmod.h>
49 #include <linux/mlx5/mlx5_ifc.h>
50 #ifdef CONFIG_RFS_ACCEL
51 #include <linux/cpu_rmap.h>
53 #include <net/devlink.h>
54 #include "mlx5_core.h"
56 #ifdef CONFIG_MLX5_CORE_EN
60 MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
61 MODULE_DESCRIPTION("Mellanox Connect-IB, ConnectX-4 core driver");
62 MODULE_LICENSE("Dual BSD/GPL");
63 MODULE_VERSION(DRIVER_VERSION);
65 unsigned int mlx5_core_debug_mask;
66 module_param_named(debug_mask, mlx5_core_debug_mask, uint, 0644);
67 MODULE_PARM_DESC(debug_mask, "debug mask: 1 = dump cmd data, 2 = dump cmd exec time, 3 = both. Default=0");
69 #define MLX5_DEFAULT_PROF 2
70 static unsigned int prof_sel = MLX5_DEFAULT_PROF;
71 module_param_named(prof_sel, prof_sel, uint, 0444);
72 MODULE_PARM_DESC(prof_sel, "profile selector. Valid range 0 - 2");
75 MLX5_ATOMIC_REQ_MODE_BE = 0x0,
76 MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS = 0x1,
79 static struct mlx5_profile profile[] = {
84 .mask = MLX5_PROF_MASK_QP_SIZE,
88 .mask = MLX5_PROF_MASK_QP_SIZE |
89 MLX5_PROF_MASK_MR_CACHE,
178 #define FW_INIT_TIMEOUT_MILI 2000
179 #define FW_INIT_WAIT_MS 2
181 static int wait_fw_init(struct mlx5_core_dev *dev, u32 max_wait_mili)
183 unsigned long end = jiffies + msecs_to_jiffies(max_wait_mili);
186 while (fw_initializing(dev)) {
187 if (time_after(jiffies, end)) {
191 msleep(FW_INIT_WAIT_MS);
197 static void mlx5_set_driver_version(struct mlx5_core_dev *dev)
199 int driver_ver_sz = MLX5_FLD_SZ_BYTES(set_driver_version_in,
201 u8 in[MLX5_ST_SZ_BYTES(set_driver_version_in)] = {0};
202 u8 out[MLX5_ST_SZ_BYTES(set_driver_version_out)] = {0};
203 int remaining_size = driver_ver_sz;
206 if (!MLX5_CAP_GEN(dev, driver_version))
209 string = MLX5_ADDR_OF(set_driver_version_in, in, driver_version);
211 strncpy(string, "Linux", remaining_size);
213 remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
214 strncat(string, ",", remaining_size);
216 remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
217 strncat(string, DRIVER_NAME, remaining_size);
219 remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
220 strncat(string, ",", remaining_size);
222 remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
223 strncat(string, DRIVER_VERSION, remaining_size);
226 MLX5_SET(set_driver_version_in, in, opcode,
227 MLX5_CMD_OP_SET_DRIVER_VERSION);
229 mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
232 static int set_dma_caps(struct pci_dev *pdev)
236 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
238 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask\n");
239 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
241 dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting\n");
246 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
249 "Warning: couldn't set 64-bit consistent PCI DMA mask\n");
250 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
253 "Can't set consistent PCI DMA mask, aborting\n");
258 dma_set_max_seg_size(&pdev->dev, 2u * 1024 * 1024 * 1024);
262 static int mlx5_pci_enable_device(struct mlx5_core_dev *dev)
264 struct pci_dev *pdev = dev->pdev;
267 mutex_lock(&dev->pci_status_mutex);
268 if (dev->pci_status == MLX5_PCI_STATUS_DISABLED) {
269 err = pci_enable_device(pdev);
271 dev->pci_status = MLX5_PCI_STATUS_ENABLED;
273 mutex_unlock(&dev->pci_status_mutex);
278 static void mlx5_pci_disable_device(struct mlx5_core_dev *dev)
280 struct pci_dev *pdev = dev->pdev;
282 mutex_lock(&dev->pci_status_mutex);
283 if (dev->pci_status == MLX5_PCI_STATUS_ENABLED) {
284 pci_disable_device(pdev);
285 dev->pci_status = MLX5_PCI_STATUS_DISABLED;
287 mutex_unlock(&dev->pci_status_mutex);
290 static int request_bar(struct pci_dev *pdev)
294 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
295 dev_err(&pdev->dev, "Missing registers BAR, aborting\n");
299 err = pci_request_regions(pdev, DRIVER_NAME);
301 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
306 static void release_bar(struct pci_dev *pdev)
308 pci_release_regions(pdev);
311 static int mlx5_enable_msix(struct mlx5_core_dev *dev)
313 struct mlx5_priv *priv = &dev->priv;
314 struct mlx5_eq_table *table = &priv->eq_table;
315 int num_eqs = 1 << MLX5_CAP_GEN(dev, log_max_eq);
319 nvec = MLX5_CAP_GEN(dev, num_ports) * num_online_cpus() +
320 MLX5_EQ_VEC_COMP_BASE;
321 nvec = min_t(int, nvec, num_eqs);
322 if (nvec <= MLX5_EQ_VEC_COMP_BASE)
325 priv->msix_arr = kcalloc(nvec, sizeof(*priv->msix_arr), GFP_KERNEL);
327 priv->irq_info = kcalloc(nvec, sizeof(*priv->irq_info), GFP_KERNEL);
328 if (!priv->msix_arr || !priv->irq_info)
331 for (i = 0; i < nvec; i++)
332 priv->msix_arr[i].entry = i;
334 nvec = pci_enable_msix_range(dev->pdev, priv->msix_arr,
335 MLX5_EQ_VEC_COMP_BASE + 1, nvec);
339 table->num_comp_vectors = nvec - MLX5_EQ_VEC_COMP_BASE;
344 kfree(priv->irq_info);
345 kfree(priv->msix_arr);
349 static void mlx5_disable_msix(struct mlx5_core_dev *dev)
351 struct mlx5_priv *priv = &dev->priv;
353 pci_disable_msix(dev->pdev);
354 kfree(priv->irq_info);
355 kfree(priv->msix_arr);
358 struct mlx5_reg_host_endianess {
364 #define CAP_MASK(pos, size) ((u64)((1 << (size)) - 1) << (pos))
367 MLX5_CAP_BITS_RW_MASK = CAP_MASK(MLX5_CAP_OFF_CMDIF_CSUM, 2) |
368 MLX5_DEV_CAP_FLAG_DCT,
371 static u16 to_fw_pkey_sz(struct mlx5_core_dev *dev, u32 size)
387 mlx5_core_warn(dev, "invalid pkey table size %d\n", size);
392 static int mlx5_core_get_caps_mode(struct mlx5_core_dev *dev,
393 enum mlx5_cap_type cap_type,
394 enum mlx5_cap_mode cap_mode)
396 u8 in[MLX5_ST_SZ_BYTES(query_hca_cap_in)];
397 int out_sz = MLX5_ST_SZ_BYTES(query_hca_cap_out);
398 void *out, *hca_caps;
399 u16 opmod = (cap_type << 1) | (cap_mode & 0x01);
402 memset(in, 0, sizeof(in));
403 out = kzalloc(out_sz, GFP_KERNEL);
407 MLX5_SET(query_hca_cap_in, in, opcode, MLX5_CMD_OP_QUERY_HCA_CAP);
408 MLX5_SET(query_hca_cap_in, in, op_mod, opmod);
409 err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
412 "QUERY_HCA_CAP : type(%x) opmode(%x) Failed(%d)\n",
413 cap_type, cap_mode, err);
417 hca_caps = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
420 case HCA_CAP_OPMOD_GET_MAX:
421 memcpy(dev->hca_caps_max[cap_type], hca_caps,
422 MLX5_UN_SZ_BYTES(hca_cap_union));
424 case HCA_CAP_OPMOD_GET_CUR:
425 memcpy(dev->hca_caps_cur[cap_type], hca_caps,
426 MLX5_UN_SZ_BYTES(hca_cap_union));
430 "Tried to query dev cap type(%x) with wrong opmode(%x)\n",
440 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type)
444 ret = mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_CUR);
447 return mlx5_core_get_caps_mode(dev, cap_type, HCA_CAP_OPMOD_GET_MAX);
450 static int set_caps(struct mlx5_core_dev *dev, void *in, int in_sz, int opmod)
452 u32 out[MLX5_ST_SZ_DW(set_hca_cap_out)] = {0};
454 MLX5_SET(set_hca_cap_in, in, opcode, MLX5_CMD_OP_SET_HCA_CAP);
455 MLX5_SET(set_hca_cap_in, in, op_mod, opmod << 1);
456 return mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
459 static int handle_hca_cap_atomic(struct mlx5_core_dev *dev)
463 int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
467 if (MLX5_CAP_GEN(dev, atomic)) {
468 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC);
477 supported_atomic_req_8B_endianess_mode_1);
479 if (req_endianness != MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS)
482 set_ctx = kzalloc(set_sz, GFP_KERNEL);
486 set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx, capability);
488 /* Set requestor to host endianness */
489 MLX5_SET(atomic_caps, set_hca_cap, atomic_req_8B_endianess_mode,
490 MLX5_ATOMIC_REQ_MODE_HOST_ENDIANNESS);
492 err = set_caps(dev, set_ctx, set_sz, MLX5_SET_HCA_CAP_OP_MOD_ATOMIC);
498 static int handle_hca_cap(struct mlx5_core_dev *dev)
500 void *set_ctx = NULL;
501 struct mlx5_profile *prof = dev->profile;
503 int set_sz = MLX5_ST_SZ_BYTES(set_hca_cap_in);
506 set_ctx = kzalloc(set_sz, GFP_KERNEL);
510 err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL);
514 set_hca_cap = MLX5_ADDR_OF(set_hca_cap_in, set_ctx,
516 memcpy(set_hca_cap, dev->hca_caps_cur[MLX5_CAP_GENERAL],
517 MLX5_ST_SZ_BYTES(cmd_hca_cap));
519 mlx5_core_dbg(dev, "Current Pkey table size %d Setting new size %d\n",
520 mlx5_to_sw_pkey_sz(MLX5_CAP_GEN(dev, pkey_table_size)),
522 /* we limit the size of the pkey table to 128 entries for now */
523 MLX5_SET(cmd_hca_cap, set_hca_cap, pkey_table_size,
524 to_fw_pkey_sz(dev, 128));
526 if (prof->mask & MLX5_PROF_MASK_QP_SIZE)
527 MLX5_SET(cmd_hca_cap, set_hca_cap, log_max_qp,
530 /* disable cmdif checksum */
531 MLX5_SET(cmd_hca_cap, set_hca_cap, cmdif_checksum, 0);
533 MLX5_SET(cmd_hca_cap, set_hca_cap, log_uar_page_sz, PAGE_SHIFT - 12);
535 err = set_caps(dev, set_ctx, set_sz,
536 MLX5_SET_HCA_CAP_OP_MOD_GENERAL_DEVICE);
543 static int set_hca_ctrl(struct mlx5_core_dev *dev)
545 struct mlx5_reg_host_endianess he_in;
546 struct mlx5_reg_host_endianess he_out;
549 if (!mlx5_core_is_pf(dev))
552 memset(&he_in, 0, sizeof(he_in));
553 he_in.he = MLX5_SET_HOST_ENDIANNESS;
554 err = mlx5_core_access_reg(dev, &he_in, sizeof(he_in),
555 &he_out, sizeof(he_out),
556 MLX5_REG_HOST_ENDIANNESS, 0, 1);
560 int mlx5_core_enable_hca(struct mlx5_core_dev *dev, u16 func_id)
562 u32 out[MLX5_ST_SZ_DW(enable_hca_out)] = {0};
563 u32 in[MLX5_ST_SZ_DW(enable_hca_in)] = {0};
565 MLX5_SET(enable_hca_in, in, opcode, MLX5_CMD_OP_ENABLE_HCA);
566 MLX5_SET(enable_hca_in, in, function_id, func_id);
567 return mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
570 int mlx5_core_disable_hca(struct mlx5_core_dev *dev, u16 func_id)
572 u32 out[MLX5_ST_SZ_DW(disable_hca_out)] = {0};
573 u32 in[MLX5_ST_SZ_DW(disable_hca_in)] = {0};
575 MLX5_SET(disable_hca_in, in, opcode, MLX5_CMD_OP_DISABLE_HCA);
576 MLX5_SET(disable_hca_in, in, function_id, func_id);
577 return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
580 u64 mlx5_read_internal_timer(struct mlx5_core_dev *dev)
582 u32 timer_h, timer_h1, timer_l;
584 timer_h = ioread32be(&dev->iseg->internal_timer_h);
585 timer_l = ioread32be(&dev->iseg->internal_timer_l);
586 timer_h1 = ioread32be(&dev->iseg->internal_timer_h);
587 if (timer_h != timer_h1) /* wrap around */
588 timer_l = ioread32be(&dev->iseg->internal_timer_l);
590 return (u64)timer_l | (u64)timer_h1 << 32;
593 static int mlx5_irq_set_affinity_hint(struct mlx5_core_dev *mdev, int i)
595 struct mlx5_priv *priv = &mdev->priv;
596 struct msix_entry *msix = priv->msix_arr;
597 int irq = msix[i + MLX5_EQ_VEC_COMP_BASE].vector;
598 int numa_node = priv->numa_node;
601 if (!zalloc_cpumask_var(&priv->irq_info[i].mask, GFP_KERNEL)) {
602 mlx5_core_warn(mdev, "zalloc_cpumask_var failed");
606 cpumask_set_cpu(cpumask_local_spread(i, numa_node),
607 priv->irq_info[i].mask);
609 err = irq_set_affinity_hint(irq, priv->irq_info[i].mask);
611 mlx5_core_warn(mdev, "irq_set_affinity_hint failed,irq 0x%.4x",
619 free_cpumask_var(priv->irq_info[i].mask);
623 static void mlx5_irq_clear_affinity_hint(struct mlx5_core_dev *mdev, int i)
625 struct mlx5_priv *priv = &mdev->priv;
626 struct msix_entry *msix = priv->msix_arr;
627 int irq = msix[i + MLX5_EQ_VEC_COMP_BASE].vector;
629 irq_set_affinity_hint(irq, NULL);
630 free_cpumask_var(priv->irq_info[i].mask);
633 static int mlx5_irq_set_affinity_hints(struct mlx5_core_dev *mdev)
638 for (i = 0; i < mdev->priv.eq_table.num_comp_vectors; i++) {
639 err = mlx5_irq_set_affinity_hint(mdev, i);
647 for (i--; i >= 0; i--)
648 mlx5_irq_clear_affinity_hint(mdev, i);
653 static void mlx5_irq_clear_affinity_hints(struct mlx5_core_dev *mdev)
657 for (i = 0; i < mdev->priv.eq_table.num_comp_vectors; i++)
658 mlx5_irq_clear_affinity_hint(mdev, i);
661 int mlx5_vector2eqn(struct mlx5_core_dev *dev, int vector, int *eqn,
664 struct mlx5_eq_table *table = &dev->priv.eq_table;
665 struct mlx5_eq *eq, *n;
668 spin_lock(&table->lock);
669 list_for_each_entry_safe(eq, n, &table->comp_eqs_list, list) {
670 if (eq->index == vector) {
677 spin_unlock(&table->lock);
681 EXPORT_SYMBOL(mlx5_vector2eqn);
683 struct mlx5_eq *mlx5_eqn2eq(struct mlx5_core_dev *dev, int eqn)
685 struct mlx5_eq_table *table = &dev->priv.eq_table;
688 spin_lock(&table->lock);
689 list_for_each_entry(eq, &table->comp_eqs_list, list)
690 if (eq->eqn == eqn) {
691 spin_unlock(&table->lock);
695 spin_unlock(&table->lock);
697 return ERR_PTR(-ENOENT);
700 static void free_comp_eqs(struct mlx5_core_dev *dev)
702 struct mlx5_eq_table *table = &dev->priv.eq_table;
703 struct mlx5_eq *eq, *n;
705 #ifdef CONFIG_RFS_ACCEL
707 free_irq_cpu_rmap(dev->rmap);
711 spin_lock(&table->lock);
712 list_for_each_entry_safe(eq, n, &table->comp_eqs_list, list) {
714 spin_unlock(&table->lock);
715 if (mlx5_destroy_unmap_eq(dev, eq))
716 mlx5_core_warn(dev, "failed to destroy EQ 0x%x\n",
719 spin_lock(&table->lock);
721 spin_unlock(&table->lock);
724 static int alloc_comp_eqs(struct mlx5_core_dev *dev)
726 struct mlx5_eq_table *table = &dev->priv.eq_table;
727 char name[MLX5_MAX_IRQ_NAME];
734 INIT_LIST_HEAD(&table->comp_eqs_list);
735 ncomp_vec = table->num_comp_vectors;
736 nent = MLX5_COMP_EQ_SIZE;
737 #ifdef CONFIG_RFS_ACCEL
738 dev->rmap = alloc_irq_cpu_rmap(ncomp_vec);
742 for (i = 0; i < ncomp_vec; i++) {
743 eq = kzalloc(sizeof(*eq), GFP_KERNEL);
749 #ifdef CONFIG_RFS_ACCEL
750 irq_cpu_rmap_add(dev->rmap,
751 dev->priv.msix_arr[i + MLX5_EQ_VEC_COMP_BASE].vector);
753 snprintf(name, MLX5_MAX_IRQ_NAME, "mlx5_comp%d", i);
754 err = mlx5_create_map_eq(dev, eq,
755 i + MLX5_EQ_VEC_COMP_BASE, nent, 0,
756 name, MLX5_EQ_TYPE_COMP);
761 mlx5_core_dbg(dev, "allocated completion EQN %d\n", eq->eqn);
763 spin_lock(&table->lock);
764 list_add_tail(&eq->list, &table->comp_eqs_list);
765 spin_unlock(&table->lock);
775 static int mlx5_core_set_issi(struct mlx5_core_dev *dev)
777 u32 query_in[MLX5_ST_SZ_DW(query_issi_in)] = {0};
778 u32 query_out[MLX5_ST_SZ_DW(query_issi_out)] = {0};
782 MLX5_SET(query_issi_in, query_in, opcode, MLX5_CMD_OP_QUERY_ISSI);
783 err = mlx5_cmd_exec(dev, query_in, sizeof(query_in),
784 query_out, sizeof(query_out));
789 mlx5_cmd_mbox_status(query_out, &status, &syndrome);
790 if (!status || syndrome == MLX5_DRIVER_SYND) {
791 mlx5_core_err(dev, "Failed to query ISSI err(%d) status(%d) synd(%d)\n",
792 err, status, syndrome);
796 mlx5_core_warn(dev, "Query ISSI is not supported by FW, ISSI is 0\n");
801 sup_issi = MLX5_GET(query_issi_out, query_out, supported_issi_dw0);
803 if (sup_issi & (1 << 1)) {
804 u32 set_in[MLX5_ST_SZ_DW(set_issi_in)] = {0};
805 u32 set_out[MLX5_ST_SZ_DW(set_issi_out)] = {0};
807 MLX5_SET(set_issi_in, set_in, opcode, MLX5_CMD_OP_SET_ISSI);
808 MLX5_SET(set_issi_in, set_in, current_issi, 1);
809 err = mlx5_cmd_exec(dev, set_in, sizeof(set_in),
810 set_out, sizeof(set_out));
812 mlx5_core_err(dev, "Failed to set ISSI to 1 err(%d)\n",
820 } else if (sup_issi & (1 << 0) || !sup_issi) {
828 static int mlx5_pci_init(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
830 struct pci_dev *pdev = dev->pdev;
833 pci_set_drvdata(dev->pdev, dev);
834 strncpy(priv->name, dev_name(&pdev->dev), MLX5_MAX_NAME_LEN);
835 priv->name[MLX5_MAX_NAME_LEN - 1] = 0;
837 mutex_init(&priv->pgdir_mutex);
838 INIT_LIST_HEAD(&priv->pgdir_list);
839 spin_lock_init(&priv->mkey_lock);
841 mutex_init(&priv->alloc_mutex);
843 priv->numa_node = dev_to_node(&dev->pdev->dev);
845 priv->dbg_root = debugfs_create_dir(dev_name(&pdev->dev), mlx5_debugfs_root);
849 err = mlx5_pci_enable_device(dev);
851 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
855 err = request_bar(pdev);
857 dev_err(&pdev->dev, "error requesting BARs, aborting\n");
861 pci_set_master(pdev);
863 err = set_dma_caps(pdev);
865 dev_err(&pdev->dev, "Failed setting DMA capabilities mask, aborting\n");
869 dev->iseg_base = pci_resource_start(dev->pdev, 0);
870 dev->iseg = ioremap(dev->iseg_base, sizeof(*dev->iseg));
873 dev_err(&pdev->dev, "Failed mapping initialization segment, aborting\n");
880 pci_clear_master(dev->pdev);
881 release_bar(dev->pdev);
883 mlx5_pci_disable_device(dev);
886 debugfs_remove(priv->dbg_root);
890 static void mlx5_pci_close(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
893 pci_clear_master(dev->pdev);
894 release_bar(dev->pdev);
895 mlx5_pci_disable_device(dev);
896 debugfs_remove(priv->dbg_root);
899 static int mlx5_init_once(struct mlx5_core_dev *dev, struct mlx5_priv *priv)
901 struct pci_dev *pdev = dev->pdev;
904 err = mlx5_query_board_id(dev);
906 dev_err(&pdev->dev, "query board id failed\n");
910 err = mlx5_eq_init(dev);
912 dev_err(&pdev->dev, "failed to initialize eq\n");
916 MLX5_INIT_DOORBELL_LOCK(&priv->cq_uar_lock);
918 err = mlx5_init_cq_table(dev);
920 dev_err(&pdev->dev, "failed to initialize cq table\n");
924 mlx5_init_qp_table(dev);
926 mlx5_init_srq_table(dev);
928 mlx5_init_mkey_table(dev);
930 err = mlx5_init_rl_table(dev);
932 dev_err(&pdev->dev, "Failed to init rate limiting\n");
933 goto err_tables_cleanup;
936 #ifdef CONFIG_MLX5_CORE_EN
937 err = mlx5_eswitch_init(dev);
939 dev_err(&pdev->dev, "Failed to init eswitch %d\n", err);
944 err = mlx5_sriov_init(dev);
946 dev_err(&pdev->dev, "Failed to init sriov %d\n", err);
947 goto err_eswitch_cleanup;
953 #ifdef CONFIG_MLX5_CORE_EN
954 mlx5_eswitch_cleanup(dev->priv.eswitch);
958 mlx5_cleanup_rl_table(dev);
961 mlx5_cleanup_mkey_table(dev);
962 mlx5_cleanup_srq_table(dev);
963 mlx5_cleanup_qp_table(dev);
964 mlx5_cleanup_cq_table(dev);
967 mlx5_eq_cleanup(dev);
973 static void mlx5_cleanup_once(struct mlx5_core_dev *dev)
975 mlx5_sriov_cleanup(dev);
976 #ifdef CONFIG_MLX5_CORE_EN
977 mlx5_eswitch_cleanup(dev->priv.eswitch);
979 mlx5_cleanup_rl_table(dev);
980 mlx5_cleanup_mkey_table(dev);
981 mlx5_cleanup_srq_table(dev);
982 mlx5_cleanup_qp_table(dev);
983 mlx5_cleanup_cq_table(dev);
984 mlx5_eq_cleanup(dev);
987 static int mlx5_load_one(struct mlx5_core_dev *dev, struct mlx5_priv *priv,
990 struct pci_dev *pdev = dev->pdev;
993 mutex_lock(&dev->intf_state_mutex);
994 if (test_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state)) {
995 dev_warn(&dev->pdev->dev, "%s: interface is up, NOP\n",
1000 dev_info(&pdev->dev, "firmware version: %d.%d.%d\n", fw_rev_maj(dev),
1001 fw_rev_min(dev), fw_rev_sub(dev));
1003 /* on load removing any previous indication of internal error, device is
1006 dev->state = MLX5_DEVICE_STATE_UP;
1008 err = mlx5_cmd_init(dev);
1010 dev_err(&pdev->dev, "Failed initializing command interface, aborting\n");
1014 err = wait_fw_init(dev, FW_INIT_TIMEOUT_MILI);
1016 dev_err(&dev->pdev->dev, "Firmware over %d MS in initializing state, aborting\n",
1017 FW_INIT_TIMEOUT_MILI);
1021 err = mlx5_core_enable_hca(dev, 0);
1023 dev_err(&pdev->dev, "enable hca failed\n");
1024 goto err_cmd_cleanup;
1027 err = mlx5_core_set_issi(dev);
1029 dev_err(&pdev->dev, "failed to set issi\n");
1030 goto err_disable_hca;
1033 err = mlx5_satisfy_startup_pages(dev, 1);
1035 dev_err(&pdev->dev, "failed to allocate boot pages\n");
1036 goto err_disable_hca;
1039 err = set_hca_ctrl(dev);
1041 dev_err(&pdev->dev, "set_hca_ctrl failed\n");
1042 goto reclaim_boot_pages;
1045 err = handle_hca_cap(dev);
1047 dev_err(&pdev->dev, "handle_hca_cap failed\n");
1048 goto reclaim_boot_pages;
1051 err = handle_hca_cap_atomic(dev);
1053 dev_err(&pdev->dev, "handle_hca_cap_atomic failed\n");
1054 goto reclaim_boot_pages;
1057 err = mlx5_satisfy_startup_pages(dev, 0);
1059 dev_err(&pdev->dev, "failed to allocate init pages\n");
1060 goto reclaim_boot_pages;
1063 err = mlx5_pagealloc_start(dev);
1065 dev_err(&pdev->dev, "mlx5_pagealloc_start failed\n");
1066 goto reclaim_boot_pages;
1069 err = mlx5_cmd_init_hca(dev);
1071 dev_err(&pdev->dev, "init hca failed\n");
1072 goto err_pagealloc_stop;
1075 mlx5_set_driver_version(dev);
1077 mlx5_start_health_poll(dev);
1079 err = mlx5_query_hca_caps(dev);
1081 dev_err(&pdev->dev, "query hca failed\n");
1085 if (boot && mlx5_init_once(dev, priv)) {
1086 dev_err(&pdev->dev, "sw objs init failed\n");
1090 err = mlx5_enable_msix(dev);
1092 dev_err(&pdev->dev, "enable msix failed\n");
1093 goto err_cleanup_once;
1096 dev->priv.uar = mlx5_get_uars_page(dev);
1097 if (!dev->priv.uar) {
1098 dev_err(&pdev->dev, "Failed allocating uar, aborting\n");
1099 goto err_disable_msix;
1102 err = mlx5_alloc_bfregs(dev, &priv->bfregi);
1104 dev_err(&pdev->dev, "Failed allocating uuars, aborting\n");
1105 goto err_uar_cleanup;
1108 err = mlx5_start_eqs(dev);
1110 dev_err(&pdev->dev, "Failed to start pages and async EQs\n");
1114 err = alloc_comp_eqs(dev);
1116 dev_err(&pdev->dev, "Failed to alloc completion EQs\n");
1120 err = mlx5_irq_set_affinity_hints(dev);
1122 dev_err(&pdev->dev, "Failed to alloc affinity hint cpumask\n");
1123 goto err_affinity_hints;
1126 err = mlx5_init_fs(dev);
1128 dev_err(&pdev->dev, "Failed to init flow steering\n");
1132 #ifdef CONFIG_MLX5_CORE_EN
1133 mlx5_eswitch_attach(dev->priv.eswitch);
1136 err = mlx5_sriov_attach(dev);
1138 dev_err(&pdev->dev, "sriov init failed %d\n", err);
1142 if (mlx5_device_registered(dev)) {
1143 mlx5_attach_device(dev);
1145 err = mlx5_register_device(dev);
1147 dev_err(&pdev->dev, "mlx5_register_device failed %d\n", err);
1152 clear_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state);
1153 set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1155 mutex_unlock(&dev->intf_state_mutex);
1160 mlx5_sriov_detach(dev);
1163 #ifdef CONFIG_MLX5_CORE_EN
1164 mlx5_eswitch_detach(dev->priv.eswitch);
1166 mlx5_cleanup_fs(dev);
1169 mlx5_irq_clear_affinity_hints(dev);
1178 mlx5_free_bfregs(dev, &priv->bfregi);
1181 mlx5_put_uars_page(dev, priv->uar);
1184 mlx5_disable_msix(dev);
1188 mlx5_cleanup_once(dev);
1191 mlx5_stop_health_poll(dev);
1192 if (mlx5_cmd_teardown_hca(dev)) {
1193 dev_err(&dev->pdev->dev, "tear_down_hca failed, skip cleanup\n");
1198 mlx5_pagealloc_stop(dev);
1201 mlx5_reclaim_startup_pages(dev);
1204 mlx5_core_disable_hca(dev, 0);
1207 mlx5_cmd_cleanup(dev);
1210 dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
1211 mutex_unlock(&dev->intf_state_mutex);
1216 static int mlx5_unload_one(struct mlx5_core_dev *dev, struct mlx5_priv *priv,
1221 mutex_lock(&dev->intf_state_mutex);
1222 if (test_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state)) {
1223 dev_warn(&dev->pdev->dev, "%s: interface is down, NOP\n",
1226 mlx5_cleanup_once(dev);
1230 if (mlx5_device_registered(dev))
1231 mlx5_detach_device(dev);
1233 mlx5_sriov_detach(dev);
1234 #ifdef CONFIG_MLX5_CORE_EN
1235 mlx5_eswitch_detach(dev->priv.eswitch);
1237 mlx5_cleanup_fs(dev);
1238 mlx5_irq_clear_affinity_hints(dev);
1241 mlx5_free_bfregs(dev, &priv->bfregi);
1242 mlx5_put_uars_page(dev, priv->uar);
1243 mlx5_disable_msix(dev);
1245 mlx5_cleanup_once(dev);
1246 mlx5_stop_health_poll(dev);
1247 err = mlx5_cmd_teardown_hca(dev);
1249 dev_err(&dev->pdev->dev, "tear_down_hca failed, skip cleanup\n");
1252 mlx5_pagealloc_stop(dev);
1253 mlx5_reclaim_startup_pages(dev);
1254 mlx5_core_disable_hca(dev, 0);
1255 mlx5_cmd_cleanup(dev);
1258 clear_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
1259 set_bit(MLX5_INTERFACE_STATE_DOWN, &dev->intf_state);
1260 mutex_unlock(&dev->intf_state_mutex);
1264 struct mlx5_core_event_handler {
1265 void (*event)(struct mlx5_core_dev *dev,
1266 enum mlx5_dev_event event,
1270 static const struct devlink_ops mlx5_devlink_ops = {
1271 #ifdef CONFIG_MLX5_CORE_EN
1272 .eswitch_mode_set = mlx5_devlink_eswitch_mode_set,
1273 .eswitch_mode_get = mlx5_devlink_eswitch_mode_get,
1274 .eswitch_inline_mode_set = mlx5_devlink_eswitch_inline_mode_set,
1275 .eswitch_inline_mode_get = mlx5_devlink_eswitch_inline_mode_get,
1279 #define MLX5_IB_MOD "mlx5_ib"
1280 static int init_one(struct pci_dev *pdev,
1281 const struct pci_device_id *id)
1283 struct mlx5_core_dev *dev;
1284 struct devlink *devlink;
1285 struct mlx5_priv *priv;
1288 devlink = devlink_alloc(&mlx5_devlink_ops, sizeof(*dev));
1290 dev_err(&pdev->dev, "kzalloc failed\n");
1294 dev = devlink_priv(devlink);
1296 priv->pci_dev_data = id->driver_data;
1298 pci_set_drvdata(pdev, dev);
1301 dev->event = mlx5_core_event;
1302 dev->profile = &profile[prof_sel];
1304 INIT_LIST_HEAD(&priv->ctx_list);
1305 spin_lock_init(&priv->ctx_lock);
1306 mutex_init(&dev->pci_status_mutex);
1307 mutex_init(&dev->intf_state_mutex);
1309 #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1310 err = init_srcu_struct(&priv->pfault_srcu);
1312 dev_err(&pdev->dev, "init_srcu_struct failed with error code %d\n",
1317 mutex_init(&priv->bfregs.reg_head.lock);
1318 mutex_init(&priv->bfregs.wc_head.lock);
1319 INIT_LIST_HEAD(&priv->bfregs.reg_head.list);
1320 INIT_LIST_HEAD(&priv->bfregs.wc_head.list);
1322 err = mlx5_pci_init(dev, priv);
1324 dev_err(&pdev->dev, "mlx5_pci_init failed with error code %d\n", err);
1328 err = mlx5_health_init(dev);
1330 dev_err(&pdev->dev, "mlx5_health_init failed with error code %d\n", err);
1334 mlx5_pagealloc_init(dev);
1336 err = mlx5_load_one(dev, priv, true);
1338 dev_err(&pdev->dev, "mlx5_load_one failed with error code %d\n", err);
1342 err = request_module_nowait(MLX5_IB_MOD);
1344 pr_info("failed request module on %s\n", MLX5_IB_MOD);
1346 err = devlink_register(devlink, &pdev->dev);
1353 mlx5_unload_one(dev, priv, true);
1355 mlx5_pagealloc_cleanup(dev);
1356 mlx5_health_cleanup(dev);
1358 mlx5_pci_close(dev, priv);
1360 #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1361 cleanup_srcu_struct(&priv->pfault_srcu);
1364 pci_set_drvdata(pdev, NULL);
1365 devlink_free(devlink);
1370 static void remove_one(struct pci_dev *pdev)
1372 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1373 struct devlink *devlink = priv_to_devlink(dev);
1374 struct mlx5_priv *priv = &dev->priv;
1376 devlink_unregister(devlink);
1377 mlx5_unregister_device(dev);
1379 if (mlx5_unload_one(dev, priv, true)) {
1380 dev_err(&dev->pdev->dev, "mlx5_unload_one failed\n");
1381 mlx5_health_cleanup(dev);
1385 mlx5_pagealloc_cleanup(dev);
1386 mlx5_health_cleanup(dev);
1387 mlx5_pci_close(dev, priv);
1388 #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1389 cleanup_srcu_struct(&priv->pfault_srcu);
1391 pci_set_drvdata(pdev, NULL);
1392 devlink_free(devlink);
1395 static pci_ers_result_t mlx5_pci_err_detected(struct pci_dev *pdev,
1396 pci_channel_state_t state)
1398 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1399 struct mlx5_priv *priv = &dev->priv;
1401 dev_info(&pdev->dev, "%s was called\n", __func__);
1403 mlx5_enter_error_state(dev);
1404 mlx5_unload_one(dev, priv, false);
1405 /* In case of kernel call save the pci state and drain health wq */
1407 pci_save_state(pdev);
1408 mlx5_drain_health_wq(dev);
1409 mlx5_pci_disable_device(dev);
1412 return state == pci_channel_io_perm_failure ?
1413 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
1416 /* wait for the device to show vital signs by waiting
1417 * for the health counter to start counting.
1419 static int wait_vital(struct pci_dev *pdev)
1421 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1422 struct mlx5_core_health *health = &dev->priv.health;
1423 const int niter = 100;
1428 for (i = 0; i < niter; i++) {
1429 count = ioread32be(health->health_counter);
1430 if (count && count != 0xffffffff) {
1431 if (last_count && last_count != count) {
1432 dev_info(&pdev->dev, "Counter value 0x%x after %d iterations\n", count, i);
1443 static pci_ers_result_t mlx5_pci_slot_reset(struct pci_dev *pdev)
1445 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1448 dev_info(&pdev->dev, "%s was called\n", __func__);
1450 err = mlx5_pci_enable_device(dev);
1452 dev_err(&pdev->dev, "%s: mlx5_pci_enable_device failed with error code: %d\n"
1454 return PCI_ERS_RESULT_DISCONNECT;
1457 pci_set_master(pdev);
1458 pci_restore_state(pdev);
1460 if (wait_vital(pdev)) {
1461 dev_err(&pdev->dev, "%s: wait_vital timed out\n", __func__);
1462 return PCI_ERS_RESULT_DISCONNECT;
1465 return PCI_ERS_RESULT_RECOVERED;
1468 static void mlx5_pci_resume(struct pci_dev *pdev)
1470 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1471 struct mlx5_priv *priv = &dev->priv;
1474 dev_info(&pdev->dev, "%s was called\n", __func__);
1476 err = mlx5_load_one(dev, priv, false);
1478 dev_err(&pdev->dev, "%s: mlx5_load_one failed with error code: %d\n"
1481 dev_info(&pdev->dev, "%s: device recovered\n", __func__);
1484 static const struct pci_error_handlers mlx5_err_handler = {
1485 .error_detected = mlx5_pci_err_detected,
1486 .slot_reset = mlx5_pci_slot_reset,
1487 .resume = mlx5_pci_resume
1490 static void shutdown(struct pci_dev *pdev)
1492 struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
1493 struct mlx5_priv *priv = &dev->priv;
1495 dev_info(&pdev->dev, "Shutdown was called\n");
1496 /* Notify mlx5 clients that the kernel is being shut down */
1497 set_bit(MLX5_INTERFACE_STATE_SHUTDOWN, &dev->intf_state);
1498 mlx5_unload_one(dev, priv, false);
1499 mlx5_pci_disable_device(dev);
1502 static const struct pci_device_id mlx5_core_pci_table[] = {
1503 { PCI_VDEVICE(MELLANOX, 0x1011) }, /* Connect-IB */
1504 { PCI_VDEVICE(MELLANOX, 0x1012), MLX5_PCI_DEV_IS_VF}, /* Connect-IB VF */
1505 { PCI_VDEVICE(MELLANOX, 0x1013) }, /* ConnectX-4 */
1506 { PCI_VDEVICE(MELLANOX, 0x1014), MLX5_PCI_DEV_IS_VF}, /* ConnectX-4 VF */
1507 { PCI_VDEVICE(MELLANOX, 0x1015) }, /* ConnectX-4LX */
1508 { PCI_VDEVICE(MELLANOX, 0x1016), MLX5_PCI_DEV_IS_VF}, /* ConnectX-4LX VF */
1509 { PCI_VDEVICE(MELLANOX, 0x1017) }, /* ConnectX-5, PCIe 3.0 */
1510 { PCI_VDEVICE(MELLANOX, 0x1018), MLX5_PCI_DEV_IS_VF}, /* ConnectX-5 VF */
1511 { PCI_VDEVICE(MELLANOX, 0x1019) }, /* ConnectX-5, PCIe 4.0 */
1512 { PCI_VDEVICE(MELLANOX, 0x101a), MLX5_PCI_DEV_IS_VF}, /* ConnectX-5, PCIe 4.0 VF */
1516 MODULE_DEVICE_TABLE(pci, mlx5_core_pci_table);
1518 void mlx5_disable_device(struct mlx5_core_dev *dev)
1520 mlx5_pci_err_detected(dev->pdev, 0);
1523 void mlx5_recover_device(struct mlx5_core_dev *dev)
1525 mlx5_pci_disable_device(dev);
1526 if (mlx5_pci_slot_reset(dev->pdev) == PCI_ERS_RESULT_RECOVERED)
1527 mlx5_pci_resume(dev->pdev);
1530 static struct pci_driver mlx5_core_driver = {
1531 .name = DRIVER_NAME,
1532 .id_table = mlx5_core_pci_table,
1534 .remove = remove_one,
1535 .shutdown = shutdown,
1536 .err_handler = &mlx5_err_handler,
1537 .sriov_configure = mlx5_core_sriov_configure,
1540 static void mlx5_core_verify_params(void)
1542 if (prof_sel >= ARRAY_SIZE(profile)) {
1543 pr_warn("mlx5_core: WARNING: Invalid module parameter prof_sel %d, valid range 0-%zu, changing back to default(%d)\n",
1545 ARRAY_SIZE(profile) - 1,
1547 prof_sel = MLX5_DEFAULT_PROF;
1551 static int __init init(void)
1555 mlx5_core_verify_params();
1556 mlx5_register_debugfs();
1558 err = pci_register_driver(&mlx5_core_driver);
1562 #ifdef CONFIG_MLX5_CORE_EN
1569 mlx5_unregister_debugfs();
1573 static void __exit cleanup(void)
1575 #ifdef CONFIG_MLX5_CORE_EN
1578 pci_unregister_driver(&mlx5_core_driver);
1579 mlx5_unregister_debugfs();
1583 module_exit(cleanup);