Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. # Auto-select SSB PCI-HOST support, if possible
  24. config B43_PCI_AUTOSELECT
  25. bool
  26. depends on B43 && SSB_PCIHOST_POSSIBLE
  27. select SSB_PCIHOST
  28. select SSB_B43_PCI_BRIDGE
  29. default y
  30. # Auto-select SSB PCICORE driver, if possible
  31. config B43_PCICORE_AUTOSELECT
  32. bool
  33. depends on B43 && SSB_DRIVER_PCICORE_POSSIBLE
  34. select SSB_DRIVER_PCICORE
  35. default y
  36. config B43_PCMCIA
  37. bool "Broadcom 43xx PCMCIA device support"
  38. depends on B43 && SSB_PCMCIAHOST_POSSIBLE
  39. select SSB_PCMCIAHOST
  40. ---help---
  41. Broadcom 43xx PCMCIA device support.
  42. Support for 16bit PCMCIA devices.
  43. Please note that most PC-CARD devices are _NOT_ 16bit PCMCIA
  44. devices, but 32bit CardBUS devices. CardBUS devices are supported
  45. out of the box by b43.
  46. With this config option you can drive b43 cards in
  47. CompactFlash formfactor in a PCMCIA adaptor.
  48. CF b43 cards can sometimes be found in handheld PCs.
  49. It's safe to select Y here, even if you don't have a B43 PCMCIA device.
  50. If unsure, say N.
  51. config B43_SDIO
  52. bool "Broadcom 43xx SDIO device support (EXPERIMENTAL)"
  53. depends on B43 && SSB_SDIOHOST_POSSIBLE && EXPERIMENTAL
  54. select SSB_SDIOHOST
  55. ---help---
  56. Broadcom 43xx device support for Soft-MAC SDIO devices.
  57. With this config option you can drive Soft-MAC b43 cards with a
  58. Secure Digital I/O interface.
  59. This includes the WLAN daughter card found on the Nintendo Wii
  60. video game console.
  61. Note that this does not support Broadcom 43xx Full-MAC devices.
  62. It's safe to select Y here, even if you don't have a B43 SDIO device.
  63. If unsure, say N.
  64. # Data transfers to the device via PIO
  65. # This is only needed on PCMCIA and SDIO devices. All others can do DMA properly.
  66. config B43_PIO
  67. bool
  68. depends on B43 && (B43_SDIO || B43_PCMCIA || B43_FORCE_PIO)
  69. select SSB_BLOCKIO
  70. default y
  71. config B43_NPHY
  72. bool "Pre IEEE 802.11n support (BROKEN)"
  73. depends on B43 && EXPERIMENTAL && BROKEN
  74. ---help---
  75. Support for the IEEE 802.11n draft.
  76. THIS IS BROKEN AND DOES NOT WORK YET.
  77. SAY N.
  78. config B43_PHY_LP
  79. bool "Support for low-power (LP-PHY) devices (EXPERIMENTAL)"
  80. depends on B43 && EXPERIMENTAL
  81. default y
  82. ---help---
  83. Support for the LP-PHY.
  84. The LP-PHY is a low-power PHY built into some notebooks
  85. and embedded devices. It supports 802.11a/g
  86. (802.11a support is optional, and currently disabled).
  87. # This config option automatically enables b43 LEDS support,
  88. # if it's possible.
  89. config B43_LEDS
  90. bool
  91. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  92. default y
  93. # This config option automatically enables b43 HW-RNG support,
  94. # if the HW-RNG core is enabled.
  95. config B43_HWRNG
  96. bool
  97. depends on B43 && (HW_RANDOM = y || HW_RANDOM = B43)
  98. default y
  99. config B43_DEBUG
  100. bool "Broadcom 43xx debugging"
  101. depends on B43
  102. ---help---
  103. Broadcom 43xx debugging.
  104. This adds additional runtime sanity checks and statistics to the driver.
  105. These checks and statistics might me expensive and hurt runtime performance
  106. of your system.
  107. This also adds the b43 debugfs interface.
  108. Do not enable this, unless you are debugging the driver.
  109. Say N, if you are a distributor or user building a release kernel
  110. for production use.
  111. Only say Y, if you are debugging a problem in the b43 driver sourcecode.
  112. config B43_FORCE_PIO
  113. bool "Force usage of PIO instead of DMA"
  114. depends on B43 && B43_DEBUG
  115. ---help---
  116. This will disable DMA and always enable PIO instead.
  117. Say N!
  118. This is only for debugging the PIO engine code. You do
  119. _NOT_ want to enable this.