Skip to content

Commit

Permalink
[PATCH] Add rapidio net driver
Browse files Browse the repository at this point in the history
Adds an "Ethernet" driver which sends Ethernet packets over the standard
RapidIO messaging.  This depends on the core RIO patch for mailbox/doorbell
access.

Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Matt Porter authored and Jeff Garzik committed Sep 14, 2005
1 parent 43ec6e9 commit f89efd5
Show file tree
Hide file tree
Showing 3 changed files with 589 additions and 0 deletions.
14 changes: 14 additions & 0 deletions drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2235,6 +2235,20 @@ config ISERIES_VETH
tristate "iSeries Virtual Ethernet driver support"
depends on PPC_ISERIES

config RIONET
tristate "RapidIO Ethernet over messaging driver support"
depends on NETDEVICES && RAPIDIO

config RIONET_TX_SIZE
int "Number of outbound queue entries"
depends on RIONET
default "128"

config RIONET_RX_SIZE
int "Number of inbound queue entries"
depends on RIONET
default "128"

config FDDI
bool "FDDI driver support"
depends on (PCI || EISA)
Expand Down
1 change: 1 addition & 0 deletions drivers/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ obj-$(CONFIG_SKFP) += skfp/
obj-$(CONFIG_VIA_RHINE) += via-rhine.o
obj-$(CONFIG_VIA_VELOCITY) += via-velocity.o
obj-$(CONFIG_ADAPTEC_STARFIRE) += starfire.o
obj-$(CONFIG_RIONET) += rionet.o

#
# end link order section
Expand Down
Loading

0 comments on commit f89efd5

Please sign in to comment.