Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 NET_CORE
  22. select MII
  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 NET_CORE
  49. select MII
  50. select PHYLIB
  51. help
  52. This driver supports the ethernet MACs in the Broadcom 63xx
  53. MIPS chipset family (BCM63XX).
  54. config BNX2
  55. tristate "Broadcom NetXtremeII support"
  56. depends on PCI
  57. select CRC32
  58. select FW_LOADER
  59. ---help---
  60. This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
  61. To compile this driver as a module, choose M here: the module
  62. will be called bnx2. This is recommended.
  63. config CNIC
  64. tristate "Broadcom CNIC support"
  65. depends on PCI
  66. select BNX2
  67. select UIO
  68. ---help---
  69. This driver supports offload features of Broadcom NetXtremeII
  70. gigabit Ethernet cards.
  71. To compile this driver as a module, choose M here: the module
  72. will be called cnic. This is recommended.
  73. config SB1250_MAC
  74. tristate "SB1250 Gigabit Ethernet support"
  75. depends on SIBYTE_SB1xxx_SOC
  76. select PHYLIB
  77. ---help---
  78. This driver supports Gigabit Ethernet interfaces based on the
  79. Broadcom SiByte family of System-On-a-Chip parts. They include
  80. the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455
  81. and BCM1480 chips.
  82. To compile this driver as a module, choose M here: the module
  83. will be called sb1250-mac.
  84. config TIGON3
  85. tristate "Broadcom Tigon3 support"
  86. depends on PCI
  87. select PHYLIB
  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. endif # NET_VENDOR_BROADCOM