Kconfig 4.2 KB

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