Kconfig 3.0 KB

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