@@ -51,6 +51,7 @@ source "drivers/infiniband/hw/cxgb3/Kconfig"
source "drivers/infiniband/hw/cxgb4/Kconfig"
source "drivers/infiniband/hw/mlx4/Kconfig"
source "drivers/infiniband/hw/nes/Kconfig"
+source "drivers/infiniband/hw/siw/Kconfig"
source "drivers/infiniband/ulp/ipoib/Kconfig"
@@ -8,6 +8,7 @@ obj-$(CONFIG_INFINIBAND_CXGB3) += hw/cxgb3/
obj-$(CONFIG_INFINIBAND_CXGB4) += hw/cxgb4/
obj-$(CONFIG_MLX4_INFINIBAND) += hw/mlx4/
obj-$(CONFIG_INFINIBAND_NES) += hw/nes/
+obj-$(CONFIG_INFINIBAND_SOFTIWARP) += hw/siw/
obj-$(CONFIG_INFINIBAND_IPOIB) += ulp/ipoib/
obj-$(CONFIG_INFINIBAND_SRP) += ulp/srp/
obj-$(CONFIG_INFINIBAND_ISER) += ulp/iser/
new file mode 100644
@@ -0,0 +1,15 @@
+config INFINIBAND_SOFTIWARP
+ tristate "Software iWARP Stack (EXPERIMENTAL)"
+ depends on INET && EXPERIMENTAL
+ ---help---
+ Software Implementation of the iWARP RDMA protocol stack.
+
+ This driver implements the iWARP protocol stack in software
+ on top of in-kernel TCP/IP. Both user and kernel clients
+ are supported. User level applications need libsiw, libibverbs
+ and librdmacm to be installed.
+
+ Please send feedback to <bmt@zurich.ibm.com>.
+
+ To compile this driver as a module, choose M here: the module
+ will be called siw.
new file mode 100644
@@ -0,0 +1,5 @@
+obj-$(CONFIG_INFINIBAND_SOFTIWARP) += siw.o
+
+siw-y := siw_main.o siw_cm.o siw_verbs.o siw_obj.o \
+ siw_qp.o siw_qp_tx.o siw_qp_rx.o siw_cq.o siw_cm.o \
+ siw_debug.o siw_ae.o siw_mem.o