Kconfig 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. config B43
  2. tristate "Broadcom 43xx wireless support (mac80211 stack)"
  3. depends on (BCMA_POSSIBLE || SSB_POSSIBLE) && MAC80211 && HAS_DMA
  4. select BCMA if B43_BCMA
  5. select SSB if B43_SSB
  6. select FW_LOADER
  7. ---help---
  8. b43 is a driver for the Broadcom 43xx series wireless devices.
  9. Check "lspci" for something like
  10. "Broadcom Corporation BCM43XX 802.11 Wireless LAN Controller"
  11. to determine whether you own such a device.
  12. This driver supports the new BCM43xx IEEE 802.11G devices, but not
  13. the old IEEE 802.11B devices. Old devices are supported by
  14. the b43legacy driver.
  15. Note that this has nothing to do with the standard that your AccessPoint
  16. supports (A, B, G or a combination).
  17. IEEE 802.11G devices can talk to IEEE 802.11B AccessPoints.
  18. It is safe to include both b43 and b43legacy as the underlying glue
  19. layer will automatically load the correct version for your device.
  20. This driver uses V4 firmware, which must be installed separately using
  21. b43-fwcutter.
  22. This driver can be built as a module (recommended) that will be called "b43".
  23. If unsure, say M.
  24. config B43_BCMA
  25. bool
  26. config B43_SSB
  27. bool
  28. choice
  29. prompt "Supported bus types"
  30. depends on B43
  31. default B43_BUSES_BCMA_AND_SSB
  32. config B43_BUSES_BCMA_AND_SSB
  33. bool "BCMA and SSB"
  34. depends on BCMA_POSSIBLE && SSB_POSSIBLE
  35. select B43_BCMA
  36. select B43_SSB
  37. config B43_BUSES_BCMA
  38. bool "BCMA only"
  39. depends on BCMA_POSSIBLE
  40. select B43_BCMA
  41. config B43_BUSES_SSB
  42. bool "SSB only"
  43. depends on SSB_POSSIBLE
  44. select B43_SSB
  45. endchoice
  46. # Auto-select SSB PCI-HOST support, if possible
  47. config B43_PCI_AUTOSELECT
  48. bool
  49. depends on B43 && SSB_PCIHOST_POSSIBLE
  50. select SSB_PCIHOST
  51. select SSB_B43_PCI_BRIDGE
  52. default y
  53. # Auto-select SSB PCICORE driver, if possible
  54. config B43_PCICORE_AUTOSELECT
  55. bool
  56. depends on B43 && SSB_DRIVER_PCICORE_POSSIBLE
  57. select SSB_DRIVER_PCICORE
  58. default y
  59. config B43_SDIO
  60. bool "Broadcom 43xx SDIO device support"
  61. depends on B43 && B43_SSB && SSB_SDIOHOST_POSSIBLE
  62. select SSB_SDIOHOST
  63. ---help---
  64. Broadcom 43xx device support for Soft-MAC SDIO devices.
  65. With this config option you can drive Soft-MAC b43 cards with a
  66. Secure Digital I/O interface.
  67. This includes the WLAN daughter card found on the Nintendo Wii
  68. video game console.
  69. Note that this does not support Broadcom 43xx Full-MAC devices.
  70. It's safe to select Y here, even if you don't have a B43 SDIO device.
  71. If unsure, say N.
  72. #Data transfers to the device via PIO. We want it as a fallback even
  73. # if we can do DMA.
  74. config B43_BCMA_PIO
  75. bool
  76. depends on B43 && B43_BCMA
  77. select BCMA_BLOCKIO
  78. default y
  79. config B43_PIO
  80. bool
  81. depends on B43 && B43_SSB
  82. select SSB_BLOCKIO
  83. default y
  84. config B43_PHY_G
  85. bool "Support for G-PHY (802.11g) devices"
  86. depends on B43 && B43_SSB
  87. default y
  88. ---help---
  89. This PHY type can be found in the following chipsets:
  90. PCI: BCM4306, BCM4311, BCM4318
  91. SoC: BCM4712, BCM5352E
  92. config B43_PHY_N
  93. bool "Support for N-PHY (the main 802.11n series) devices"
  94. depends on B43
  95. default y
  96. ---help---
  97. This PHY type can be found in the following chipsets:
  98. PCI: BCM4321, BCM4322,
  99. BCM43222, BCM43224, BCM43225,
  100. BCM43131, BCM43217, BCM43227, BCM43228
  101. SoC: BCM4716, BCM4717, BCM4718, BCM5356, BCM5357, BCM5358
  102. config B43_PHY_LP
  103. bool "Support for LP-PHY (low-power 802.11g) devices"
  104. depends on B43 && B43_SSB
  105. default y
  106. ---help---
  107. The LP-PHY is a low-power PHY built into some notebooks
  108. and embedded devices. It supports 802.11a/b/g
  109. (802.11a support is optional, and currently disabled).
  110. config B43_PHY_HT
  111. bool "Support for HT-PHY (high throughput 802.11n) devices"
  112. depends on B43 && B43_BCMA
  113. default y
  114. ---help---
  115. This PHY type with 3x3:3 MIMO can be found in the BCM4331 PCI chipset.
  116. config B43_PHY_LCN
  117. bool "Support for LCN-PHY devices (BROKEN)"
  118. depends on B43 && BROKEN
  119. ---help---
  120. Support for the LCN-PHY.
  121. Say N, this is BROKEN and crashes driver.
  122. config B43_PHY_AC
  123. bool "Support for AC-PHY (802.11ac) devices (BROKEN)"
  124. depends on B43 && B43_BCMA && BROKEN
  125. ---help---
  126. This PHY type can be found in the following chipsets:
  127. PCI: BCM4352, BCM4360
  128. Say N, this is BROKEN and crashes driver.
  129. # This config option automatically enables b43 LEDS support,
  130. # if it's possible.
  131. config B43_LEDS
  132. bool
  133. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  134. default y
  135. # This config option automatically enables b43 HW-RNG support,
  136. # if the HW-RNG core is enabled.
  137. config B43_HWRNG
  138. bool
  139. depends on B43 && (HW_RANDOM = y || HW_RANDOM = B43)
  140. default y
  141. config B43_DEBUG
  142. bool "Broadcom 43xx debugging"
  143. depends on B43
  144. ---help---
  145. Broadcom 43xx debugging.
  146. This adds additional runtime sanity checks and statistics to the driver.
  147. These checks and statistics might be expensive and hurt the runtime
  148. performance of your system.
  149. This also adds the b43 debugfs interface.
  150. Do not enable this, unless you are debugging the driver.
  151. Say N, if you are a distributor or user building a release kernel
  152. for production use.
  153. Only say Y, if you are debugging a problem in the b43 driver sourcecode.