Kconfig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. config B43LEGACY
  2. tristate "Broadcom 43xx-legacy 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. 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. 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. config B43LEGACY_LEDS
  32. bool
  33. depends on MAC80211_LEDS
  34. default y
  35. config B43LEGACY_DEBUG
  36. bool "Broadcom 43xx-legacy debugging"
  37. depends on B43LEGACY
  38. default y
  39. ---help---
  40. Say Y, because this information will help you get the driver running.
  41. This option generates a minimum of log output.
  42. config B43LEGACY_DMA
  43. bool
  44. depends on B43LEGACY
  45. config B43LEGACY_PIO
  46. bool
  47. depends on B43LEGACY
  48. choice
  49. prompt "Broadcom 43xx-legacy data transfer mode"
  50. depends on B43LEGACY
  51. default B43LEGACY_DMA_AND_PIO_MODE
  52. config B43LEGACY_DMA_AND_PIO_MODE
  53. bool "DMA + PIO"
  54. select B43LEGACY_DMA
  55. select B43LEGACY_PIO
  56. ---help---
  57. Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
  58. data transfer modes. The mode actually used is selectable through
  59. the module parameter "pio". With pio=0 as a module parameter, the
  60. default DMA is used, otherwise PIO is used.
  61. If unsure, choose this option.
  62. config B43LEGACY_DMA_MODE
  63. bool "DMA (Direct Memory Access) only"
  64. select B43LEGACY_DMA
  65. ---help---
  66. Only include Direct Memory Access (DMA).
  67. This reduces the size of the driver module, by omitting the PIO code.
  68. config B43LEGACY_PIO_MODE
  69. bool "PIO (Programmed I/O) only"
  70. select B43LEGACY_PIO
  71. ---help---
  72. Only include Programmed I/O (PIO).
  73. This reduces the size of the driver module, by omitting the DMA code.
  74. Please note that PIO transfers are slow (compared to DMA).
  75. Also note that not all devices of the b43legacy series support PIO.
  76. You should use PIO only if DMA does not work for you.
  77. endchoice