7a3c66e2d3
Implements the KS8695 ethernet device (ks8695net). This driver is only of use on the KS8695 which is an ARM9 based SoC. The documentation on this SoC is sparse and poor, with barely a register description and a rough outline of how the ethernet works, this driver was therefore written with strong reference to the Micrel supplied Linux 2.6.9 port, and to Andrew Victor's ks8695eth driver. Signed-off-by: Daniel Silverstone <dsilvers@simtec.co.uk> Signed-off-by: Vincent Sanders <vince@simtec.co.uk> Acked-by: Ben Dooks <ben@simtec.co.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
#
|
|
# Acorn Network device configuration
|
|
# These are for Acorn's Expansion card network interfaces
|
|
#
|
|
config ARM_AM79C961A
|
|
bool "ARM EBSA110 AM79C961A support"
|
|
depends on ARM && ARCH_EBSA110
|
|
select CRC32
|
|
help
|
|
If you wish to compile a kernel for the EBSA-110, then you should
|
|
always answer Y to this.
|
|
|
|
config ARM_ETHER1
|
|
tristate "Acorn Ether1 support"
|
|
depends on ARM && ARCH_ACORN
|
|
help
|
|
If you have an Acorn system with one of these (AKA25) network cards,
|
|
you should say Y to this option if you wish to use it with Linux.
|
|
|
|
config ARM_ETHER3
|
|
tristate "Acorn/ANT Ether3 support"
|
|
depends on ARM && ARCH_ACORN
|
|
help
|
|
If you have an Acorn system with one of these network cards, you
|
|
should say Y to this option if you wish to use it with Linux.
|
|
|
|
config ARM_ETHERH
|
|
tristate "I-cubed EtherH/ANT EtherM support"
|
|
depends on ARM && ARCH_ACORN
|
|
select CRC32
|
|
help
|
|
If you have an Acorn system with one of these network cards, you
|
|
should say Y to this option if you wish to use it with Linux.
|
|
|
|
config ARM_AT91_ETHER
|
|
tristate "AT91RM9200 Ethernet support"
|
|
depends on ARM && ARCH_AT91RM9200
|
|
select MII
|
|
help
|
|
If you wish to compile a kernel for the AT91RM9200 and enable
|
|
ethernet support, then you should always answer Y to this.
|
|
|
|
config ARM_KS8695_ETHER
|
|
tristate "KS8695 Ethernet support"
|
|
depends on ARM && ARCH_KS8695
|
|
select MII
|
|
help
|
|
If you wish to compile a kernel for the KS8695 and want to
|
|
use the internal ethernet then you should answer Y to this.
|
|
|
|
config EP93XX_ETH
|
|
tristate "EP93xx Ethernet support"
|
|
depends on ARM && ARCH_EP93XX
|
|
select MII
|
|
help
|
|
This is a driver for the ethernet hardware included in EP93xx CPUs.
|
|
Say Y if you are building a kernel for EP93xx based devices.
|
|
|
|
config IXP4XX_ETH
|
|
tristate "Intel IXP4xx Ethernet support"
|
|
depends on ARM && ARCH_IXP4XX && IXP4XX_NPE && IXP4XX_QMGR
|
|
select MII
|
|
help
|
|
Say Y here if you want to use built-in Ethernet ports
|
|
on IXP4xx processor.
|