Skip to content

Commit 29c8d9e

Browse files
Adit Ranadivedledford
authored andcommitted
IB: Add vmw_pvrdma driver
This patch series adds a driver for a paravirtual RDMA device. The device is developed for VMware's Virtual Machines and allows existing RDMA applications to continue to use existing Verbs API when deployed in VMs on ESXi. We recently did a presentation in the OFA Workshop [1] regarding this device. Description and RDMA Support ============================ The virtual device is exposed as a dual function PCIe device. One part is a virtual network device (VMXNet3) which provides networking properties like MAC, IP addresses to the RDMA part of the device. The networking properties are used to register GIDs required by RDMA applications to communicate. These patches add support and the all required infrastructure for letting applications use such a device. We support the mandatory Verbs API as well as the base memory management extensions (Local Inv, Send with Inv and Fast Register Work Requests). We currently support both Reliable Connected and Unreliable Datagram QPs but do not support Shared Receive Queues (SRQs). Also, we support the following types of Work Requests: o Send/Receive (with or without Immediate Data) o RDMA Write (with or without Immediate Data) o RDMA Read o Local Invalidate o Send with Invalidate o Fast Register Work Requests This version only adds support for version 1 of RoCE. We will add RoCEv2 support in a future patch. We do support registration of both MAC-based and IP-based GIDs. I have also created a git tree for our user-level driver [2]. Testing ======= We have tested this internally for various types of Guest OS - Red Hat, Centos, Ubuntu 12.04/14.04/16.04, Oracle Enterprise Linux, SLES 12 using backported versions of this driver. The tests included several runs of the performance tests (included with OFED), Intel MPI PingPong benchmark on OpenMPI, krping for FRWRs. Mellanox has been kind enough to test the backported version of the driver internally on their hardware using a VMware provided ESX build. I have also applied and tested this with Doug's k.o/for-4.9 branch (commit 5603910b). Note, that this patch series should be applied all together. I split out the commits so that it may be easier to review. PVRDMA Resources ================ [1] OFA Workshop Presentation - https://openfabrics.org/images/eventpresos/2016presentations/102parardma.pdf [2] Libpvrdma User-level library - http://git.openfabrics.org/?p=~aditr/libpvrdma.git;a=summary Reviewed-by: Jorgen Hansen <[email protected]> Reviewed-by: George Zhang <[email protected]> Reviewed-by: Aditya Sarwade <[email protected]> Reviewed-by: Bryan Tan <[email protected]> Reviewed-by: Leon Romanovsky <[email protected]> Signed-off-by: Adit Ranadive <[email protected]> Signed-off-by: Doug Ledford <[email protected]>
1 parent b1226c7 commit 29c8d9e

19 files changed

+6007
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12928,6 +12928,13 @@ S: Maintained
1292812928
F: drivers/scsi/vmw_pvscsi.c
1292912929
F: drivers/scsi/vmw_pvscsi.h
1293012930

12931+
VMWARE PVRDMA DRIVER
12932+
M: Adit Ranadive <[email protected]>
12933+
M: VMware PV-Drivers <[email protected]>
12934+
12935+
S: Maintained
12936+
F: drivers/infiniband/hw/vmw_pvrdma/
12937+
1293112938
VOLTAGE AND CURRENT REGULATOR FRAMEWORK
1293212939
M: Liam Girdwood <[email protected]>
1293312940
M: Mark Brown <[email protected]>

drivers/infiniband/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ source "drivers/infiniband/hw/mlx4/Kconfig"
7373
source "drivers/infiniband/hw/mlx5/Kconfig"
7474
source "drivers/infiniband/hw/nes/Kconfig"
7575
source "drivers/infiniband/hw/ocrdma/Kconfig"
76+
source "drivers/infiniband/hw/vmw_pvrdma/Kconfig"
7677
source "drivers/infiniband/hw/usnic/Kconfig"
7778
source "drivers/infiniband/hw/hns/Kconfig"
7879

drivers/infiniband/hw/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ obj-$(CONFIG_MLX4_INFINIBAND) += mlx4/
77
obj-$(CONFIG_MLX5_INFINIBAND) += mlx5/
88
obj-$(CONFIG_INFINIBAND_NES) += nes/
99
obj-$(CONFIG_INFINIBAND_OCRDMA) += ocrdma/
10+
obj-$(CONFIG_INFINIBAND_VMWARE_PVRDMA) += vmw_pvrdma/
1011
obj-$(CONFIG_INFINIBAND_USNIC) += usnic/
1112
obj-$(CONFIG_INFINIBAND_HFI1) += hfi1/
1213
obj-$(CONFIG_INFINIBAND_HNS) += hns/
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
config INFINIBAND_VMWARE_PVRDMA
2+
tristate "VMware Paravirtualized RDMA Driver"
3+
depends on NETDEVICES && ETHERNET && PCI && INET && VMXNET3
4+
---help---
5+
This driver provides low-level support for VMware Paravirtual
6+
RDMA adapter. It interacts with the VMXNet3 driver to provide
7+
Ethernet capabilities.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
obj-$(CONFIG_INFINIBAND_VMWARE_PVRDMA) += vmw_pvrdma.o
2+
3+
vmw_pvrdma-y := pvrdma_cmd.o pvrdma_cq.o pvrdma_doorbell.o pvrdma_main.o pvrdma_misc.o pvrdma_mr.o pvrdma_qp.o pvrdma_verbs.o

0 commit comments

Comments
 (0)