Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. ---help---
  87. This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
  88. To compile this driver as a module, choose M here: the module
  89. will be called tg3. This is recommended.
  90. config BNX2X
  91. tristate "Broadcom NetXtremeII 10Gb support"
  92. depends on PCI
  93. select FW_LOADER
  94. select ZLIB_INFLATE
  95. select LIBCRC32C
  96. select MDIO
  97. ---help---
  98. This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
  99. To compile this driver as a module, choose M here: the module
  100. will be called bnx2x. This is recommended.
  101. endif # NET_VENDOR_BROADCOM