Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. config B43
  2. tristate "Broadcom 43xx wireless support (mac80211 stack)"
  3. depends on SSB_POSSIBLE && MAC80211 && WLAN_80211
  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. config B43_NPHY
  53. bool "Pre IEEE 802.11n support (BROKEN)"
  54. depends on B43 && EXPERIMENTAL && BROKEN
  55. ---help---
  56. Support for the IEEE 802.11n draft.
  57. THIS IS BROKEN AND DOES NOT WORK YET.
  58. SAY N.
  59. # This config option automatically enables b43 LEDS support,
  60. # if it's possible.
  61. config B43_LEDS
  62. bool
  63. depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43)
  64. default y
  65. # This config option automatically enables b43 RFKILL support,
  66. # if it's possible.
  67. config B43_RFKILL
  68. bool
  69. depends on B43 && (RFKILL = y || RFKILL = B43) && RFKILL_INPUT && (INPUT_POLLDEV = y || INPUT_POLLDEV = B43)
  70. default y
  71. config B43_DEBUG
  72. bool "Broadcom 43xx debugging"
  73. depends on B43
  74. ---help---
  75. Broadcom 43xx debugging messages.
  76. Say Y, if you want to find out why the driver does not
  77. work for you.