From: Selvin Xavier <selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
To: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Selvin Xavier
<selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Devesh Sharma
<devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Somnath Kotur
<somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Sriharsha Basavapatna
<sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Subject: [PATCH V5 for-next 21/21] RDMA/bnxt_re: Add bnxt_re driver build support
Date: Fri, 10 Feb 2017 03:19:53 -0800 [thread overview]
Message-ID: <1486725593-9872-22-git-send-email-selvin.xavier@broadcom.com> (raw)
In-Reply-To: <1486725593-9872-1-git-send-email-selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Makefile and Kconfig changes for enabling bnxt_re compilation
v3: Adds list of MAINTAINERS of bnxt_re driver. Removes bnxt_re_debugfs.c
from Makefile as this file is no longer present
Signed-off-by: Devesh Sharma <devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Signed-off-by: Somnath Kotur <somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Signed-off-by: Sriharsha Basavapatna <sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Signed-off-by: Selvin Xavier <selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
---
MAINTAINERS | 11 +++++++++++
drivers/infiniband/Kconfig | 2 ++
drivers/infiniband/hw/Makefile | 1 +
drivers/infiniband/hw/bnxt_re/Kconfig | 9 +++++++++
drivers/infiniband/hw/bnxt_re/Makefile | 6 ++++++
5 files changed, 29 insertions(+)
create mode 100644 drivers/infiniband/hw/bnxt_re/Kconfig
create mode 100644 drivers/infiniband/hw/bnxt_re/Makefile
diff --git a/MAINTAINERS b/MAINTAINERS
index 5f0420a..468d2e8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2808,6 +2808,17 @@ L: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org (moderated for non-subscribers)
S: Maintained
F: arch/arm64/boot/dts/broadcom/vulcan*
+BROADCOM NETXTREME-E ROCE DRIVER
+M: Selvin Xavier <selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
+M: Devesh Sharma <devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
+M: Somnath Kotur <somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
+M: Sriharsha Basavapatna <sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
+L: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
+W: http://www.broadcom.com
+S: Supported
+F: drivers/infiniband/hw/bnxt_re/
+F: include/uapi/rdma/bnxt_re-abi.h
+
BROCADE BFA FC SCSI DRIVER
M: Anil Gurumurthy <anil.gurumurthy-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org>
M: Sudarsana Kalluru <sudarsana.kalluru-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org>
diff --git a/drivers/infiniband/Kconfig b/drivers/infiniband/Kconfig
index 6709173..66f8602 100644
--- a/drivers/infiniband/Kconfig
+++ b/drivers/infiniband/Kconfig
@@ -92,4 +92,6 @@ source "drivers/infiniband/hw/hfi1/Kconfig"
source "drivers/infiniband/hw/qedr/Kconfig"
+source "drivers/infiniband/hw/bnxt_re/Kconfig"
+
endif # INFINIBAND
diff --git a/drivers/infiniband/hw/Makefile b/drivers/infiniband/hw/Makefile
index ed553de..34c93ab 100644
--- a/drivers/infiniband/hw/Makefile
+++ b/drivers/infiniband/hw/Makefile
@@ -12,3 +12,4 @@ obj-$(CONFIG_INFINIBAND_USNIC) += usnic/
obj-$(CONFIG_INFINIBAND_HFI1) += hfi1/
obj-$(CONFIG_INFINIBAND_HNS) += hns/
obj-$(CONFIG_INFINIBAND_QEDR) += qedr/
+obj-$(CONFIG_INFINIBAND_BNXT_RE) += bnxt_re/
diff --git a/drivers/infiniband/hw/bnxt_re/Kconfig b/drivers/infiniband/hw/bnxt_re/Kconfig
new file mode 100644
index 0000000..cd0175e
--- /dev/null
+++ b/drivers/infiniband/hw/bnxt_re/Kconfig
@@ -0,0 +1,9 @@
+config INFINIBAND_BNXT_RE
+ tristate "Broadcom Netxtreme HCA support"
+ depends on ETHERNET && NETDEVICES && PCI && INET
+ select NET_VENDOR_BROADCOM
+ select BNXT
+ ---help---
+ This driver supports Broadcom NetXtreme-E 10/25/40/50 gigabit
+ RoCE HCAs. To compile this driver as a module, choose M here:
+ the module will be called bnxt_re.
diff --git a/drivers/infiniband/hw/bnxt_re/Makefile b/drivers/infiniband/hw/bnxt_re/Makefile
new file mode 100644
index 0000000..036f84e
--- /dev/null
+++ b/drivers/infiniband/hw/bnxt_re/Makefile
@@ -0,0 +1,6 @@
+
+ccflags-y := -Idrivers/net/ethernet/broadcom/bnxt
+obj-$(CONFIG_INFINIBAND_BNXT_RE) += bnxt_re.o
+bnxt_re-y := main.o ib_verbs.o \
+ qplib_res.o qplib_rcfw.o \
+ qplib_sp.o qplib_fp.o
--
2.5.5
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-02-10 11:19 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-10 11:19 [PATCH V5 for-next 00/21] Broadcom RoCE Driver (bnxt_re) Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 01/21] RDMA/bnxt_re: Add bnxt_re RoCE driver files Selvin Xavier
[not found] ` <1486725593-9872-1-git-send-email-selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
2017-02-10 11:19 ` [PATCH V5 for-next 02/21] RDMA/bnxt_re: Introducing autogenerated Host Software Interface(hsi) file Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 03/21] RDMA/bnxt_re: register with the NIC driver Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 08/21] RDMA/bnxt_re: Adding support for port related verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 16/21] RDMA/bnxt_re: Support poll_cq verb Selvin Xavier
[not found] ` <1486725593-9872-17-git-send-email-selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
2017-02-12 14:30 ` Leon Romanovsky
[not found] ` <20170212143051.GD14015-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-02-13 5:17 ` Selvin Xavier
[not found] ` <CA+sbYW36txPueFBWFOWigHu_XmnTPY+-Vdu5MmGeOQ7uFjrWag-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-02-13 5:45 ` Leon Romanovsky
2017-02-10 11:19 ` [PATCH V5 for-next 18/21] RDMA/bnxt_re: Support for DCB Selvin Xavier
2017-02-10 11:19 ` Selvin Xavier [this message]
2017-02-12 7:54 ` [PATCH V5 for-next 21/21] RDMA/bnxt_re: Add bnxt_re driver build support Leon Romanovsky
2017-02-10 11:19 ` [PATCH V5 for-next 04/21] RDMA/bnxt_re: Enabling RoCE control path Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 05/21] RDMA/bnxt_re: Adding Notification Queue support Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 06/21] RDMA/bnxt_re: Support for PD, ucontext and mmap verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 07/21] RDMA/bnxt_re: Support for query and modify device verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 09/21] RDMA/bnxt_re: Support for GID related verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 10/21] RDMA/bnxt_re: Support for CQ verbs Selvin Xavier
2017-02-14 12:22 ` Leon Romanovsky
2017-02-10 11:19 ` [PATCH V5 for-next 11/21] RDMA/bnxt_re: Support for AH verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 12/21] RDMA/bnxt_re: Support memory registration verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 13/21] RDMA/bnxt_re: Support QP verbs Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 14/21] RDMA/bnxt_re: Support post_send verb Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 15/21] RDMA/bnxt_re: Support post_recv Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 17/21] RDMA/bnxt_re: Handling dispatching of events to IB stack Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 19/21] RDMA/bnxt_re: Set uverbs command mask Selvin Xavier
2017-02-10 11:19 ` [PATCH V5 for-next 20/21] RDMA/bnxt_re: Add QP event handling Selvin Xavier
2017-02-14 14:59 ` [PATCH V5 for-next 00/21] Broadcom RoCE Driver (bnxt_re) Doug Ledford
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1486725593-9872-22-git-send-email-selvin.xavier@broadcom.com \
--to=selvin.xavier-dy08kvg/lbpwk0htik3j/w@public.gmane.org \
--cc=devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).