Kconfig 4.4 KB

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