Kconfig 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. This driver uses the kernel's mac80211 subsystem.
  22. In order to use this driver, you will need a microcode (uCode)
  23. image for it. You can obtain the microcode from:
  24. <http://intellinuxwireless.org/>.
  25. The microcode is typically installed in /lib/firmware. You can
  26. look in the hotplug script /etc/hotplug/firmware.agent to
  27. determine which directory FIRMWARE_DIR is set to when the script
  28. runs.
  29. If you want to compile the driver as a module ( = code which can be
  30. inserted in and removed from the running kernel whenever you want),
  31. say M here and read <file:Documentation/kbuild/modules.txt>. The
  32. module will be called iwlwifi.
  33. config IWLWIFI_LEDS
  34. bool
  35. depends on IWLWIFI
  36. depends on LEDS_CLASS=y || LEDS_CLASS=IWLWIFI
  37. select LEDS_TRIGGERS
  38. select MAC80211_LEDS
  39. default y
  40. config IWLDVM
  41. tristate "Intel Wireless WiFi DVM Firmware support"
  42. depends on IWLWIFI
  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. depends on IWLWIFI
  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 IWLWIFI && 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. menu "Debugging Options"
  72. depends on IWLWIFI
  73. config IWLWIFI_DEBUG
  74. bool "Enable full debugging output in the iwlwifi driver"
  75. depends on IWLWIFI
  76. ---help---
  77. This option will enable debug tracing output for the iwlwifi drivers
  78. This will result in the kernel module being ~100k larger. You can
  79. control which debug output is sent to the kernel log by setting the
  80. value in
  81. /sys/module/iwlwifi/parameters/debug
  82. This entry will only exist if this option is enabled.
  83. To set a value, simply echo an 8-byte hex value to the same file:
  84. % echo 0x43fff > /sys/module/iwlwifi/parameters/debug
  85. You can find the list of debug mask values in:
  86. drivers/net/wireless/iwlwifi/iwl-debug.h
  87. If this is your first time using this driver, you should say Y here
  88. as the debug information can assist others in helping you resolve
  89. any problems you may encounter.
  90. config IWLWIFI_DEBUGFS
  91. bool "iwlwifi debugfs support"
  92. depends on IWLWIFI && MAC80211_DEBUGFS
  93. ---help---
  94. Enable creation of debugfs files for the iwlwifi drivers. This
  95. is a low-impact option that allows getting insight into the
  96. driver's state at runtime.
  97. config IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
  98. bool "Experimental uCode support"
  99. depends on IWLWIFI && IWLWIFI_DEBUG
  100. ---help---
  101. Enable use of experimental ucode for testing and debugging.
  102. config IWLWIFI_DEVICE_TRACING
  103. bool "iwlwifi device access tracing"
  104. depends on IWLWIFI
  105. depends on EVENT_TRACING
  106. help
  107. Say Y here to trace all commands, including TX frames and IO
  108. accesses, sent to the device. If you say yes, iwlwifi will
  109. register with the ftrace framework for event tracing and dump
  110. all this information to the ringbuffer, you may need to
  111. increase the ringbuffer size. See the ftrace documentation
  112. for more information.
  113. When tracing is not enabled, this option still has some
  114. (though rather small) overhead.
  115. If unsure, say Y so we can help you better when problems
  116. occur.
  117. endmenu