Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #
  2. # Broadcom device configuration
  3. #
  4. config NET_VENDOR_BROADCOM
  5. bool "Broadcom devices"
  6. default y
  7. depends on (SSB_POSSIBLE && HAS_DMA) || PCI || BCM63XX || \
  8. SIBYTE_SB1xxx_SOC
  9. ---help---
  10. If you have a network (Ethernet) chipset belonging to this class,
  11. say Y.
  12. Note that the answer to this question does not directly affect
  13. the kernel: saying N will just case the configurator to skip all
  14. the questions regarding AMD chipsets. If you say Y, you will be asked
  15. for your specific chipset/driver in the following questions.
  16. if NET_VENDOR_BROADCOM
  17. config B44
  18. tristate "Broadcom 440x/47xx ethernet support"
  19. depends on SSB_POSSIBLE && HAS_DMA
  20. select SSB
  21. select MII
  22. select PHYLIB
  23. ---help---
  24. If you have a network (Ethernet) controller of this type, say Y
  25. or M and read the Ethernet-HOWTO, available from
  26. <http://www.tldp.org/docs.html#howto>.
  27. To compile this driver as a module, choose M here. The module
  28. will be called b44.
  29. # Auto-select SSB PCI-HOST support, if possible
  30. config B44_PCI_AUTOSELECT
  31. bool
  32. depends on B44 && SSB_PCIHOST_POSSIBLE
  33. select SSB_PCIHOST
  34. default y
  35. # Auto-select SSB PCICORE driver, if possible
  36. config B44_PCICORE_AUTOSELECT
  37. bool
  38. depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE
  39. select SSB_DRIVER_PCICORE
  40. default y
  41. config B44_PCI
  42. bool
  43. depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT
  44. default y
  45. config BCM63XX_ENET
  46. tristate "Broadcom 63xx internal mac support"
  47. depends on BCM63XX
  48. select MII
  49. select PHYLIB
  50. help
  51. This driver supports the ethernet MACs in the Broadcom 63xx
  52. MIPS chipset family (BCM63XX).
  53. config BNX2
  54. tristate "Broadcom NetXtremeII support"
  55. depends on PCI
  56. select CRC32
  57. select FW_LOADER
  58. ---help---
  59. This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
  60. To compile this driver as a module, choose M here: the module
  61. will be called bnx2. This is recommended.
  62. config CNIC
  63. tristate "Broadcom CNIC support"
  64. depends on PCI
  65. select BNX2
  66. select UIO
  67. ---help---
  68. This driver supports offload features of Broadcom NetXtremeII
  69. gigabit Ethernet cards.
  70. To compile this driver as a module, choose M here: the module
  71. will be called cnic. This is recommended.
  72. config SB1250_MAC
  73. tristate "SB1250 Gigabit Ethernet support"
  74. depends on SIBYTE_SB1xxx_SOC
  75. select PHYLIB
  76. ---help---
  77. This driver supports Gigabit Ethernet interfaces based on the
  78. Broadcom SiByte family of System-On-a-Chip parts. They include
  79. the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455
  80. and BCM1480 chips.
  81. To compile this driver as a module, choose M here: the module
  82. will be called sb1250-mac.
  83. config TIGON3
  84. tristate "Broadcom Tigon3 support"
  85. depends on PCI
  86. select PHYLIB
  87. select HWMON
  88. select PTP_1588_CLOCK
  89. ---help---
  90. This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
  91. To compile this driver as a module, choose M here: the module
  92. will be called tg3. This is recommended.
  93. config BNX2X
  94. tristate "Broadcom NetXtremeII 10Gb support"
  95. depends on PCI
  96. select FW_LOADER
  97. select ZLIB_INFLATE
  98. select LIBCRC32C
  99. select MDIO
  100. ---help---
  101. This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
  102. To compile this driver as a module, choose M here: the module
  103. will be called bnx2x. This is recommended.
  104. config BNX2X_SRIOV
  105. bool "Broadcom 578xx and 57712 SR-IOV support"
  106. depends on BNX2X && PCI_IOV
  107. default y
  108. ---help---
  109. This configuration parameter enables Single Root Input Output
  110. Virtualization support in the 578xx and 57712 products. This
  111. allows for virtual function acceleration in virtual environments.
  112. config BGMAC
  113. tristate "BCMA bus GBit core support"
  114. depends on BCMA_HOST_SOC && HAS_DMA && BCM47XX
  115. select PHYLIB
  116. ---help---
  117. This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus.
  118. They can be found on BCM47xx SoCs and provide gigabit ethernet.
  119. In case of using this driver on BCM4706 it's also requires to enable
  120. BCMA_DRIVER_GMAC_CMN to make it work.
  121. endif # NET_VENDOR_BROADCOM