Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. config B43LEGACY
  2. tristate "Broadcom 43xx-legacy wireless support (mac80211 stack)"
  3. depends on SSB_POSSIBLE && MAC80211 && HAS_DMA
  4. select SSB
  5. select FW_LOADER
  6. ---help---
  7. b43legacy is a driver for 802.11b devices from Broadcom (BCM4301 and
  8. BCM4303) and early model 802.11g chips (BCM4306 Ver. 2) used in the
  9. Linksys WPC54G V1 PCMCIA devices.
  10. Newer 802.11g and 802.11a devices need b43.
  11. It is safe to include both b43 and b43legacy as the underlying glue
  12. layer will automatically load the correct version for your device.
  13. This driver uses V3 firmware, which must be installed separately using
  14. b43-fwcutter.
  15. This driver can be built as a module (recommended) that will be
  16. called "b43legacy". If unsure, say M.
  17. # Auto-select SSB PCI-HOST support, if possible
  18. config B43LEGACY_PCI_AUTOSELECT
  19. bool
  20. depends on B43LEGACY && SSB_PCIHOST_POSSIBLE
  21. select SSB_PCIHOST
  22. select SSB_B43_PCI_BRIDGE
  23. default y
  24. # Auto-select SSB PCICORE driver, if possible
  25. config B43LEGACY_PCICORE_AUTOSELECT
  26. bool
  27. depends on B43LEGACY && SSB_DRIVER_PCICORE_POSSIBLE
  28. select SSB_DRIVER_PCICORE
  29. default y
  30. # LED support
  31. # This config option automatically enables b43legacy LEDS support,
  32. # if it's possible.
  33. config B43LEGACY_LEDS
  34. bool
  35. depends on B43LEGACY && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43LEGACY)
  36. default y
  37. # This config option automatically enables b43 HW-RNG support,
  38. # if the HW-RNG core is enabled.
  39. config B43LEGACY_HWRNG
  40. bool
  41. depends on B43LEGACY && (HW_RANDOM = y || HW_RANDOM = B43LEGACY)
  42. default y
  43. config B43LEGACY_DEBUG
  44. bool "Broadcom 43xx-legacy debugging"
  45. depends on B43LEGACY
  46. default y
  47. ---help---
  48. Say Y, because this information will help you get the driver running.
  49. This option generates a minimum of log output.
  50. config B43LEGACY_DMA
  51. bool
  52. depends on B43LEGACY
  53. config B43LEGACY_PIO
  54. bool
  55. depends on B43LEGACY
  56. choice
  57. prompt "Broadcom 43xx-legacy data transfer mode"
  58. depends on B43LEGACY
  59. default B43LEGACY_DMA_AND_PIO_MODE
  60. config B43LEGACY_DMA_AND_PIO_MODE
  61. bool "DMA + PIO"
  62. select B43LEGACY_DMA
  63. select B43LEGACY_PIO
  64. ---help---
  65. Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
  66. data transfer modes. The mode actually used is selectable through
  67. the module parameter "pio". With pio=0 as a module parameter, the
  68. default DMA is used, otherwise PIO is used.
  69. If unsure, choose this option.
  70. config B43LEGACY_DMA_MODE
  71. bool "DMA (Direct Memory Access) only"
  72. select B43LEGACY_DMA
  73. ---help---
  74. Only include Direct Memory Access (DMA).
  75. This reduces the size of the driver module, by omitting the PIO code.
  76. config B43LEGACY_PIO_MODE
  77. bool "PIO (Programmed I/O) only"
  78. select B43LEGACY_PIO
  79. ---help---
  80. Only include Programmed I/O (PIO).
  81. This reduces the size of the driver module, by omitting the DMA code.
  82. Please note that PIO transfers are slow (compared to DMA).
  83. Also note that not all devices of the b43legacy series support PIO.
  84. You should use PIO only if DMA does not work for you.
  85. endchoice