blob: 232ccb3cb08b82e04a8872cb7e918069d75d83d8 [file] [log] [blame]
Jeff Kirsher527a6262011-05-20 20:18:55 -07001#
2# Marvell device configuration
3#
4
5config NET_VENDOR_MARVELL
6 bool "Marvell devices"
Jeff Kirsher88f07482011-08-23 01:29:52 -07007 default y
Jeff Kirsher527a6262011-05-20 20:18:55 -07008 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
24 select INET_LRO
25 select PHYLIB
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
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010034config MVMDIO
35 tristate "Marvell MDIO interface support"
36 ---help---
37 This driver supports the MDIO interface found in the network
38 interface units of the Marvell EBU SoCs (Kirkwood, Orion5x,
39 Dove, Armada 370 and Armada XP).
40
41 For now, this driver is only needed for the MVNETA driver
42 (used on Armada 370 and XP), but it could be used in the
43 future by the MV643XX_ETH driver.
44
Jeff Kirsher527a6262011-05-20 20:18:55 -070045config PXA168_ETH
46 tristate "Marvell pxa168 ethernet support"
47 depends on CPU_PXA168
48 select PHYLIB
49 ---help---
50 This driver supports the pxa168 Ethernet ports.
51
52 To compile this driver as a module, choose M here. The module
53 will be called pxa168_eth.
54
55config SKGE
56 tristate "Marvell Yukon Gigabit Ethernet support"
57 depends on PCI
58 select CRC32
59 ---help---
60 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
61 and related Gigabit Ethernet adapters. It is a new smaller driver
62 with better performance and more complete ethtool support.
63
64 It does not support the link failover and network management
65 features that "portable" vendor supplied sk98lin driver does.
66
67 This driver supports adapters based on the original Yukon chipset:
68 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
69 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
70
71 It does not support the newer Yukon2 chipset: a separate driver,
72 sky2, is provided for these adapters.
73
74 To compile this driver as a module, choose M here: the module
75 will be called skge. This is recommended.
76
77config SKGE_DEBUG
78 bool "Debugging interface"
79 depends on SKGE && DEBUG_FS
80 ---help---
81 This option adds the ability to dump driver state for debugging.
82 The file /sys/kernel/debug/skge/ethX displays the state of the internal
83 transmit and receive rings.
84
85 If unsure, say N.
86
87config SKGE_GENESIS
88 bool "Support for older SysKonnect Genesis boards"
89 depends on SKGE
90 ---help---
91 This enables support for the older and uncommon SysKonnect Genesis
92 chips, which support MII via an external transceiver, instead of
93 an internal one. Disabling this option will save some memory
94 by making code smaller. If unsure say Y.
95
96config SKY2
97 tristate "Marvell Yukon 2 support"
98 depends on PCI
99 select CRC32
100 ---help---
101 This driver supports Gigabit Ethernet adapters based on the
102 Marvell Yukon 2 chipset:
103 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
104 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
105
106 There is companion driver for the older Marvell Yukon and
107 SysKonnect Genesis based adapters: skge.
108
109 To compile this driver as a module, choose M here: the module
110 will be called sky2. This is recommended.
111
112config SKY2_DEBUG
113 bool "Debugging interface"
114 depends on SKY2 && DEBUG_FS
115 ---help---
116 This option adds the ability to dump driver state for debugging.
117 The file /sys/kernel/debug/sky2/ethX displays the state of the internal
118 transmit and receive rings.
119
120 If unsure, say N.
121
122endif # NET_VENDOR_MARVELL