Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. config IWLWIFI
  2. tristate "Intel Wireless Wifi"
  3. depends on PCI && MAC80211 && EXPERIMENTAL
  4. select FW_LOADER
  5. config IWLWIFI_SPECTRUM_MEASUREMENT
  6. bool "Enable Spectrum Measurement in iwlagn driver"
  7. depends on IWLWIFI
  8. ---help---
  9. This option will enable spectrum measurement for the iwlagn driver.
  10. config IWLWIFI_DEBUG
  11. bool "Enable full debugging output in iwlagn and iwl3945 drivers"
  12. depends on IWLWIFI
  13. ---help---
  14. This option will enable debug tracing output for the iwlwifi drivers
  15. This will result in the kernel module being ~100k larger. You can
  16. control which debug output is sent to the kernel log by setting the
  17. value in
  18. /sys/class/net/wlan0/device/debug_level
  19. This entry will only exist if this option is enabled.
  20. To set a value, simply echo an 8-byte hex value to the same file:
  21. % echo 0x43fff > /sys/class/net/wlan0/device/debug_level
  22. You can find the list of debug mask values in:
  23. drivers/net/wireless/iwlwifi/iwl-debug.h
  24. If this is your first time using this driver, you should say Y here
  25. as the debug information can assist others in helping you resolve
  26. any problems you may encounter.
  27. config IWLWIFI_DEBUGFS
  28. bool "iwlagn debugfs support"
  29. depends on IWLWIFI && IWLWIFI_DEBUG && MAC80211_DEBUGFS
  30. ---help---
  31. Enable creation of debugfs files for the iwlwifi drivers.
  32. config IWLWIFI_DEVICE_TRACING
  33. bool "iwlwifi device access tracing"
  34. depends on IWLWIFI
  35. depends on EVENT_TRACING
  36. help
  37. Say Y here to trace all commands, including TX frames and IO
  38. accesses, sent to the device. If you say yes, iwlwifi will
  39. register with the ftrace framework for event tracing and dump
  40. all this information to the ringbuffer, you may need to
  41. increase the ringbuffer size. See the ftrace documentation
  42. for more information.
  43. When tracing is not enabled, this option still has some
  44. (though rather small) overhead.
  45. If unsure, say Y so we can help you better when problems
  46. occur.
  47. config IWLAGN
  48. tristate "Intel Wireless WiFi Next Gen AGN (iwlagn)"
  49. depends on IWLWIFI
  50. ---help---
  51. Select to build the driver supporting the:
  52. Intel Wireless WiFi Link Next-Gen AGN
  53. This driver uses the kernel's mac80211 subsystem.
  54. In order to use this driver, you will need a microcode (uCode)
  55. image for it. You can obtain the microcode from:
  56. <http://intellinuxwireless.org/>.
  57. The microcode is typically installed in /lib/firmware. You can
  58. look in the hotplug script /etc/hotplug/firmware.agent to
  59. determine which directory FIRMWARE_DIR is set to when the script
  60. runs.
  61. If you want to compile the driver as a module ( = code which can be
  62. inserted in and removed from the running kernel whenever you want),
  63. say M here and read <file:Documentation/kbuild/modules.txt>. The
  64. module will be called iwlagn.
  65. config IWL4965
  66. bool "Intel Wireless WiFi 4965AGN"
  67. depends on IWLAGN
  68. ---help---
  69. This option enables support for Intel Wireless WiFi Link 4965AGN
  70. config IWL5000
  71. bool "Intel Wireless WiFi 5000AGN; Intel WiFi Link 1000, 6000, and 6050 Series"
  72. depends on IWLAGN
  73. ---help---
  74. This option enables support for Intel Wireless WiFi Link 5000AGN Family
  75. config IWL3945
  76. tristate "Intel PRO/Wireless 3945ABG/BG Network Connection (iwl3945)"
  77. depends on IWLWIFI
  78. ---help---
  79. Select to build the driver supporting the:
  80. Intel PRO/Wireless 3945ABG/BG Network Connection
  81. This driver uses the kernel's mac80211 subsystem.
  82. In order to use this driver, you will need a microcode (uCode)
  83. image for it. You can obtain the microcode from:
  84. <http://intellinuxwireless.org/>.
  85. The microcode is typically installed in /lib/firmware. You can
  86. look in the hotplug script /etc/hotplug/firmware.agent to
  87. determine which directory FIRMWARE_DIR is set to when the script
  88. runs.
  89. If you want to compile the driver as a module ( = code which can be
  90. inserted in and removed from the running kernel whenever you want),
  91. say M here and read <file:Documentation/kbuild/modules.txt>. The
  92. module will be called iwl3945.
  93. config IWL3945_SPECTRUM_MEASUREMENT
  94. bool "Enable Spectrum Measurement in iwl3945 driver"
  95. depends on IWL3945
  96. ---help---
  97. This option will enable spectrum measurement for the iwl3945 driver.