Kconfig 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. config IWLWIFI
  2. bool
  3. default n
  4. config IWLCORE
  5. tristate "Intel Wireless Wifi Core"
  6. depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
  7. select IWLWIFI
  8. select MAC80211_LEDS if IWLWIFI_LEDS
  9. select LEDS_CLASS if IWLWIFI_LEDS
  10. select RFKILL if IWLWIFI_RFKILL
  11. select RFKILL_INPUT if IWLWIFI_RFKILL
  12. config IWLWIFI_LEDS
  13. bool
  14. default n
  15. config IWLWIFI_RUN_TIME_CALIB
  16. bool
  17. depends on IWLCORE
  18. default n
  19. ---help---
  20. This option will enable run time calibration for the iwlwifi driver.
  21. These calibrations are Sensitivity and Chain Noise.
  22. config IWLWIFI_RFKILL
  23. boolean "IWLWIFI RF kill support"
  24. depends on IWLCORE
  25. config IWL4965
  26. tristate "Intel Wireless WiFi 4965AGN"
  27. depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
  28. select FW_LOADER
  29. select IWLCORE
  30. ---help---
  31. Select to build the driver supporting the:
  32. Intel Wireless WiFi Link 4965AGN
  33. This driver uses the kernel's mac80211 subsystem.
  34. In order to use this driver, you will need a microcode (uCode)
  35. image for it. You can obtain the microcode from:
  36. <http://intellinuxwireless.org/>.
  37. The microcode is typically installed in /lib/firmware. You can
  38. look in the hotplug script /etc/hotplug/firmware.agent to
  39. determine which directory FIRMWARE_DIR is set to when the script
  40. runs.
  41. If you want to compile the driver as a module ( = code which can be
  42. inserted in and removed from the running kernel whenever you want),
  43. say M here and read <file:Documentation/kbuild/modules.txt>. The
  44. module will be called iwl4965.ko.
  45. config IWL4965_HT
  46. bool "Enable 802.11n HT features in iwl4965 driver"
  47. depends on EXPERIMENTAL
  48. depends on IWL4965
  49. ---help---
  50. This option enables IEEE 802.11n High Throughput features
  51. for the iwl4965 driver.
  52. config IWL4965_LEDS
  53. bool "Enable LEDS features in iwl4965 driver"
  54. depends on IWL4965
  55. select IWLWIFI_LEDS
  56. ---help---
  57. This option enables LEDS for the iwlwifi drivers
  58. config IWL4965_SPECTRUM_MEASUREMENT
  59. bool "Enable Spectrum Measurement in iwl4965 driver"
  60. depends on IWL4965
  61. ---help---
  62. This option will enable spectrum measurement for the iwl4965 driver.
  63. config IWL4965_RUN_TIME_CALIB
  64. bool "Enable run time Calibration for 4965 NIC"
  65. select IWLWIFI_RUN_TIME_CALIB
  66. depends on IWL4965
  67. default y
  68. ---help---
  69. This option will enable run time calibration for the iwl4965 driver.
  70. These calibrations are Sensitivity and Chain Noise. If unsure, say yes
  71. config IWLWIFI_DEBUG
  72. bool "Enable full debugging output in iwl4965 driver"
  73. depends on IWL4965
  74. ---help---
  75. This option will enable debug tracing output for the iwl4965
  76. driver.
  77. This will result in the kernel module being ~100k larger. You can
  78. control which debug output is sent to the kernel log by setting the
  79. value in
  80. /sys/class/net/wlan0/device/debug_level
  81. This entry will only exist if this option is enabled.
  82. To set a value, simply echo an 8-byte hex value to the same file:
  83. % echo 0x43fff > /sys/class/net/wlan0/device/debug_level
  84. You can find the list of debug mask values in:
  85. drivers/net/wireless/iwlwifi/iwl-4965-debug.h
  86. If this is your first time using this driver, you should say Y here
  87. as the debug information can assist others in helping you resolve
  88. any problems you may encounter.
  89. config IWL5000
  90. bool "Intel Wireless WiFi 5000AGN"
  91. depends on IWL4965
  92. ---help---
  93. This option enables support for Intel Wireless WiFi Link 5000AGN Family
  94. Dependency on 4965 is temporary
  95. config IWL5000_RUN_TIME_CALIB
  96. bool "Enable run time Calibration for 5000 NIC"
  97. select IWLWIFI_RUN_TIME_CALIB
  98. depends on IWL5000
  99. default y
  100. ---help---
  101. This option will enable run time calibration for the iwl5000 driver.
  102. These calibrations are Sensitivity and Chain Noise. If unsure, say yes
  103. config IWLWIFI_DEBUGFS
  104. bool "Iwlwifi debugfs support"
  105. depends on IWLCORE && IWLWIFI_DEBUG && MAC80211_DEBUGFS
  106. ---help---
  107. Enable creation of debugfs files for the iwlwifi drivers.
  108. config IWL3945
  109. tristate "Intel PRO/Wireless 3945ABG/BG Network Connection"
  110. depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
  111. select FW_LOADER
  112. select IWLWIFI
  113. select MAC80211_LEDS if IWL3945_LEDS
  114. select LEDS_CLASS if IWL3945_LEDS
  115. ---help---
  116. Select to build the driver supporting the:
  117. Intel PRO/Wireless 3945ABG/BG Network Connection
  118. This driver uses the kernel's mac80211 subsystem.
  119. In order to use this driver, you will need a microcode (uCode)
  120. image for it. You can obtain the microcode from:
  121. <http://intellinuxwireless.org/>.
  122. The microcode is typically installed in /lib/firmware. You can
  123. look in the hotplug script /etc/hotplug/firmware.agent to
  124. determine which directory FIRMWARE_DIR is set to when the script
  125. runs.
  126. If you want to compile the driver as a module ( = code which can be
  127. inserted in and removed from the running kernel whenever you want),
  128. say M here and read <file:Documentation/kbuild/modules.txt>. The
  129. module will be called iwl3945.ko.
  130. config IWL3945_SPECTRUM_MEASUREMENT
  131. bool "Enable Spectrum Measurement in iwl3945 drivers"
  132. depends on IWL3945
  133. ---help---
  134. This option will enable spectrum measurement for the iwl3945 driver.
  135. config IWL3945_LEDS
  136. bool "Enable LEDS features in iwl3945 driver"
  137. depends on IWL3945
  138. ---help---
  139. This option enables LEDS for the iwl3945 driver.
  140. config IWL3945_DEBUG
  141. bool "Enable full debugging output in iwl3945 driver"
  142. depends on IWL3945
  143. ---help---
  144. This option will enable debug tracing output for the iwl3945
  145. driver.
  146. This will result in the kernel module being ~100k larger. You can
  147. control which debug output is sent to the kernel log by setting the
  148. value in
  149. /sys/bus/pci/drivers/${DRIVER}/debug_level
  150. This entry will only exist if this option is enabled.
  151. To set a value, simply echo an 8-byte hex value to the same file:
  152. % echo 0x43fff > /sys/bus/pci/drivers/${DRIVER}/debug_level
  153. You can find the list of debug mask values in:
  154. drivers/net/wireless/iwlwifi/iwl-3945-debug.h
  155. If this is your first time using this driver, you should say Y here
  156. as the debug information can assist others in helping you resolve
  157. any problems you may encounter.