blob: 2ccea9dd9248cebac40085704f31362c76e65b3a [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
Florian Fainellia0627f72016-11-17 11:19:13 -08008 depends on PCI || CPU_PXA168 || MV64X60 || PPC32 || PLAT_ORION || INET || COMPILE_TEST
Jeff Kirsher527a6262011-05-20 20:18:55 -07009 ---help---
Paul Gortmaker138b15e2015-06-21 16:28:02 -040010 If you have a network (Ethernet) card belonging to this class, say Y.
Jeff Kirsher527a6262011-05-20 20:18:55 -070011
12 Note that the answer to this question doesn't directly affect the
13 kernel: saying N will just cause the configurator to skip all
14 the questions about Marvell devices. If you say Y, you will be
15 asked for your specific card in the following questions.
16
17if NET_VENDOR_MARVELL
18
19config MV643XX_ETH
20 tristate "Marvell Discovery (643XX) and Orion ethernet support"
Florian Fainellia0627f72016-11-17 11:19:13 -080021 depends on (MV64X60 || PPC32 || PLAT_ORION || COMPILE_TEST) && INET
22 depends on HAS_DMA
Jeff Kirsher527a6262011-05-20 20:18:55 -070023 select PHYLIB
Florian Fainellic3a07132013-03-22 03:39:28 +000024 select MVMDIO
Jeff Kirsher527a6262011-05-20 20:18:55 -070025 ---help---
26 This driver supports the gigabit ethernet MACs in the
27 Marvell Discovery PPC/MIPS chipset family (MV643XX) and
28 in the Marvell Orion ARM SoC family.
29
30 Some boards that use the Discovery chipset are the Momenco
31 Ocelot C and Jaguar ATX and Pegasos II.
32
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010033config MVMDIO
34 tristate "Marvell MDIO interface support"
Richard Weinbergeraf1f2d72014-01-14 16:45:43 +010035 depends on HAS_IOMEM
Thomas Petazzoni2e0cbf22013-04-13 06:18:56 +000036 select PHYLIB
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010037 ---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
Florian Fainellic3a07132013-03-22 03:39:28 +000042 This driver is used by the MV643XX_ETH and MVNETA drivers.
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010043
Arnd Bergmann019ded32016-03-15 22:47:14 +010044config MVNETA_BM_ENABLE
Marcin Wojtasdc35a102016-03-14 09:39:03 +010045 tristate "Marvell Armada 38x/XP network interface BM support"
46 depends on MVNETA
Gregory CLEMENTf34dacc2016-12-01 18:03:08 +010047 depends on !64BIT
Marcin Wojtasdc35a102016-03-14 09:39:03 +010048 ---help---
49 This driver supports auxiliary block of the network
50 interface units in the Marvell ARMADA XP and ARMADA 38x SoC
51 family, which is called buffer manager.
52
53 This driver, when enabled, strictly cooperates with mvneta
54 driver and is common for all network ports of the devices,
55 even for Armada 370 SoC, which doesn't support hardware
56 buffer management.
57
Thomas Petazzonic5aff182012-08-17 14:04:28 +030058config MVNETA
Thomas Petazzoni4b636b52014-02-18 14:18:11 +010059 tristate "Marvell Armada 370/38x/XP network interface support"
Florian Fainellia0627f72016-11-17 11:19:13 -080060 depends on PLAT_ORION || COMPILE_TEST
61 depends on HAS_DMA
Thomas Petazzonic5aff182012-08-17 14:04:28 +030062 select MVMDIO
Arnd Bergmann4bed5392015-11-09 15:08:57 +010063 select FIXED_PHY
Thomas Petazzonic5aff182012-08-17 14:04:28 +030064 ---help---
65 This driver supports the network interface units in the
Thomas Petazzoni4b636b52014-02-18 14:18:11 +010066 Marvell ARMADA XP, ARMADA 370 and ARMADA 38x SoC family.
Thomas Petazzonic5aff182012-08-17 14:04:28 +030067
68 Note that this driver is distinct from the mv643xx_eth
69 driver, which should be used for the older Marvell SoCs
70 (Dove, Orion, Discovery, Kirkwood).
71
Arnd Bergmann019ded32016-03-15 22:47:14 +010072config MVNETA_BM
73 tristate
Gregory CLEMENTf34dacc2016-12-01 18:03:08 +010074 depends on !64BIT
Arnd Bergmann2073dba2016-05-11 22:13:23 +020075 default y if MVNETA=y && MVNETA_BM_ENABLE!=n
Arnd Bergmann019ded32016-03-15 22:47:14 +010076 default MVNETA_BM_ENABLE
77 select HWBM
78 help
79 MVNETA_BM must not be 'm' if MVNETA=y, so this symbol ensures
80 that all dependencies are met.
81
Marcin Wojtas3f518502014-07-10 16:52:13 -030082config MVPP2
83 tristate "Marvell Armada 375 network interface support"
Florian Fainellia0627f72016-11-17 11:19:13 -080084 depends on MACH_ARMADA_375 || COMPILE_TEST
85 depends on HAS_DMA
Arnd Bergmann06b37b62016-11-22 15:21:22 +010086 depends on !64BIT
Marcin Wojtas3f518502014-07-10 16:52:13 -030087 select MVMDIO
88 ---help---
89 This driver supports the network interface units in the
90 Marvell ARMADA 375 SoC.
91
Jeff Kirsher527a6262011-05-20 20:18:55 -070092config PXA168_ETH
93 tristate "Marvell pxa168 ethernet support"
Geert Uytterhoeven3b3d1362014-10-09 16:15:42 +020094 depends on HAS_IOMEM && HAS_DMA
95 depends on CPU_PXA168 || ARCH_BERLIN || COMPILE_TEST
Jeff Kirsher527a6262011-05-20 20:18:55 -070096 select PHYLIB
97 ---help---
98 This driver supports the pxa168 Ethernet ports.
99
100 To compile this driver as a module, choose M here. The module
101 will be called pxa168_eth.
102
103config SKGE
104 tristate "Marvell Yukon Gigabit Ethernet support"
105 depends on PCI
106 select CRC32
107 ---help---
108 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
109 and related Gigabit Ethernet adapters. It is a new smaller driver
110 with better performance and more complete ethtool support.
111
112 It does not support the link failover and network management
113 features that "portable" vendor supplied sk98lin driver does.
114
115 This driver supports adapters based on the original Yukon chipset:
116 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
117 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
118
119 It does not support the newer Yukon2 chipset: a separate driver,
120 sky2, is provided for these adapters.
121
122 To compile this driver as a module, choose M here: the module
123 will be called skge. This is recommended.
124
125config SKGE_DEBUG
126 bool "Debugging interface"
127 depends on SKGE && DEBUG_FS
128 ---help---
129 This option adds the ability to dump driver state for debugging.
130 The file /sys/kernel/debug/skge/ethX displays the state of the internal
131 transmit and receive rings.
132
133 If unsure, say N.
134
135config SKGE_GENESIS
136 bool "Support for older SysKonnect Genesis boards"
137 depends on SKGE
138 ---help---
139 This enables support for the older and uncommon SysKonnect Genesis
140 chips, which support MII via an external transceiver, instead of
141 an internal one. Disabling this option will save some memory
142 by making code smaller. If unsure say Y.
143
144config SKY2
145 tristate "Marvell Yukon 2 support"
146 depends on PCI
147 select CRC32
148 ---help---
149 This driver supports Gigabit Ethernet adapters based on the
150 Marvell Yukon 2 chipset:
151 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
152 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
153
154 There is companion driver for the older Marvell Yukon and
155 SysKonnect Genesis based adapters: skge.
156
157 To compile this driver as a module, choose M here: the module
158 will be called sky2. This is recommended.
159
160config SKY2_DEBUG
161 bool "Debugging interface"
162 depends on SKY2 && DEBUG_FS
163 ---help---
164 This option adds the ability to dump driver state for debugging.
165 The file /sys/kernel/debug/sky2/ethX displays the state of the internal
166 transmit and receive rings.
167
168 If unsure, say N.
169
170endif # NET_VENDOR_MARVELL