Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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 BCMGENET
  54. tristate "Broadcom GENET internal MAC support"
  55. depends on OF
  56. select MII
  57. select PHYLIB
  58. select FIXED_PHY if BCMGENET=y
  59. select BCM7XXX_PHY
  60. help
  61. This driver supports the built-in Ethernet MACs found in the
  62. Broadcom BCM7xxx Set Top Box family chipset.
  63. config BNX2
  64. tristate "Broadcom NetXtremeII support"
  65. depends on PCI
  66. select CRC32
  67. select FW_LOADER
  68. ---help---
  69. This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
  70. To compile this driver as a module, choose M here: the module
  71. will be called bnx2. This is recommended.
  72. config CNIC
  73. tristate "Broadcom CNIC support"
  74. depends on PCI
  75. select BNX2
  76. select UIO
  77. ---help---
  78. This driver supports offload features of Broadcom NetXtremeII
  79. gigabit Ethernet cards.
  80. To compile this driver as a module, choose M here: the module
  81. will be called cnic. This is recommended.
  82. config SB1250_MAC
  83. tristate "SB1250 Gigabit Ethernet support"
  84. depends on SIBYTE_SB1xxx_SOC
  85. select PHYLIB
  86. ---help---
  87. This driver supports Gigabit Ethernet interfaces based on the
  88. Broadcom SiByte family of System-On-a-Chip parts. They include
  89. the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455
  90. and BCM1480 chips.
  91. To compile this driver as a module, choose M here: the module
  92. will be called sb1250-mac.
  93. config TIGON3
  94. tristate "Broadcom Tigon3 support"
  95. depends on PCI
  96. select PHYLIB
  97. select HWMON
  98. select PTP_1588_CLOCK
  99. ---help---
  100. This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
  101. To compile this driver as a module, choose M here: the module
  102. will be called tg3. This is recommended.
  103. config BNX2X
  104. tristate "Broadcom NetXtremeII 10Gb support"
  105. depends on PCI
  106. select FW_LOADER
  107. select ZLIB_INFLATE
  108. select LIBCRC32C
  109. select MDIO
  110. ---help---
  111. This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
  112. To compile this driver as a module, choose M here: the module
  113. will be called bnx2x. This is recommended.
  114. config BNX2X_SRIOV
  115. bool "Broadcom 578xx and 57712 SR-IOV support"
  116. depends on BNX2X && PCI_IOV
  117. default y
  118. ---help---
  119. This configuration parameter enables Single Root Input Output
  120. Virtualization support in the 578xx and 57712 products. This
  121. allows for virtual function acceleration in virtual environments.
  122. config BGMAC
  123. tristate "BCMA bus GBit core support"
  124. depends on BCMA_HOST_SOC && HAS_DMA && BCM47XX
  125. select PHYLIB
  126. ---help---
  127. This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus.
  128. They can be found on BCM47xx SoCs and provide gigabit ethernet.
  129. In case of using this driver on BCM4706 it's also requires to enable
  130. BCMA_DRIVER_GMAC_CMN to make it work.
  131. config SYSTEMPORT
  132. tristate "Broadcom SYSTEMPORT internal MAC support"
  133. depends on OF
  134. select MII
  135. select PHYLIB
  136. select FIXED_PHY if SYSTEMPORT=y
  137. help
  138. This driver supports the built-in Ethernet MACs found in the
  139. Broadcom BCM7xxx Set Top Box family chipset using an internal
  140. Ethernet switch.
  141. endif # NET_VENDOR_BROADCOM