Makefiles and Kconfig changes as follows:
        Kconfig
        Makefile
        hw/amso1100/Makefile
        hw/amso1100/Kconfig
        hw/amso1100/README

Index: Kconfig
===================================================================
--- Kconfig     (revision 5632)
+++ Kconfig     (working copy)
@@ -34,7 +34,9 @@
 
 source "drivers/infiniband/hw/ehca/Kconfig"
 
+source "drivers/infiniband/hw/amso1100/Kconfig"
+
 source "drivers/infiniband/ulp/ipoib/Kconfig"
 
 source "drivers/infiniband/ulp/sdp/Kconfig"
 endmenu
Index: Makefile
===================================================================
--- Makefile    (revision 5632)
+++ Makefile    (working copy)
@@ -1,9 +1,11 @@
 obj-$(CONFIG_INFINIBAND)               += core/
 obj-$(CONFIG_IPATH_CORE)               += hw/ipath/
 obj-$(CONFIG_INFINIBAND_MTHCA)         += hw/mthca/
+obj-$(CONFIG_INFINIBAND_AMSO1100)      += hw/amso1100/
 obj-$(CONFIG_INFINIBAND_IPOIB)         += ulp/ipoib/
 obj-$(CONFIG_INFINIBAND_SDP)           += ulp/sdp/
 obj-$(CONFIG_INFINIBAND_SRP)           += ulp/srp/
 obj-$(CONFIG_KDAPL)                    += ulp/kdapl/
 obj-$(CONFIG_INFINIBAND_ISER)          += ulp/iser/
+obj-$(CONFIG_KRPING)                   += ulp/krping/
 obj-$(CONFIG_INFINIBAND_EHCA)          += hw/ehca/
Index: hw/amso1100/Kconfig
===================================================================
--- hw/amso1100/Kconfig (revision 0)
+++ hw/amso1100/Kconfig (revision 0)
@@ -0,0 +1,15 @@
+config INFINIBAND_AMSO1100
+       tristate "Ammasso 1100 HCA support"
+       depends on PCI && INET && INFINIBAND
+       ---help---
+         This is a low-level driver for the Ammasso 1100 host
+         channel adapter (HCA).
+
+config INFINIBAND_AMSO1100_DEBUG
+       bool "Verbose debugging output"
+       depends on INFINIBAND_AMSO1100
+       default n
+       ---help---
+         This option causes the amso1100 driver to produce a bunch of
+         debug messages.  Select this if you are developing the driver
+         or trying to diagnose a problem.
Index: hw/amso1100/Makefile
===================================================================
--- hw/amso1100/Makefile        (revision 0)
+++ hw/amso1100/Makefile        (revision 0)
@@ -0,0 +1,22 @@
+EXTRA_CFLAGS += -Idrivers/infiniband/include
+
+ifdef CONFIG_INFINIBAND_AMSO1100_DEBUG
+EXTRA_CFLAGS += -DC2_DEBUG
+endif
+
+obj-$(CONFIG_INFINIBAND_AMSO1100) += iw_c2.o
+
+iw_c2-y := \
+       c2.o \
+       c2_provider.o \
+       c2_rnic.o \
+       c2_alloc.o \
+       c2_mq.o \
+       c2_ae.o \
+       c2_vq.o \
+       c2_intr.o \
+       c2_cq.o \
+       c2_qp.o \
+       c2_cm.o \
+       c2_mm.o \
+       c2_pd.o
Index: hw/amso1100/README
===================================================================
--- hw/amso1100/README  (revision 0)
+++ hw/amso1100/README  (revision 0)
@@ -0,0 +1,11 @@
+This is the OpenFabrics provider driver for the 
+AMSO1100 1Gb RNIC adapter. 
+
+This adapter is available in limited quantities 
+for development purposes from Open Grid Computing.
+
+This driver requires the IWCM and CMA mods necessary
+to support iWARP.
+
+Contact [EMAIL PROTECTED] for more information.
+

_______________________________________________
openib-general mailing list
[email protected]
http://openib.org/mailman/listinfo/openib-general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to