Kconfig 5.1 KB

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