Kconfig 3.9 KB

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