phy,exynos: Add dependency on HAS_IOMEM
[linux-2.6-block.git] / drivers / net / ethernet / marvell / Kconfig
CommitLineData
527a6266
JK
1#
2# Marvell device configuration
3#
4
5config NET_VENDOR_MARVELL
6 bool "Marvell devices"
88f07484 7 default y
527a6266
JK
8 depends on PCI || CPU_PXA168 || MV64X60 || PPC32 || PLAT_ORION || INET
9 ---help---
10 If you have a network (Ethernet) card belonging to this class, say Y
11 and read the Ethernet-HOWTO, available from
12 <http://www.tldp.org/docs.html#howto>.
13
14 Note that the answer to this question doesn't directly affect the
15 kernel: saying N will just cause the configurator to skip all
16 the questions about Marvell devices. If you say Y, you will be
17 asked for your specific card in the following questions.
18
19if NET_VENDOR_MARVELL
20
21config MV643XX_ETH
22 tristate "Marvell Discovery (643XX) and Orion ethernet support"
23 depends on (MV64X60 || PPC32 || PLAT_ORION) && INET
527a6266 24 select PHYLIB
c3a07134 25 select MVMDIO
527a6266
JK
26 ---help---
27 This driver supports the gigabit ethernet MACs in the
28 Marvell Discovery PPC/MIPS chipset family (MV643XX) and
29 in the Marvell Orion ARM SoC family.
30
31 Some boards that use the Discovery chipset are the Momenco
32 Ocelot C and Jaguar ATX and Pegasos II.
33
fc8f5ade
TP
34config MVMDIO
35 tristate "Marvell MDIO interface support"
2e0cbf2c 36 select PHYLIB
fc8f5ade
TP
37 ---help---
38 This driver supports the MDIO interface found in the network
39 interface units of the Marvell EBU SoCs (Kirkwood, Orion5x,
40 Dove, Armada 370 and Armada XP).
41
c3a07134 42 This driver is used by the MV643XX_ETH and MVNETA drivers.
fc8f5ade 43
c5aff182
TP
44config MVNETA
45 tristate "Marvell Armada 370/XP network interface support"
46 depends on MACH_ARMADA_370_XP
c5aff182
TP
47 select MVMDIO
48 ---help---
49 This driver supports the network interface units in the
50 Marvell ARMADA XP and ARMADA 370 SoC family.
51
52 Note that this driver is distinct from the mv643xx_eth
53 driver, which should be used for the older Marvell SoCs
54 (Dove, Orion, Discovery, Kirkwood).
55
527a6266
JK
56config PXA168_ETH
57 tristate "Marvell pxa168 ethernet support"
58 depends on CPU_PXA168
59 select PHYLIB
60 ---help---
61 This driver supports the pxa168 Ethernet ports.
62
63 To compile this driver as a module, choose M here. The module
64 will be called pxa168_eth.
65
66config SKGE
67 tristate "Marvell Yukon Gigabit Ethernet support"
68 depends on PCI
69 select CRC32
70 ---help---
71 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
72 and related Gigabit Ethernet adapters. It is a new smaller driver
73 with better performance and more complete ethtool support.
74
75 It does not support the link failover and network management
76 features that "portable" vendor supplied sk98lin driver does.
77
78 This driver supports adapters based on the original Yukon chipset:
79 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
80 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
81
82 It does not support the newer Yukon2 chipset: a separate driver,
83 sky2, is provided for these adapters.
84
85 To compile this driver as a module, choose M here: the module
86 will be called skge. This is recommended.
87
88config SKGE_DEBUG
89 bool "Debugging interface"
90 depends on SKGE && DEBUG_FS
91 ---help---
92 This option adds the ability to dump driver state for debugging.
93 The file /sys/kernel/debug/skge/ethX displays the state of the internal
94 transmit and receive rings.
95
96 If unsure, say N.
97
98config SKGE_GENESIS
99 bool "Support for older SysKonnect Genesis boards"
100 depends on SKGE
101 ---help---
102 This enables support for the older and uncommon SysKonnect Genesis
103 chips, which support MII via an external transceiver, instead of
104 an internal one. Disabling this option will save some memory
105 by making code smaller. If unsure say Y.
106
107config SKY2
108 tristate "Marvell Yukon 2 support"
109 depends on PCI
110 select CRC32
111 ---help---
112 This driver supports Gigabit Ethernet adapters based on the
113 Marvell Yukon 2 chipset:
114 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
115 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
116
117 There is companion driver for the older Marvell Yukon and
118 SysKonnect Genesis based adapters: skge.
119
120 To compile this driver as a module, choose M here: the module
121 will be called sky2. This is recommended.
122
123config SKY2_DEBUG
124 bool "Debugging interface"
125 depends on SKY2 && DEBUG_FS
126 ---help---
127 This option adds the ability to dump driver state for debugging.
128 The file /sys/kernel/debug/sky2/ethX displays the state of the internal
129 transmit and receive rings.
130
131 If unsure, say N.
132
133endif # NET_VENDOR_MARVELL