Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1397662

[RESEND PATCH v7 11/21] IB/hns: Add IB device registration

From Lijun Ou <oulijun@huawei.com>
Newsgroups linux.kernel
Subject [RESEND PATCH v7 11/21] IB/hns: Add IB device registration
Date 2016-05-10 05:00 +0200
Message-ID <rx63V-1LN-37@gated-at.bofh.it> (permalink)
References <rx63T-1LN-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This patch registered IB device when loaded, and unregistered
IB device when removed.

Signed-off-by: Wei Hu <xavier.huwei@huawei.com>
Signed-off-by: Nenglong Zhao <zhaonenglong@hisilicon.com>
Signed-off-by: Lijun Ou <oulijun@huawei.com>
---
 drivers/infiniband/hw/hns/hns_roce_main.c | 48 +++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/drivers/infiniband/hw/hns/hns_roce_main.c b/drivers/infiniband/hw/hns/hns_roce_main.c
index 9a329c2..e2576c4 100644
--- a/drivers/infiniband/hw/hns/hns_roce_main.c
+++ b/drivers/infiniband/hw/hns/hns_roce_main.c
@@ -43,6 +43,42 @@
 #include "hns_roce_device.h"
 #include "hns_roce_icm.h"
 
+void hns_roce_unregister_device(struct hns_roce_dev *hr_dev)
+{
+	ib_unregister_device(&hr_dev->ib_dev);
+}
+
+int hns_roce_register_device(struct hns_roce_dev *hr_dev)
+{
+	int ret;
+	struct hns_roce_ib_iboe *iboe = NULL;
+	struct ib_device *ib_dev = NULL;
+	struct device *dev = &hr_dev->pdev->dev;
+
+	iboe = &hr_dev->iboe;
+
+	ib_dev = &hr_dev->ib_dev;
+	strlcpy(ib_dev->name, "hisi_%d", IB_DEVICE_NAME_MAX);
+
+	ib_dev->owner			= THIS_MODULE;
+	ib_dev->node_type		= RDMA_NODE_IB_CA;
+	ib_dev->dma_device		= dev;
+
+	ib_dev->phys_port_cnt		= hr_dev->caps.num_ports;
+	ib_dev->local_dma_lkey		= hr_dev->caps.reserved_lkey;
+	ib_dev->num_comp_vectors	= hr_dev->caps.num_comp_vectors;
+	ib_dev->uverbs_abi_ver		= 1;
+
+	ret = ib_register_device(ib_dev, NULL);
+	if (ret) {
+		dev_err(dev, "ib_register_device failed!\n");
+		return ret;
+	}
+
+	return 0;
+}
+
+
 int hns_roce_get_cfg(struct hns_roce_dev *hr_dev)
 {
 	int i;
@@ -348,6 +384,17 @@ static int hns_roce_probe(struct platform_device *pdev)
 		goto error_failed_engine_init;
 	}
 
+	ret = hns_roce_register_device(hr_dev);
+	if (ret) {
+		dev_err(dev, "register_device failed!\n");
+		goto error_failed_register_device;
+	}
+
+	return 0;
+
+error_failed_register_device:
+	hns_roce_engine_uninit(hr_dev);
+
 error_failed_engine_init:
 	hns_roce_cleanup_bitmap(hr_dev);
 
@@ -383,6 +430,7 @@ static int hns_roce_remove(struct platform_device *pdev)
 {
 	struct hns_roce_dev *hr_dev = platform_get_drvdata(pdev);
 
+	hns_roce_unregister_device(hr_dev);
 	hns_roce_engine_uninit(hr_dev);
 	hns_roce_cleanup_bitmap(hr_dev);
 	hns_roce_cleanup_icm(hr_dev);
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[RESEND PATCH v7 00/21] Add HiSilicon RoCE driver Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 06/21] IB/hns: Add initial cmd operation Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 20/21] IB/hns: Kconfig and Makefile for RoCE module Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 11/21] IB/hns: Add IB device registration Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 13/21] IB/hns: Add interface of the protocol stack registration Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 10/21] IB/hns: Add process flow to init RoCE engine Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 02/21] devicetree: bindings: IB: Add binding document for HiSilicon RoCE Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 21/21] MAINTAINERS: Add maintainers for HiSilicon RoCE driver Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 08/21] IB/hns: Add icm support Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 19/21] IB/hns: Add memory region operations support Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200
  [RESEND PATCH v7 16/21] IB/hns: Add ah operations support Lijun Ou <oulijun@huawei.com> - 2016-05-10 05:00 +0200

csiph-web