Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f98b1a2 authored by Ganesan Ramalingam's avatar Ganesan Ramalingam Committed by Greg Kroah-Hartman
Browse files

Staging: Netlogic XLR/XLS GMAC driver



Add support for the Network Accelerator Engine on Netlogic XLR/XLS
MIPS SoCs. The XLR/XLS NAE blocks can be configured as one 10G
interface or four 1G interfaces. This driver supports blocks
with 1G ports.

Signed-off-by: default avatarGanesan Ramalingam <ganesanr@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 59691367
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -140,4 +140,6 @@ source "drivers/staging/zcache/Kconfig"

source "drivers/staging/goldfish/Kconfig"

source "drivers/staging/netlogic/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ obj-$(CONFIG_RTS5139) += rts5139/
obj-$(CONFIG_TRANZPORT)		+= frontier/
obj-$(CONFIG_IDE_PHISON)	+= phison/
obj-$(CONFIG_LINE6_USB)		+= line6/
obj-$(CONFIG_NETLOGIC_XLR_NET)	+= netlogic/
obj-$(CONFIG_USB_SERIAL_QUATECH2)	+= serqt_usb2/
obj-$(CONFIG_OCTEON_ETHERNET)	+= octeon/
obj-$(CONFIG_VT6655)		+= vt6655/
+7 −0
Original line number Diff line number Diff line
config NETLOGIC_XLR_NET
	tristate "Netlogic XLR/XLS network device"
	depends on CPU_XLR
	select PHYLIB
	---help---
	This driver support Netlogic XLR/XLS on chip gigabit
	Ethernet.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_NETLOGIC_XLR_NET) += xlr_net.o platform_net.o
+12 −0
Original line number Diff line number Diff line
* Implementing 64bit stat counter in software
* All memory allocation should be changed to DMA allocations
* All the netdev should be linked to single pdev as parent
* Changing comments in to linux standred format

Please send patches
To:
Ganesan Ramalingam <ganesanr@broadcom.com>
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc:
Jayachandran Chandrashekaran Nair <jchandra@broadcom.com>
Loading