Skip to content

Commit

Permalink
RDMA/nes: Add a driver for NetEffect RNICs
Browse files Browse the repository at this point in the history
Add a standard NIC and RDMA/iWARP driver for NetEffect 1/10Gb ethernet adapters.

Signed-off-by: Glenn Streiff <[email protected]>
Signed-off-by: Roland Dreier <[email protected]>
  • Loading branch information
Glenn Streiff authored and Roland Dreier committed Feb 5, 2008
1 parent 2c78853 commit 3c2d774
Show file tree
Hide file tree
Showing 17 changed files with 16,561 additions and 1 deletion.
10 changes: 10 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2681,6 +2681,16 @@ M: [email protected]
L: [email protected]
S: Maintained

NETEFFECT IWARP RNIC DRIVER (IW_NES)
P: Faisal Latif
M: [email protected]
P: Glenn Streiff
M: [email protected]
L: [email protected]
W: http://www.neteffect.com
S: Supported
F: drivers/infiniband/hw/nes/

NETEM NETWORK EMULATOR
P: Stephen Hemminger
M: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion drivers/infiniband/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ source "drivers/infiniband/hw/ipath/Kconfig"
source "drivers/infiniband/hw/ehca/Kconfig"
source "drivers/infiniband/hw/amso1100/Kconfig"
source "drivers/infiniband/hw/cxgb3/Kconfig"

source "drivers/infiniband/hw/mlx4/Kconfig"
source "drivers/infiniband/hw/nes/Kconfig"

source "drivers/infiniband/ulp/ipoib/Kconfig"

Expand Down
1 change: 1 addition & 0 deletions drivers/infiniband/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ obj-$(CONFIG_INFINIBAND_EHCA) += hw/ehca/
obj-$(CONFIG_INFINIBAND_AMSO1100) += hw/amso1100/
obj-$(CONFIG_INFINIBAND_CXGB3) += hw/cxgb3/
obj-$(CONFIG_MLX4_INFINIBAND) += hw/mlx4/
obj-$(CONFIG_INFINIBAND_NES) += hw/nes/
obj-$(CONFIG_INFINIBAND_IPOIB) += ulp/ipoib/
obj-$(CONFIG_INFINIBAND_SRP) += ulp/srp/
obj-$(CONFIG_INFINIBAND_ISER) += ulp/iser/
16 changes: 16 additions & 0 deletions drivers/infiniband/hw/nes/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
config INFINIBAND_NES
tristate "NetEffect RNIC Driver"
depends on PCI && INET && INFINIBAND
select LIBCRC32C
---help---
This is a low-level driver for NetEffect RDMA enabled
Network Interface Cards (RNIC).

config INFINIBAND_NES_DEBUG
bool "Verbose debugging output"
depends on INFINIBAND_NES
default n
---help---
This option causes the NetEffect RNIC driver to produce debug
messages. Select this if you are developing the driver
or trying to diagnose a problem.
3 changes: 3 additions & 0 deletions drivers/infiniband/hw/nes/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
obj-$(CONFIG_INFINIBAND_NES) += iw_nes.o

iw_nes-objs := nes.o nes_hw.o nes_nic.o nes_utils.o nes_verbs.o nes_cm.o
Loading

0 comments on commit 3c2d774

Please sign in to comment.