Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. config BCM43XX
  2. tristate "Broadcom BCM43xx wireless support"
  3. depends on PCI && IEEE80211 && IEEE80211_SOFTMAC && WLAN_80211 && EXPERIMENTAL
  4. select WIRELESS_EXT
  5. select FW_LOADER
  6. select HW_RANDOM
  7. ---help---
  8. This is an experimental driver for the Broadcom 43xx wireless chip,
  9. found in the Apple Airport Extreme and various other devices.
  10. config BCM43XX_DEBUG
  11. bool "Broadcom BCM43xx debugging (RECOMMENDED)"
  12. depends on BCM43XX
  13. default y
  14. ---help---
  15. Broadcom 43xx debugging messages.
  16. Say Y, because the driver is still very experimental and
  17. this will help you get it running.
  18. config BCM43XX_DMA
  19. bool
  20. depends on BCM43XX
  21. config BCM43XX_PIO
  22. bool
  23. depends on BCM43XX
  24. choice
  25. prompt "BCM43xx data transfer mode"
  26. depends on BCM43XX
  27. default BCM43XX_DMA_AND_PIO_MODE
  28. config BCM43XX_DMA_AND_PIO_MODE
  29. bool "DMA + PIO"
  30. select BCM43XX_DMA
  31. select BCM43XX_PIO
  32. ---help---
  33. Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
  34. data transfer modes.
  35. The actually used mode is selectable through the module
  36. parameter "pio". If the module parameter is pio=0, DMA is used.
  37. Otherwise PIO is used. DMA is default.
  38. If unsure, choose this option.
  39. config BCM43XX_DMA_MODE
  40. bool "DMA (Direct Memory Access) only"
  41. select BCM43XX_DMA
  42. ---help---
  43. Only include Direct Memory Access (DMA).
  44. This reduces the size of the driver module, by omitting the PIO code.
  45. config BCM43XX_PIO_MODE
  46. bool "PIO (Programmed I/O) only"
  47. select BCM43XX_PIO
  48. ---help---
  49. Only include Programmed I/O (PIO).
  50. This reduces the size of the driver module, by omitting the DMA code.
  51. Please note that PIO transfers are slow (compared to DMA).
  52. Also note that not all devices of the 43xx series support PIO.
  53. The 4306 (Apple Airport Extreme and others) supports PIO, while
  54. the 4318 is known to _not_ support PIO.
  55. Only use PIO, if DMA does not work for you.
  56. endchoice