Kconfig 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. config IWLWIFI
  2. tristate "Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) "
  3. depends on PCI && MAC80211 && HAS_IOMEM
  4. select FW_LOADER
  5. ---help---
  6. Select to build the driver supporting the:
  7. Intel Wireless WiFi Link Next-Gen AGN
  8. This option enables support for use with the following hardware:
  9. Intel Wireless WiFi Link 6250AGN Adapter
  10. Intel 6000 Series Wi-Fi Adapters (6200AGN and 6300AGN)
  11. Intel WiFi Link 1000BGN
  12. Intel Wireless WiFi 5150AGN
  13. Intel Wireless WiFi 5100AGN, 5300AGN, and 5350AGN
  14. Intel 6005 Series Wi-Fi Adapters
  15. Intel 6030 Series Wi-Fi Adapters
  16. Intel Wireless WiFi Link 6150BGN 2 Adapter
  17. Intel 100 Series Wi-Fi Adapters (100BGN and 130BGN)
  18. Intel 2000 Series Wi-Fi Adapters
  19. Intel 7260 Wi-Fi Adapter
  20. Intel 3160 Wi-Fi Adapter
  21. Intel 7265 Wi-Fi Adapter
  22. Intel 3165 Wi-Fi Adapter
  23. This driver uses the kernel's mac80211 subsystem.
  24. In order to use this driver, you will need a firmware
  25. image for it. You can obtain the microcode from:
  26. <http://wireless.kernel.org/en/users/Drivers/iwlwifi>.
  27. The firmware is typically installed in /lib/firmware. You can
  28. look in the hotplug script /etc/hotplug/firmware.agent to
  29. determine which directory FIRMWARE_DIR is set to when the script
  30. runs.
  31. If you want to compile the driver as a module ( = code which can be
  32. inserted in and removed from the running kernel whenever you want),
  33. say M here and read <file:Documentation/kbuild/modules.txt>. The
  34. module will be called iwlwifi.
  35. if IWLWIFI
  36. config IWLWIFI_LEDS
  37. bool
  38. depends on LEDS_CLASS=y || LEDS_CLASS=IWLWIFI
  39. select LEDS_TRIGGERS
  40. select MAC80211_LEDS
  41. default y
  42. config IWLDVM
  43. tristate "Intel Wireless WiFi DVM Firmware support"
  44. default IWLWIFI
  45. help
  46. This is the driver that supports the DVM firmware which is
  47. used by most existing devices (with the exception of 7260
  48. and 3160).
  49. config IWLMVM
  50. tristate "Intel Wireless WiFi MVM Firmware support"
  51. select WANT_DEV_COREDUMP
  52. help
  53. This is the driver that supports the MVM firmware which is
  54. currently only available for 7260 and 3160 devices.
  55. # don't call it _MODULE -- will confuse Kconfig/fixdep/...
  56. config IWLWIFI_OPMODE_MODULAR
  57. bool
  58. default y if IWLDVM=m
  59. default y if IWLMVM=m
  60. comment "WARNING: iwlwifi is useless without IWLDVM or IWLMVM"
  61. depends on IWLDVM=n && IWLMVM=n
  62. config IWLWIFI_BCAST_FILTERING
  63. bool "Enable broadcast filtering"
  64. depends on IWLMVM
  65. help
  66. Say Y here to enable default bcast filtering configuration.
  67. Enabling broadcast filtering will drop any incoming wireless
  68. broadcast frames, except some very specific predefined
  69. patterns (e.g. incoming arp requests).
  70. If unsure, don't enable this option, as some programs might
  71. expect incoming broadcasts for their normal operations.
  72. config IWLWIFI_UAPSD
  73. bool "enable U-APSD by default"
  74. depends on IWLMVM
  75. help
  76. Say Y here to enable U-APSD by default. This may cause
  77. interoperability problems with some APs, manifesting in lower than
  78. expected throughput due to those APs not enabling aggregation
  79. If unsure, say N.
  80. menu "Debugging Options"
  81. config IWLWIFI_DEBUG
  82. bool "Enable full debugging output in the iwlwifi driver"
  83. ---help---
  84. This option will enable debug tracing output for the iwlwifi drivers
  85. This will result in the kernel module being ~100k larger. You can
  86. control which debug output is sent to the kernel log by setting the
  87. value in
  88. /sys/module/iwlwifi/parameters/debug
  89. This entry will only exist if this option is enabled.
  90. To set a value, simply echo an 8-byte hex value to the same file:
  91. % echo 0x43fff > /sys/module/iwlwifi/parameters/debug
  92. You can find the list of debug mask values in:
  93. drivers/net/wireless/iwlwifi/iwl-debug.h
  94. If this is your first time using this driver, you should say Y here
  95. as the debug information can assist others in helping you resolve
  96. any problems you may encounter.
  97. config IWLWIFI_DEBUGFS
  98. bool "iwlwifi debugfs support"
  99. depends on MAC80211_DEBUGFS
  100. ---help---
  101. Enable creation of debugfs files for the iwlwifi drivers. This
  102. is a low-impact option that allows getting insight into the
  103. driver's state at runtime.
  104. config IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
  105. bool "Experimental uCode support"
  106. depends on IWLWIFI_DEBUG
  107. ---help---
  108. Enable use of experimental ucode for testing and debugging.
  109. config IWLWIFI_DEVICE_TRACING
  110. bool "iwlwifi device access tracing"
  111. depends on EVENT_TRACING
  112. help
  113. Say Y here to trace all commands, including TX frames and IO
  114. accesses, sent to the device. If you say yes, iwlwifi will
  115. register with the ftrace framework for event tracing and dump
  116. all this information to the ringbuffer, you may need to
  117. increase the ringbuffer size. See the ftrace documentation
  118. for more information.
  119. When tracing is not enabled, this option still has some
  120. (though rather small) overhead.
  121. If unsure, say Y so we can help you better when problems
  122. occur.
  123. endmenu
  124. endif