Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. 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 (EXPERIMENTAL)"
  38. depends on B43 && SSB_PCMCIAHOST_POSSIBLE && EXPERIMENTAL
  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. # LED support
  52. config B43_LEDS
  53. bool
  54. depends on B43 && MAC80211_LEDS
  55. default y
  56. # RFKILL support
  57. config B43_RFKILL
  58. bool
  59. depends on B43 && RFKILL && RFKILL_INPUT && INPUT_POLLDEV
  60. default y
  61. config B43_DEBUG
  62. bool "Broadcom 43xx debugging"
  63. depends on B43
  64. ---help---
  65. Broadcom 43xx debugging messages.
  66. Say Y, if you want to find out why the driver does not
  67. work for you.
  68. config B43_DMA
  69. bool
  70. depends on B43
  71. config B43_PIO
  72. bool
  73. depends on B43
  74. choice
  75. prompt "Broadcom 43xx data transfer mode"
  76. depends on B43
  77. default B43_DMA_AND_PIO_MODE
  78. config B43_DMA_AND_PIO_MODE
  79. bool "DMA + PIO"
  80. select B43_DMA
  81. select B43_PIO
  82. ---help---
  83. Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
  84. data transfer modes.
  85. The actually used mode is selectable through the module
  86. parameter "pio". If the module parameter is pio=0, DMA is used.
  87. Otherwise PIO is used. DMA is default.
  88. If unsure, choose this option.
  89. config B43_DMA_MODE
  90. bool "DMA (Direct Memory Access) only"
  91. select B43_DMA
  92. ---help---
  93. Only include Direct Memory Access (DMA).
  94. This reduces the size of the driver module, by omitting the PIO code.
  95. config B43_PIO_MODE
  96. bool "PIO (Programmed I/O) only"
  97. select B43_PIO
  98. ---help---
  99. Only include Programmed I/O (PIO).
  100. This reduces the size of the driver module, by omitting the DMA code.
  101. Please note that PIO transfers are slow (compared to DMA).
  102. Also note that not all devices of the 43xx series support PIO.
  103. The 4306 (Apple Airport Extreme and others) supports PIO, while
  104. the 4318 is known to _not_ support PIO.
  105. Only use PIO, if DMA does not work for you.
  106. endchoice