2008-04-28 06:38:30 +08:00
|
|
|
config IWLWIFI
|
2009-02-14 03:51:19 +08:00
|
|
|
tristate "Intel Wireless Wifi"
|
2009-10-29 04:29:30 +08:00
|
|
|
depends on PCI && MAC80211 && EXPERIMENTAL
|
2009-02-14 03:51:19 +08:00
|
|
|
select FW_LOADER
|
2008-03-26 07:33:36 +08:00
|
|
|
|
2009-02-14 03:51:19 +08:00
|
|
|
config IWLWIFI_SPECTRUM_MEASUREMENT
|
|
|
|
bool "Enable Spectrum Measurement in iwlagn driver"
|
|
|
|
depends on IWLWIFI
|
|
|
|
---help---
|
|
|
|
This option will enable spectrum measurement for the iwlagn driver.
|
2008-03-29 07:21:06 +08:00
|
|
|
|
2008-07-21 23:54:42 +08:00
|
|
|
config IWLWIFI_DEBUG
|
2009-01-24 05:45:17 +08:00
|
|
|
bool "Enable full debugging output in iwlagn and iwl3945 drivers"
|
2009-02-14 03:51:19 +08:00
|
|
|
depends on IWLWIFI
|
2008-07-21 23:54:42 +08:00
|
|
|
---help---
|
|
|
|
This option will enable debug tracing output for the iwlwifi drivers
|
|
|
|
|
|
|
|
This will result in the kernel module being ~100k larger. You can
|
|
|
|
control which debug output is sent to the kernel log by setting the
|
|
|
|
value in
|
|
|
|
|
|
|
|
/sys/class/net/wlan0/device/debug_level
|
|
|
|
|
|
|
|
This entry will only exist if this option is enabled.
|
|
|
|
|
|
|
|
To set a value, simply echo an 8-byte hex value to the same file:
|
|
|
|
|
|
|
|
% echo 0x43fff > /sys/class/net/wlan0/device/debug_level
|
|
|
|
|
|
|
|
You can find the list of debug mask values in:
|
|
|
|
drivers/net/wireless/iwlwifi/iwl-debug.h
|
|
|
|
|
|
|
|
If this is your first time using this driver, you should say Y here
|
|
|
|
as the debug information can assist others in helping you resolve
|
|
|
|
any problems you may encounter.
|
|
|
|
|
|
|
|
config IWLWIFI_DEBUGFS
|
2009-02-14 03:51:19 +08:00
|
|
|
bool "iwlagn debugfs support"
|
|
|
|
depends on IWLWIFI && IWLWIFI_DEBUG && MAC80211_DEBUGFS
|
2008-07-21 23:54:42 +08:00
|
|
|
---help---
|
|
|
|
Enable creation of debugfs files for the iwlwifi drivers.
|
|
|
|
|
2009-10-03 04:44:02 +08:00
|
|
|
config IWLWIFI_DEVICE_TRACING
|
|
|
|
bool "iwlwifi device access tracing"
|
|
|
|
depends on IWLWIFI
|
|
|
|
depends on EVENT_TRACING
|
|
|
|
help
|
|
|
|
Say Y here to trace all commands, including TX frames and IO
|
|
|
|
accesses, sent to the device. If you say yes, iwlwifi will
|
|
|
|
register with the ftrace framework for event tracing and dump
|
|
|
|
all this information to the ringbuffer, you may need to
|
|
|
|
increase the ringbuffer size. See the ftrace documentation
|
|
|
|
for more information.
|
|
|
|
|
|
|
|
When tracing is not enabled, this option still has some
|
|
|
|
(though rather small) overhead.
|
|
|
|
|
|
|
|
If unsure, say Y so we can help you better when problems
|
|
|
|
occur.
|
|
|
|
|
2008-07-21 23:54:42 +08:00
|
|
|
config IWLAGN
|
2009-02-14 03:51:19 +08:00
|
|
|
tristate "Intel Wireless WiFi Next Gen AGN (iwlagn)"
|
2009-01-20 07:30:31 +08:00
|
|
|
depends on IWLWIFI
|
2007-09-26 08:54:57 +08:00
|
|
|
---help---
|
2007-10-25 17:15:51 +08:00
|
|
|
Select to build the driver supporting the:
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2008-07-21 23:54:42 +08:00
|
|
|
Intel Wireless WiFi Link Next-Gen AGN
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2007-10-25 17:15:51 +08:00
|
|
|
This driver uses the kernel's mac80211 subsystem.
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2007-10-25 17:15:51 +08:00
|
|
|
In order to use this driver, you will need a microcode (uCode)
|
|
|
|
image for it. You can obtain the microcode from:
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2007-10-25 17:15:51 +08:00
|
|
|
<http://intellinuxwireless.org/>.
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2008-01-15 09:46:24 +08:00
|
|
|
The microcode is typically installed in /lib/firmware. You can
|
|
|
|
look in the hotplug script /etc/hotplug/firmware.agent to
|
|
|
|
determine which directory FIRMWARE_DIR is set to when the script
|
|
|
|
runs.
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2007-10-25 17:15:51 +08:00
|
|
|
If you want to compile the driver as a module ( = code which can be
|
2008-03-14 02:13:24 +08:00
|
|
|
inserted in and removed from the running kernel whenever you want),
|
2007-10-25 17:15:51 +08:00
|
|
|
say M here and read <file:Documentation/kbuild/modules.txt>. The
|
2009-06-05 06:44:53 +08:00
|
|
|
module will be called iwlagn.
|
2007-09-26 08:54:57 +08:00
|
|
|
|
|
|
|
|
2008-07-21 23:54:42 +08:00
|
|
|
config IWL4965
|
|
|
|
bool "Intel Wireless WiFi 4965AGN"
|
|
|
|
depends on IWLAGN
|
|
|
|
---help---
|
|
|
|
This option enables support for Intel Wireless WiFi Link 4965AGN
|
2007-09-26 08:54:57 +08:00
|
|
|
|
2008-04-25 02:55:23 +08:00
|
|
|
config IWL5000
|
2009-03-07 05:52:55 +08:00
|
|
|
bool "Intel Wireless WiFi 5000AGN; Intel WiFi Link 1000, 6000, and 6050 Series"
|
2008-07-21 23:54:42 +08:00
|
|
|
depends on IWLAGN
|
2008-04-25 02:55:23 +08:00
|
|
|
---help---
|
|
|
|
This option enables support for Intel Wireless WiFi Link 5000AGN Family
|
2008-03-13 07:58:52 +08:00
|
|
|
|
2007-09-26 08:54:57 +08:00
|
|
|
config IWL3945
|
2009-02-14 03:51:19 +08:00
|
|
|
tristate "Intel PRO/Wireless 3945ABG/BG Network Connection (iwl3945)"
|
2009-01-20 07:30:31 +08:00
|
|
|
depends on IWLWIFI
|
2007-09-26 08:54:57 +08:00
|
|
|
---help---
|
|
|
|
Select to build the driver supporting the:
|
|
|
|
|
|
|
|
Intel PRO/Wireless 3945ABG/BG Network Connection
|
|
|
|
|
|
|
|
This driver uses the kernel's mac80211 subsystem.
|
|
|
|
|
|
|
|
In order to use this driver, you will need a microcode (uCode)
|
|
|
|
image for it. You can obtain the microcode from:
|
|
|
|
|
|
|
|
<http://intellinuxwireless.org/>.
|
|
|
|
|
2008-01-15 09:46:24 +08:00
|
|
|
The microcode is typically installed in /lib/firmware. You can
|
|
|
|
look in the hotplug script /etc/hotplug/firmware.agent to
|
|
|
|
determine which directory FIRMWARE_DIR is set to when the script
|
|
|
|
runs.
|
2007-09-26 08:54:57 +08:00
|
|
|
|
|
|
|
If you want to compile the driver as a module ( = code which can be
|
2008-03-14 02:13:24 +08:00
|
|
|
inserted in and removed from the running kernel whenever you want),
|
2007-10-31 04:37:19 +08:00
|
|
|
say M here and read <file:Documentation/kbuild/modules.txt>. The
|
2009-06-05 06:44:53 +08:00
|
|
|
module will be called iwl3945.
|
2007-10-25 17:15:51 +08:00
|
|
|
|
|
|
|
config IWL3945_SPECTRUM_MEASUREMENT
|
2009-02-14 03:51:19 +08:00
|
|
|
bool "Enable Spectrum Measurement in iwl3945 driver"
|
2007-10-25 17:15:51 +08:00
|
|
|
depends on IWL3945
|
|
|
|
---help---
|
|
|
|
This option will enable spectrum measurement for the iwl3945 driver.
|