Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. config B43
  2. tristate "Broadcom 43xx wireless support (mac80211 stack)"
  3. depends on SSB_POSSIBLE && MAC80211 && WLAN_80211 && 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. # Data transfers to the device via PIO
  52. # This is only needed on PCMCIA devices. All others can do DMA properly.
  53. config B43_PIO
  54. bool
  55. depends on B43 && (B43_PCMCIA || B43_FORCE_PIO)
  56. select SSB_BLOCKIO
  57. default y
  58. config B43_NPHY
  59. bool "Pre IEEE 802.11n support (BROKEN)"
  60. depends on B43 && EXPERIMENTAL && BROKEN
  61. ---help---
  62. Support for the IEEE 802.11n draft.
  63. THIS IS BROKEN AND DOES NOT WORK YET.
  64. SAY N.
  65. config B43_PHY_LP
  66. bool "Support for low-power (LP-PHY) devices (EXPERIMENTAL)"
  67. depends on B43 && EXPERIMENTAL
  68. default y
  69. ---help---
  70. Support for the LP-PHY.
  71. The LP-PHY is a low-power PHY built into some notebooks
  72. and embedded devices. It supports 802.11a/g
  73. (802.11a support is optional, and currently disabled).
  74. # This config option automatically enables b43 LEDS support,
  75. # if it's possible.
  76. config B43_LEDS
  77. bool
  78. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  79. default y
  80. # This config option automatically enables b43 HW-RNG support,
  81. # if the HW-RNG core is enabled.
  82. config B43_HWRNG
  83. bool
  84. depends on B43 && (HW_RANDOM = y || HW_RANDOM = B43)
  85. default y
  86. config B43_DEBUG
  87. bool "Broadcom 43xx debugging"
  88. depends on B43
  89. ---help---
  90. Broadcom 43xx debugging.
  91. This adds additional runtime sanity checks and statistics to the driver.
  92. These checks and statistics might me expensive and hurt runtime performance
  93. of your system.
  94. This also adds the b43 debugfs interface.
  95. Do not enable this, unless you are debugging the driver.
  96. Say N, if you are a distributor or user building a release kernel
  97. for production use.
  98. Only say Y, if you are debugging a problem in the b43 driver sourcecode.
  99. config B43_FORCE_PIO
  100. bool "Force usage of PIO instead of DMA"
  101. depends on B43 && B43_DEBUG
  102. ---help---
  103. This will disable DMA and always enable PIO instead.
  104. Say N!
  105. This is only for debugging the PIO engine code. You do
  106. _NOT_ want to enable this.