RDMA/efa: Report host information to the device
authorGal Pressman <galpress@amazon.com>
Tue, 12 May 2020 15:22:04 +0000 (18:22 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 21 May 2020 13:05:00 +0000 (10:05 -0300)
The host info feature allows the driver to infrom the EFA device
firmware with system configuration for debugging and troubleshooting
purposes.

The host info buffer is passed as an admin command DMA mapped control
buffer, and is unmapped and freed once the command CQE is consumed.

Currently, the setting of host info is done for each device on its
probe. Failing to set the host info for the device shall not disturb the
probe flow, any errors will be discarded.

Link: https://lore.kernel.org/r/20200512152204.93091-3-galpress@amazon.com
Reviewed-by: Firas JahJah <firasj@amazon.com>
Reviewed-by: Guy Tzalik <gtzalik@amazon.com>
Signed-off-by: Gal Pressman <galpress@amazon.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/efa/efa_admin_cmds_defs.h
drivers/infiniband/hw/efa/efa_com_cmd.c
drivers/infiniband/hw/efa/efa_com_cmd.h
drivers/infiniband/hw/efa/efa_main.c

index 96b104a..bef2bd2 100644 (file)
@@ -37,7 +37,7 @@ enum efa_admin_aq_feature_id {
        EFA_ADMIN_NETWORK_ATTR                      = 3,
        EFA_ADMIN_QUEUE_ATTR                        = 4,
        EFA_ADMIN_HW_HINTS                          = 5,
-       EFA_ADMIN_FEATURES_OPCODE_NUM               = 8,
+       EFA_ADMIN_HOST_INFO                         = 6,
 };
 
 /* QP transport type */
@@ -799,6 +799,54 @@ struct efa_admin_mmio_req_read_less_resp {
        u32 reg_val;
 };
 
+enum efa_admin_os_type {
+       EFA_ADMIN_OS_LINUX                          = 0,
+};
+
+struct efa_admin_host_info {
+       /* OS distribution string format */
+       u8 os_dist_str[128];
+
+       /* Defined in enum efa_admin_os_type */
+       u32 os_type;
+
+       /* Kernel version string format */
+       u8 kernel_ver_str[32];
+
+       /* Kernel version numeric format */
+       u32 kernel_ver;
+
+       /*
+        * 7:0 : driver_module_type
+        * 15:8 : driver_sub_minor
+        * 23:16 : driver_minor
+        * 31:24 : driver_major
+        */
+       u32 driver_ver;
+
+       /*
+        * Device's Bus, Device and Function
+        * 2:0 : function
+        * 7:3 : device
+        * 15:8 : bus
+        */
+       u16 bdf;
+
+       /*
+        * Spec version
+        * 7:0 : spec_minor
+        * 15:8 : spec_major
+        */
+       u16 spec_ver;
+
+       /*
+        * 0 : intree - Intree driver
+        * 1 : gdr - GPUDirect RDMA supported
+        * 31:2 : reserved2
+        */
+       u32 flags;
+};
+
 /* create_qp_cmd */
 #define EFA_ADMIN_CREATE_QP_CMD_SQ_VIRT_MASK                BIT(0)
 #define EFA_ADMIN_CREATE_QP_CMD_RQ_VIRT_MASK                BIT(1)
@@ -820,4 +868,17 @@ struct efa_admin_mmio_req_read_less_resp {
 /* feature_device_attr_desc */
 #define EFA_ADMIN_FEATURE_DEVICE_ATTR_DESC_RDMA_READ_MASK   BIT(0)
 
+/* host_info */
+#define EFA_ADMIN_HOST_INFO_DRIVER_MODULE_TYPE_MASK         GENMASK(7, 0)
+#define EFA_ADMIN_HOST_INFO_DRIVER_SUB_MINOR_MASK           GENMASK(15, 8)
+#define EFA_ADMIN_HOST_INFO_DRIVER_MINOR_MASK               GENMASK(23, 16)
+#define EFA_ADMIN_HOST_INFO_DRIVER_MAJOR_MASK               GENMASK(31, 24)
+#define EFA_ADMIN_HOST_INFO_FUNCTION_MASK                   GENMASK(2, 0)
+#define EFA_ADMIN_HOST_INFO_DEVICE_MASK                     GENMASK(7, 3)
+#define EFA_ADMIN_HOST_INFO_BUS_MASK                        GENMASK(15, 8)
+#define EFA_ADMIN_HOST_INFO_SPEC_MINOR_MASK                 GENMASK(7, 0)
+#define EFA_ADMIN_HOST_INFO_SPEC_MAJOR_MASK                 GENMASK(15, 8)
+#define EFA_ADMIN_HOST_INFO_INTREE_MASK                     BIT(0)
+#define EFA_ADMIN_HOST_INFO_GDR_MASK                        BIT(1)
+
 #endif /* _EFA_ADMIN_CMDS_H_ */
index 69f842c..fabd8df 100644 (file)
@@ -351,7 +351,7 @@ int efa_com_destroy_ah(struct efa_com_dev *edev,
        return 0;
 }
 
-static bool
+bool
 efa_com_check_supported_feature_id(struct efa_com_dev *edev,
                                   enum efa_admin_aq_feature_id feature_id)
 {
@@ -517,12 +517,12 @@ int efa_com_get_hw_hints(struct efa_com_dev *edev,
        return 0;
 }
 
-static int efa_com_set_feature_ex(struct efa_com_dev *edev,
-                                 struct efa_admin_set_feature_resp *set_resp,
-                                 struct efa_admin_set_feature_cmd *set_cmd,
-                                 enum efa_admin_aq_feature_id feature_id,
-                                 dma_addr_t control_buf_dma_addr,
-                                 u32 control_buff_size)
+int efa_com_set_feature_ex(struct efa_com_dev *edev,
+                          struct efa_admin_set_feature_resp *set_resp,
+                          struct efa_admin_set_feature_cmd *set_cmd,
+                          enum efa_admin_aq_feature_id feature_id,
+                          dma_addr_t control_buf_dma_addr,
+                          u32 control_buff_size)
 {
        struct efa_com_admin_queue *aq;
        int err;
index 31db5a0..41ce4a4 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause */
 /*
- * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All rights reserved.
+ * Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All rights reserved.
  */
 
 #ifndef _EFA_COM_CMD_H_
@@ -270,6 +270,15 @@ int efa_com_get_device_attr(struct efa_com_dev *edev,
                            struct efa_com_get_device_attr_result *result);
 int efa_com_get_hw_hints(struct efa_com_dev *edev,
                         struct efa_com_get_hw_hints_result *result);
+bool
+efa_com_check_supported_feature_id(struct efa_com_dev *edev,
+                                  enum efa_admin_aq_feature_id feature_id);
+int efa_com_set_feature_ex(struct efa_com_dev *edev,
+                          struct efa_admin_set_feature_resp *set_resp,
+                          struct efa_admin_set_feature_cmd *set_cmd,
+                          enum efa_admin_aq_feature_id feature_id,
+                          dma_addr_t control_buf_dma_addr,
+                          u32 control_buff_size);
 int efa_com_set_aenq_config(struct efa_com_dev *edev, u32 groups);
 int efa_com_alloc_pd(struct efa_com_dev *edev,
                     struct efa_com_alloc_pd_result *result);
index faf3ff1..8214557 100644 (file)
@@ -1,10 +1,12 @@
 // SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
 /*
- * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All rights reserved.
+ * Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All rights reserved.
  */
 
 #include <linux/module.h>
 #include <linux/pci.h>
+#include <linux/utsname.h>
+#include <linux/version.h>
 
 #include <rdma/ib_user_verbs.h>
 
@@ -187,6 +189,52 @@ static void efa_stats_init(struct efa_dev *dev)
                atomic64_set(s, 0);
 }
 
+static void efa_set_host_info(struct efa_dev *dev)
+{
+       struct efa_admin_set_feature_resp resp = {};
+       struct efa_admin_set_feature_cmd cmd = {};
+       struct efa_admin_host_info *hinf;
+       u32 bufsz = sizeof(*hinf);
+       dma_addr_t hinf_dma;
+
+       if (!efa_com_check_supported_feature_id(&dev->edev,
+                                               EFA_ADMIN_HOST_INFO))
+               return;
+
+       /* Failures in host info set shall not disturb probe */
+       hinf = dma_alloc_coherent(&dev->pdev->dev, bufsz, &hinf_dma,
+                                 GFP_KERNEL);
+       if (!hinf)
+               return;
+
+       strlcpy(hinf->os_dist_str, utsname()->release,
+               min(sizeof(hinf->os_dist_str), sizeof(utsname()->release)));
+       hinf->os_type = EFA_ADMIN_OS_LINUX;
+       strlcpy(hinf->kernel_ver_str, utsname()->version,
+               min(sizeof(hinf->kernel_ver_str), sizeof(utsname()->version)));
+       hinf->kernel_ver = LINUX_VERSION_CODE;
+       EFA_SET(&hinf->driver_ver, EFA_ADMIN_HOST_INFO_DRIVER_MAJOR, 0);
+       EFA_SET(&hinf->driver_ver, EFA_ADMIN_HOST_INFO_DRIVER_MINOR, 0);
+       EFA_SET(&hinf->driver_ver, EFA_ADMIN_HOST_INFO_DRIVER_SUB_MINOR, 0);
+       EFA_SET(&hinf->driver_ver, EFA_ADMIN_HOST_INFO_DRIVER_MODULE_TYPE, 0);
+       EFA_SET(&hinf->bdf, EFA_ADMIN_HOST_INFO_BUS, dev->pdev->bus->number);
+       EFA_SET(&hinf->bdf, EFA_ADMIN_HOST_INFO_DEVICE,
+               PCI_SLOT(dev->pdev->devfn));
+       EFA_SET(&hinf->bdf, EFA_ADMIN_HOST_INFO_FUNCTION,
+               PCI_FUNC(dev->pdev->devfn));
+       EFA_SET(&hinf->spec_ver, EFA_ADMIN_HOST_INFO_SPEC_MAJOR,
+               EFA_COMMON_SPEC_VERSION_MAJOR);
+       EFA_SET(&hinf->spec_ver, EFA_ADMIN_HOST_INFO_SPEC_MINOR,
+               EFA_COMMON_SPEC_VERSION_MINOR);
+       EFA_SET(&hinf->flags, EFA_ADMIN_HOST_INFO_INTREE, 1);
+       EFA_SET(&hinf->flags, EFA_ADMIN_HOST_INFO_GDR, 0);
+
+       efa_com_set_feature_ex(&dev->edev, &resp, &cmd, EFA_ADMIN_HOST_INFO,
+                              hinf_dma, bufsz);
+
+       dma_free_coherent(&dev->pdev->dev, bufsz, hinf, hinf_dma);
+}
+
 static const struct ib_device_ops efa_dev_ops = {
        .owner = THIS_MODULE,
        .driver_id = RDMA_DRIVER_EFA,
@@ -251,6 +299,8 @@ static int efa_ib_device_add(struct efa_dev *dev)
        if (err)
                goto err_release_doorbell_bar;
 
+       efa_set_host_info(dev);
+
        dev->ibdev.node_type = RDMA_NODE_UNSPECIFIED;
        dev->ibdev.phys_port_cnt = 1;
        dev->ibdev.num_comp_vectors = 1;