Kconfig 3.8 KB

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