1# 2# Marvell device configuration 3# 4 5config NET_VENDOR_MARVELL 6 bool "Marvell devices" 7 default y 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 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" 21 depends on (MV64X60 || PPC32 || PLAT_ORION) && INET 22 select PHYLIB 23 select MVMDIO 24 ---help--- 25 This driver supports the gigabit ethernet MACs in the 26 Marvell Discovery PPC/MIPS chipset family (MV643XX) and 27 in the Marvell Orion ARM SoC family. 28 29 Some boards that use the Discovery chipset are the Momenco 30 Ocelot C and Jaguar ATX and Pegasos II. 31 32config MVMDIO 33 tristate "Marvell MDIO interface support" 34 depends on HAS_IOMEM 35 select PHYLIB 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 This driver is used by the MV643XX_ETH and MVNETA drivers. 42 43config MVNETA_BM_ENABLE 44 tristate "Marvell Armada 38x/XP network interface BM support" 45 depends on MVNETA 46 ---help--- 47 This driver supports auxiliary block of the network 48 interface units in the Marvell ARMADA XP and ARMADA 38x SoC 49 family, which is called buffer manager. 50 51 This driver, when enabled, strictly cooperates with mvneta 52 driver and is common for all network ports of the devices, 53 even for Armada 370 SoC, which doesn't support hardware 54 buffer management. 55 56config MVNETA 57 tristate "Marvell Armada 370/38x/XP network interface support" 58 depends on PLAT_ORION 59 select MVMDIO 60 select FIXED_PHY 61 ---help--- 62 This driver supports the network interface units in the 63 Marvell ARMADA XP, ARMADA 370 and ARMADA 38x SoC family. 64 65 Note that this driver is distinct from the mv643xx_eth 66 driver, which should be used for the older Marvell SoCs 67 (Dove, Orion, Discovery, Kirkwood). 68 69config MVNETA_BM 70 tristate 71 default y if MVNETA=y && MVNETA_BM_ENABLE!=n 72 default MVNETA_BM_ENABLE 73 select HWBM 74 help 75 MVNETA_BM must not be 'm' if MVNETA=y, so this symbol ensures 76 that all dependencies are met. 77 78config MVPP2 79 tristate "Marvell Armada 375 network interface support" 80 depends on MACH_ARMADA_375 81 select MVMDIO 82 ---help--- 83 This driver supports the network interface units in the 84 Marvell ARMADA 375 SoC. 85 86config PXA168_ETH 87 tristate "Marvell pxa168 ethernet support" 88 depends on HAS_IOMEM && HAS_DMA 89 depends on CPU_PXA168 || ARCH_BERLIN || COMPILE_TEST 90 select PHYLIB 91 ---help--- 92 This driver supports the pxa168 Ethernet ports. 93 94 To compile this driver as a module, choose M here. The module 95 will be called pxa168_eth. 96 97config SKGE 98 tristate "Marvell Yukon Gigabit Ethernet support" 99 depends on PCI 100 select CRC32 101 ---help--- 102 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx 103 and related Gigabit Ethernet adapters. It is a new smaller driver 104 with better performance and more complete ethtool support. 105 106 It does not support the link failover and network management 107 features that "portable" vendor supplied sk98lin driver does. 108 109 This driver supports adapters based on the original Yukon chipset: 110 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T, 111 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872. 112 113 It does not support the newer Yukon2 chipset: a separate driver, 114 sky2, is provided for these adapters. 115 116 To compile this driver as a module, choose M here: the module 117 will be called skge. This is recommended. 118 119config SKGE_DEBUG 120 bool "Debugging interface" 121 depends on SKGE && DEBUG_FS 122 ---help--- 123 This option adds the ability to dump driver state for debugging. 124 The file /sys/kernel/debug/skge/ethX displays the state of the internal 125 transmit and receive rings. 126 127 If unsure, say N. 128 129config SKGE_GENESIS 130 bool "Support for older SysKonnect Genesis boards" 131 depends on SKGE 132 ---help--- 133 This enables support for the older and uncommon SysKonnect Genesis 134 chips, which support MII via an external transceiver, instead of 135 an internal one. Disabling this option will save some memory 136 by making code smaller. If unsure say Y. 137 138config SKY2 139 tristate "Marvell Yukon 2 support" 140 depends on PCI 141 select CRC32 142 ---help--- 143 This driver supports Gigabit Ethernet adapters based on the 144 Marvell Yukon 2 chipset: 145 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/ 146 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21 147 148 There is companion driver for the older Marvell Yukon and 149 SysKonnect Genesis based adapters: skge. 150 151 To compile this driver as a module, choose M here: the module 152 will be called sky2. This is recommended. 153 154config SKY2_DEBUG 155 bool "Debugging interface" 156 depends on SKY2 && DEBUG_FS 157 ---help--- 158 This option adds the ability to dump driver state for debugging. 159 The file /sys/kernel/debug/sky2/ethX displays the state of the internal 160 transmit and receive rings. 161 162 If unsure, say N. 163 164endif # NET_VENDOR_MARVELL 165