Skip to content

Commit

Permalink
Staging: Add SBE 2T3E3 WAN driver
Browse files Browse the repository at this point in the history
This is a driver for SBE Inc.'s dual port T3/E3 WAN cards. Based on
their original GPLed driver.

The original driver tarball is now accessible at
http://userweb.kernel.org/~chris/SBE_2T3_Linux_2.0c.tgz

It needs at least a new generic HDLC setup code (not yet written) before
moving to drivers/net/wan.

Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Krzysztof Halasa authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent b0b5763 commit 921a86e
Show file tree
Hide file tree
Showing 18 changed files with 4,294 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,7 @@ source "drivers/staging/quickstart/Kconfig"

source "drivers/staging/westbridge/Kconfig"

source "drivers/staging/sbe-2t3e3/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
1 change: 1 addition & 0 deletions drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ obj-$(CONFIG_SOLO6X10) += solo6x10/
obj-$(CONFIG_TIDSPBRIDGE) += tidspbridge/
obj-$(CONFIG_ACPI_QUICKSTART) += quickstart/
obj-$(CONFIG_WESTBRIDGE_ASTORIA) += westbridge/astoria/
obj-$(CONFIG_SBE_2T3E3) += sbe-2t3e3/
894 changes: 894 additions & 0 deletions drivers/staging/sbe-2t3e3/2t3e3.h

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions drivers/staging/sbe-2t3e3/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
config SBE_2T3E3
tristate "SBE wanPMC-2T3E3 support"
depends on HDLC && PCI
help
Driver for wanPMC-2T3E3 cards by SBE Inc.

If you have such a card, say Y here and see
<http://www.kernel.org/pub/linux/utils/net/hdlc/>.

To compile this as a module, choose M here: the
module will be called sbe-2t3e3.

If unsure, say N.
4 changes: 4 additions & 0 deletions drivers/staging/sbe-2t3e3/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
obj-$(CONFIG_SBE_2T3E3) += sbe-2t3e3.o

sbe-2t3e3-objs := module.o netdev.o maps.o \
main.o cpld.o intr.o ctrl.o io.o dc.o exar7250.o exar7300.o
6 changes: 6 additions & 0 deletions drivers/staging/sbe-2t3e3/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TODO:
- additional cleaning and tests
- wait for the new configuration interface in generic HDLC layer and
when available, convert the driver to it

Please send patches to Krzysztof Halasa <khc@pm.waw.pl>.
Loading

0 comments on commit 921a86e

Please sign in to comment.