Kconfig 4.9 KB

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