Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. select HW_RANDOM
  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. # Auto-select SSB PCI-HOST support, if possible
  25. config B43_PCI_AUTOSELECT
  26. bool
  27. depends on B43 && SSB_PCIHOST_POSSIBLE
  28. select SSB_PCIHOST
  29. select SSB_B43_PCI_BRIDGE
  30. default y
  31. # Auto-select SSB PCICORE driver, if possible
  32. config B43_PCICORE_AUTOSELECT
  33. bool
  34. depends on B43 && SSB_DRIVER_PCICORE_POSSIBLE
  35. select SSB_DRIVER_PCICORE
  36. default y
  37. config B43_PCMCIA
  38. bool "Broadcom 43xx PCMCIA device support (EXPERIMENTAL)"
  39. depends on B43 && SSB_PCMCIAHOST_POSSIBLE && EXPERIMENTAL
  40. select SSB_PCMCIAHOST
  41. ---help---
  42. Broadcom 43xx PCMCIA device support.
  43. Support for 16bit PCMCIA devices.
  44. Please note that most PC-CARD devices are _NOT_ 16bit PCMCIA
  45. devices, but 32bit CardBUS devices. CardBUS devices are supported
  46. out of the box by b43.
  47. With this config option you can drive b43 cards in
  48. CompactFlash formfactor in a PCMCIA adaptor.
  49. CF b43 cards can sometimes be found in handheld PCs.
  50. It's safe to select Y here, even if you don't have a B43 PCMCIA device.
  51. If unsure, say N.
  52. # Data transfers to the device via PIO
  53. # This is only needed on PCMCIA devices. All others can do DMA properly.
  54. config B43_PIO
  55. bool
  56. depends on B43 && (B43_PCMCIA || B43_FORCE_PIO)
  57. select SSB_BLOCKIO
  58. default y
  59. config B43_NPHY
  60. bool "Pre IEEE 802.11n support (BROKEN)"
  61. depends on B43 && EXPERIMENTAL && BROKEN
  62. ---help---
  63. Support for the IEEE 802.11n draft.
  64. THIS IS BROKEN AND DOES NOT WORK YET.
  65. SAY N.
  66. config B43_PHY_LP
  67. bool "IEEE 802.11g LP-PHY support (BROKEN)"
  68. depends on B43 && EXPERIMENTAL && BROKEN
  69. ---help---
  70. Support for the LP-PHY.
  71. The LP-PHY is an IEEE 802.11g based PHY built into some notebooks
  72. and embedded devices.
  73. THIS IS BROKEN AND DOES NOT WORK YET.
  74. SAY N.
  75. # This config option automatically enables b43 LEDS support,
  76. # if it's possible.
  77. config B43_LEDS
  78. bool
  79. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  80. default y
  81. # This config option automatically enables b43 RFKILL support,
  82. # if it's possible.
  83. config B43_RFKILL
  84. bool
  85. depends on B43 && (RFKILL = y || RFKILL = B43) && RFKILL_INPUT && (INPUT_POLLDEV = y || INPUT_POLLDEV = B43)
  86. default y
  87. config B43_DEBUG
  88. bool "Broadcom 43xx debugging"
  89. depends on B43
  90. ---help---
  91. Broadcom 43xx debugging messages.
  92. Say Y, if you want to find out why the driver does not
  93. work for you.
  94. config B43_FORCE_PIO
  95. bool "Force usage of PIO instead of DMA"
  96. depends on B43 && B43_DEBUG
  97. ---help---
  98. This will disable DMA and always enable PIO instead.
  99. Say N!
  100. This is only for debugging the PIO engine code. You do
  101. _NOT_ want to enable this.