Kconfig 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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/bus/pci/drivers/${DRIVER}/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/bus/pci/drivers/${DRIVER}/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 IWLWIFI_DEBUGFS
  90. bool "Iwlwifi debugfs support"
  91. depends on IWLCORE && IWLWIFI_DEBUG && MAC80211_DEBUGFS
  92. ---help---
  93. Enable creation of debugfs files for the iwlwifi drivers.
  94. config IWL3945
  95. tristate "Intel PRO/Wireless 3945ABG/BG Network Connection"
  96. depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
  97. select FW_LOADER
  98. select IWLWIFI
  99. select MAC80211_LEDS if IWL3945_LEDS
  100. select LEDS_CLASS if IWL3945_LEDS
  101. ---help---
  102. Select to build the driver supporting the:
  103. Intel PRO/Wireless 3945ABG/BG Network Connection
  104. This driver uses the kernel's mac80211 subsystem.
  105. In order to use this driver, you will need a microcode (uCode)
  106. image for it. You can obtain the microcode from:
  107. <http://intellinuxwireless.org/>.
  108. The microcode is typically installed in /lib/firmware. You can
  109. look in the hotplug script /etc/hotplug/firmware.agent to
  110. determine which directory FIRMWARE_DIR is set to when the script
  111. runs.
  112. If you want to compile the driver as a module ( = code which can be
  113. inserted in and removed from the running kernel whenever you want),
  114. say M here and read <file:Documentation/kbuild/modules.txt>. The
  115. module will be called iwl3945.ko.
  116. config IWL3945_SPECTRUM_MEASUREMENT
  117. bool "Enable Spectrum Measurement in iwl3945 drivers"
  118. depends on IWL3945
  119. ---help---
  120. This option will enable spectrum measurement for the iwl3945 driver.
  121. config IWL3945_LEDS
  122. bool "Enable LEDS features in iwl3945 driver"
  123. depends on IWL3945
  124. ---help---
  125. This option enables LEDS for the iwl3945 driver.
  126. config IWL3945_DEBUG
  127. bool "Enable full debugging output in iwl3945 driver"
  128. depends on IWL3945
  129. ---help---
  130. This option will enable debug tracing output for the iwl3945
  131. driver.
  132. This will result in the kernel module being ~100k larger. You can
  133. control which debug output is sent to the kernel log by setting the
  134. value in
  135. /sys/bus/pci/drivers/${DRIVER}/debug_level
  136. This entry will only exist if this option is enabled.
  137. To set a value, simply echo an 8-byte hex value to the same file:
  138. % echo 0x43fff > /sys/bus/pci/drivers/${DRIVER}/debug_level
  139. You can find the list of debug mask values in:
  140. drivers/net/wireless/iwlwifi/iwl-3945-debug.h
  141. If this is your first time using this driver, you should say Y here
  142. as the debug information can assist others in helping you resolve
  143. any problems you may encounter.