Kconfig 1.8 KB

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