Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1435761
| From | Lijun Ou <oulijun@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v11 21/22] IB/hns: Kconfig and Makefile for RoCE module |
| Date | 2016-07-02 11:30 +0200 |
| Message-ID | <rQppn-1JW-17@gated-at.bofh.it> (permalink) |
| References | <rQppn-1JW-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This patch added Kconfig and Makefile for building RoCE module. 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> --- PATCH v11: hns_roce_icm.o -> hns_roce_hem.o PATCH v10/v9/v8/v7/v6/v5: - No change over the PATCH v4 PATCH v4: This fixes the comments given by Christoph Hellwig over the PATCH v3: Link: https://lkml.org/lkml/2016/3/22/609 PATCH V3: This fixes the comments given by Leon Romanovsky over the PATCH v2: Link: https://lkml.org/lkml/2016/3/20/5 PATCH v2: This fixes the comments given by Leon Romanovsky over the PATCH v1: Link: https://lkml.org/lkml/2016/3/6/94 Fixes the error tested by kbuild test robot over the PATCH v1: Link: https://lkml.org/lkml/2016/3/4/343 PATCH v1: - The initial patch --- --- drivers/infiniband/Kconfig | 1 + drivers/infiniband/hw/Makefile | 1 + drivers/infiniband/hw/hns/Kconfig | 10 ++++++++++ drivers/infiniband/hw/hns/Makefile | 8 ++++++++ 4 files changed, 20 insertions(+) create mode 100644 drivers/infiniband/hw/hns/Kconfig create mode 100644 drivers/infiniband/hw/hns/Makefile diff --git a/drivers/infiniband/Kconfig b/drivers/infiniband/Kconfig index 2137adf..767f92b 100644 --- a/drivers/infiniband/Kconfig +++ b/drivers/infiniband/Kconfig @@ -74,6 +74,7 @@ source "drivers/infiniband/hw/mlx5/Kconfig" source "drivers/infiniband/hw/nes/Kconfig" source "drivers/infiniband/hw/ocrdma/Kconfig" source "drivers/infiniband/hw/usnic/Kconfig" +source "drivers/infiniband/hw/hns/Kconfig" source "drivers/infiniband/ulp/ipoib/Kconfig" diff --git a/drivers/infiniband/hw/Makefile b/drivers/infiniband/hw/Makefile index c0c7cf8..2ad851d 100644 --- a/drivers/infiniband/hw/Makefile +++ b/drivers/infiniband/hw/Makefile @@ -9,3 +9,4 @@ obj-$(CONFIG_INFINIBAND_NES) += nes/ obj-$(CONFIG_INFINIBAND_OCRDMA) += ocrdma/ obj-$(CONFIG_INFINIBAND_USNIC) += usnic/ obj-$(CONFIG_INFINIBAND_HFI1) += hfi1/ +obj-$(CONFIG_INFINIBAND_HISILICON_HNS) += hns/ diff --git a/drivers/infiniband/hw/hns/Kconfig b/drivers/infiniband/hw/hns/Kconfig new file mode 100644 index 0000000..c47c168 --- /dev/null +++ b/drivers/infiniband/hw/hns/Kconfig @@ -0,0 +1,10 @@ +config INFINIBAND_HISILICON_HNS + tristate "Hisilicon Hns ROCE Driver" + depends on NET_VENDOR_HISILICON + depends on ARM64 && HNS && HNS_DSAF && HNS_ENET + ---help--- + This is a ROCE/RDMA driver for the Hisilicon RoCE engine. The engine + is used in Hisilicon Hi1610 and more further ICT SoC. + + To compile this driver as a module, choose M here: the module + will be called hns-roce. diff --git a/drivers/infiniband/hw/hns/Makefile b/drivers/infiniband/hw/hns/Makefile new file mode 100644 index 0000000..8bb7e85 --- /dev/null +++ b/drivers/infiniband/hw/hns/Makefile @@ -0,0 +1,8 @@ +# +# Makefile for the HISILICON RoCE drivers. +# + +obj-$(CONFIG_INFINIBAND_HISILICON_HNS) += hns-roce.o +hns-roce-objs := hns_roce_main.o hns_roce_cmd.o hns_roce_eq.o hns_roce_pd.o \ + hns_roce_ah.o hns_roce_hem.o hns_roce_mr.o hns_roce_qp.o \ + hns_roce_cq.o hns_roce_alloc.o hns_roce_hw_v1.o -- 1.9.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v11 00/22] Add HiSilicon RoCE driver Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 03/22] IB/hns: Add initial main frame driver and get cfg info Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 21/22] IB/hns: Kconfig and Makefile for RoCE module Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 13/22] IB/hns: Add interface of the protocol stack registration Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 08/22] IB/hns: Add hem support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 01/22] net: hns: Add reset function support for RoCE driver Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 20/22] IB/hns: Add operation for getting immutable port Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 10/22] IB/hns: Add process flow to init RoCE engine Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 22/22] MAINTAINERS: Add maintainers for HiSilicon RoCE driver Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 04/22] IB/hns: Add RoCE engine reset function Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:30 +0200
[PATCH v11 14/22] IB/hns: Add operations support for IB device and port Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 19/22] IB/hns: Add memory region operations support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 12/22] IB/hns: Set mtu and gid support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 02/22] devicetree: bindings: IB: Add binding document for HiSilicon RoCE Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 11/22] IB/hns: Add IB device registration Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 15/22] IB/hns: Add PD operations support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 18/22] IB/hns: Add CQ operations support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 16/22] IB/hns: Add ah operations support Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
[PATCH v11 06/22] IB/hns: Add initial cmd operation Lijun Ou <oulijun@huawei.com> - 2016-07-02 11:40 +0200
Re: [PATCH v11 00/22] Add HiSilicon RoCE driver Leon Romanovsky <leon@kernel.org> - 2016-07-02 15:00 +0200
Re: [PATCH v11 00/22] Add HiSilicon RoCE driver "Wei Hu (Xavier)" <xavier.huwei@huawei.com> - 2016-07-04 08:30 +0200
Re: [PATCH v11 00/22] Add HiSilicon RoCE driver oulijun <oulijun@huawei.com> - 2016-07-04 10:20 +0200
Re: [PATCH v11 00/22] Add HiSilicon RoCE driver oulijun <oulijun@huawei.com> - 2016-07-08 05:00 +0200
csiph-web