Kconfig 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. config IWLWIFI
  2. tristate "Intel Wireless Wifi"
  3. depends on PCI && MAC80211
  4. select FW_LOADER
  5. select NEW_LEDS
  6. select LEDS_CLASS
  7. select LEDS_TRIGGERS
  8. select MAC80211_LEDS
  9. menu "Debugging Options"
  10. depends on IWLWIFI
  11. config IWLWIFI_DEBUG
  12. bool "Enable full debugging output in iwlagn and iwl3945 drivers"
  13. depends on IWLWIFI
  14. ---help---
  15. This option will enable debug tracing output for the iwlwifi drivers
  16. This will result in the kernel module being ~100k larger. You can
  17. control which debug output is sent to the kernel log by setting the
  18. value in
  19. /sys/class/net/wlan0/device/debug_level
  20. This entry will only exist if this option is enabled.
  21. To set a value, simply echo an 8-byte hex value to the same file:
  22. % echo 0x43fff > /sys/class/net/wlan0/device/debug_level
  23. You can find the list of debug mask values in:
  24. drivers/net/wireless/iwlwifi/iwl-debug.h
  25. If this is your first time using this driver, you should say Y here
  26. as the debug information can assist others in helping you resolve
  27. any problems you may encounter.
  28. config IWLWIFI_DEBUGFS
  29. bool "iwlagn debugfs support"
  30. depends on IWLWIFI && MAC80211_DEBUGFS
  31. ---help---
  32. Enable creation of debugfs files for the iwlwifi drivers. This
  33. is a low-impact option that allows getting insight into the
  34. driver's state at runtime.
  35. config IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
  36. bool "Experimental uCode support"
  37. depends on IWLWIFI && IWLWIFI_DEBUG
  38. ---help---
  39. Enable use of experimental ucode for testing and debugging.
  40. config IWLWIFI_DEVICE_TRACING
  41. bool "iwlwifi device access tracing"
  42. depends on IWLWIFI
  43. depends on EVENT_TRACING
  44. help
  45. Say Y here to trace all commands, including TX frames and IO
  46. accesses, sent to the device. If you say yes, iwlwifi will
  47. register with the ftrace framework for event tracing and dump
  48. all this information to the ringbuffer, you may need to
  49. increase the ringbuffer size. See the ftrace documentation
  50. for more information.
  51. When tracing is not enabled, this option still has some
  52. (though rather small) overhead.
  53. If unsure, say Y so we can help you better when problems
  54. occur.
  55. endmenu
  56. config IWLAGN
  57. tristate "Intel Wireless WiFi Next Gen AGN (iwlagn)"
  58. depends on IWLWIFI
  59. ---help---
  60. Select to build the driver supporting the:
  61. Intel Wireless WiFi Link Next-Gen AGN
  62. This driver uses the kernel's mac80211 subsystem.
  63. In order to use this driver, you will need a microcode (uCode)
  64. image for it. You can obtain the microcode from:
  65. <http://intellinuxwireless.org/>.
  66. The microcode is typically installed in /lib/firmware. You can
  67. look in the hotplug script /etc/hotplug/firmware.agent to
  68. determine which directory FIRMWARE_DIR is set to when the script
  69. runs.
  70. If you want to compile the driver as a module ( = code which can be
  71. inserted in and removed from the running kernel whenever you want),
  72. say M here and read <file:Documentation/kbuild/modules.txt>. The
  73. module will be called iwlagn.
  74. config IWL4965
  75. bool "Intel Wireless WiFi 4965AGN"
  76. depends on IWLAGN
  77. ---help---
  78. This option enables support for Intel Wireless WiFi Link 4965AGN
  79. config IWL5000
  80. bool "Intel Wireless-N/Advanced-N/Ultimate-N WiFi Link"
  81. depends on IWLAGN
  82. ---help---
  83. This option enables support for use with the following hardware:
  84. Intel Wireless WiFi Link 6250AGN Adapter
  85. Intel 6000 Series Wi-Fi Adapters (6200AGN and 6300AGN)
  86. Intel WiFi Link 1000BGN
  87. Intel Wireless WiFi 5150AGN
  88. Intel Wireless WiFi 5100AGN, 5300AGN, and 5350AGN
  89. Intel 6005 Series Wi-Fi Adapters
  90. Intel 6030 Series Wi-Fi Adapters
  91. Intel Wireless WiFi Link 6150BGN 2 Adapter
  92. Intel 100 Series Wi-Fi Adapters (100BGN and 130BGN)
  93. Intel 2000 Series Wi-Fi Adapters
  94. config IWL_P2P
  95. bool "iwlwifi experimental P2P support"
  96. depends on IWL5000
  97. help
  98. This option enables experimental P2P support for some devices
  99. based on microcode support. Since P2P support is still under
  100. development, this option may even enable it for some devices
  101. now that turn out to not support it in the future due to
  102. microcode restrictions.
  103. To determine if your microcode supports the experimental P2P
  104. offered by this option, check if the driver advertises AP
  105. support when it is loaded.
  106. Say Y only if you want to experiment with P2P.
  107. config IWL3945
  108. tristate "Intel PRO/Wireless 3945ABG/BG Network Connection (iwl3945)"
  109. depends on IWLWIFI
  110. ---help---
  111. Select to build the driver supporting the:
  112. Intel PRO/Wireless 3945ABG/BG Network Connection
  113. This driver uses the kernel's mac80211 subsystem.
  114. In order to use this driver, you will need a microcode (uCode)
  115. image for it. You can obtain the microcode from:
  116. <http://intellinuxwireless.org/>.
  117. The microcode is typically installed in /lib/firmware. You can
  118. look in the hotplug script /etc/hotplug/firmware.agent to
  119. determine which directory FIRMWARE_DIR is set to when the script
  120. runs.
  121. If you want to compile the driver as a module ( = code which can be
  122. inserted in and removed from the running kernel whenever you want),
  123. say M here and read <file:Documentation/kbuild/modules.txt>. The
  124. module will be called iwl3945.