Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. config B43
  2. tristate "Broadcom 43xx wireless support (mac80211 stack)"
  3. depends on SSB_POSSIBLE && MAC80211 && HAS_DMA
  4. select SSB
  5. select FW_LOADER
  6. ---help---
  7. b43 is a driver for the Broadcom 43xx series wireless devices.
  8. Check "lspci" for something like
  9. "Broadcom Corporation BCM43XX 802.11 Wireless LAN Controller"
  10. to determine whether you own such a device.
  11. This driver supports the new BCM43xx IEEE 802.11G devices, but not
  12. the old IEEE 802.11B devices. Old devices are supported by
  13. the b43legacy driver.
  14. Note that this has nothing to do with the standard that your AccessPoint
  15. supports (A, B, G or a combination).
  16. IEEE 802.11G devices can talk to IEEE 802.11B AccessPoints.
  17. It is safe to include both b43 and b43legacy as the underlying glue
  18. layer will automatically load the correct version for your device.
  19. This driver uses V4 firmware, which must be installed separately using
  20. b43-fwcutter.
  21. This driver can be built as a module (recommended) that will be called "b43".
  22. If unsure, say M.
  23. config B43_BCMA
  24. bool "Support for BCMA bus"
  25. depends on B43 && BCMA && BROKEN
  26. default y
  27. # Auto-select SSB PCI-HOST support, if possible
  28. config B43_PCI_AUTOSELECT
  29. bool
  30. depends on B43 && SSB_PCIHOST_POSSIBLE
  31. select SSB_PCIHOST
  32. select SSB_B43_PCI_BRIDGE
  33. default y
  34. # Auto-select SSB PCICORE driver, if possible
  35. config B43_PCICORE_AUTOSELECT
  36. bool
  37. depends on B43 && SSB_DRIVER_PCICORE_POSSIBLE
  38. select SSB_DRIVER_PCICORE
  39. default y
  40. config B43_PCMCIA
  41. bool "Broadcom 43xx PCMCIA device support"
  42. depends on B43 && SSB_PCMCIAHOST_POSSIBLE
  43. select SSB_PCMCIAHOST
  44. ---help---
  45. Broadcom 43xx PCMCIA device support.
  46. Support for 16bit PCMCIA devices.
  47. Please note that most PC-CARD devices are _NOT_ 16bit PCMCIA
  48. devices, but 32bit CardBUS devices. CardBUS devices are supported
  49. out of the box by b43.
  50. With this config option you can drive b43 cards in
  51. CompactFlash formfactor in a PCMCIA adaptor.
  52. CF b43 cards can sometimes be found in handheld PCs.
  53. It's safe to select Y here, even if you don't have a B43 PCMCIA device.
  54. If unsure, say N.
  55. config B43_SDIO
  56. bool "Broadcom 43xx SDIO device support (EXPERIMENTAL)"
  57. depends on B43 && SSB_SDIOHOST_POSSIBLE && EXPERIMENTAL
  58. select SSB_SDIOHOST
  59. ---help---
  60. Broadcom 43xx device support for Soft-MAC SDIO devices.
  61. With this config option you can drive Soft-MAC b43 cards with a
  62. Secure Digital I/O interface.
  63. This includes the WLAN daughter card found on the Nintendo Wii
  64. video game console.
  65. Note that this does not support Broadcom 43xx Full-MAC devices.
  66. It's safe to select Y here, even if you don't have a B43 SDIO device.
  67. If unsure, say N.
  68. #Data transfers to the device via PIO. We want it as a fallback even
  69. # if we can do DMA.
  70. config B43_PIO
  71. bool
  72. depends on B43
  73. select SSB_BLOCKIO
  74. default y
  75. config B43_PHY_N
  76. bool "Support for 802.11n (N-PHY) devices (EXPERIMENTAL)"
  77. depends on B43 && EXPERIMENTAL
  78. ---help---
  79. Support for the N-PHY.
  80. This enables support for devices with N-PHY.
  81. Say N if you expect high stability and performance. Saying Y will not
  82. affect other devices support and may provide support for basic needs.
  83. config B43_PHY_LP
  84. bool "Support for low-power (LP-PHY) devices (EXPERIMENTAL)"
  85. depends on B43 && EXPERIMENTAL
  86. default y
  87. ---help---
  88. Support for the LP-PHY.
  89. The LP-PHY is a low-power PHY built into some notebooks
  90. and embedded devices. It supports 802.11a/g
  91. (802.11a support is optional, and currently disabled).
  92. # This config option automatically enables b43 LEDS support,
  93. # if it's possible.
  94. config B43_LEDS
  95. bool
  96. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  97. default y
  98. # This config option automatically enables b43 HW-RNG support,
  99. # if the HW-RNG core is enabled.
  100. config B43_HWRNG
  101. bool
  102. depends on B43 && (HW_RANDOM = y || HW_RANDOM = B43)
  103. default y
  104. config B43_DEBUG
  105. bool "Broadcom 43xx debugging"
  106. depends on B43
  107. ---help---
  108. Broadcom 43xx debugging.
  109. This adds additional runtime sanity checks and statistics to the driver.
  110. These checks and statistics might me expensive and hurt runtime performance
  111. of your system.
  112. This also adds the b43 debugfs interface.
  113. Do not enable this, unless you are debugging the driver.
  114. Say N, if you are a distributor or user building a release kernel
  115. for production use.
  116. Only say Y, if you are debugging a problem in the b43 driver sourcecode.
  117. config B43_FORCE_PIO
  118. bool "Force usage of PIO instead of DMA"
  119. depends on B43 && B43_DEBUG
  120. ---help---
  121. This will disable DMA and always enable PIO instead.
  122. Say N!
  123. This is only for debugging the PIO engine code. You do
  124. _NOT_ want to enable this.