blob: 4a5c8c0d007d9eacc051c4eb53367c3d2385d89d [file] [log] [blame]
Tomas Winklerdf48c322008-03-06 10:40:19 -08001config IWLCORE
2 tristate "Intel Wireless Wifi Core"
3 depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
4
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005config IWLWIFI_LEDS
6 bool "Enable LEDS features in iwlwifi driver"
7 depends on IWLCORE && MAC80211_LEDS && LEDS_CLASS
8 ---help---
9 This option enables LEDS for the iwlwifi drivers
10
11
Mohamed Abbasad97edd2008-03-28 16:21:06 -070012config IWLCORE_RFKILL
13 boolean "IWLWIFI RF kill support"
14 depends on IWLCORE
15 select RFKILL
16 select RFKILL_INPUT
17
Zhu Yib481de92007-09-25 17:54:57 -070018config IWL4965
19 tristate "Intel Wireless WiFi 4965AGN"
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080020 depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080021 select FW_LOADER
Tomas Winklerdf48c322008-03-06 10:40:19 -080022 select IWLCORE
Zhu Yib481de92007-09-25 17:54:57 -070023 ---help---
24 Select to build the driver supporting the:
25
26 Intel Wireless WiFi Link 4965AGN
27
28 This driver uses the kernel's mac80211 subsystem.
29
Zhu Yib481de92007-09-25 17:54:57 -070030 In order to use this driver, you will need a microcode (uCode)
31 image for it. You can obtain the microcode from:
32
33 <http://intellinuxwireless.org/>.
34
Reinette Chatree7a28272008-01-14 17:46:24 -080035 The microcode is typically installed in /lib/firmware. You can
36 look in the hotplug script /etc/hotplug/firmware.agent to
37 determine which directory FIRMWARE_DIR is set to when the script
38 runs.
Zhu Yib481de92007-09-25 17:54:57 -070039
40 If you want to compile the driver as a module ( = code which can be
Pascal Terjan7c44b6e2008-03-13 19:13:24 +010041 inserted in and removed from the running kernel whenever you want),
Dirk Hohndele4031492007-10-30 13:37:19 -070042 say M here and read <file:Documentation/kbuild/modules.txt>. The
43 module will be called iwl4965.ko.
Zhu Yib481de92007-09-25 17:54:57 -070044
Ron Rindjunsky923effd2007-11-26 16:14:35 +020045config IWL4965_HT
46 bool "Enable 802.11n HT features in iwl4965 driver"
47 depends on EXPERIMENTAL
Ron Rindjunsky292ae172008-02-06 11:20:39 -080048 depends on IWL4965
Ron Rindjunsky923effd2007-11-26 16:14:35 +020049 ---help---
50 This option enables IEEE 802.11n High Throughput features
51 for the iwl4965 driver.
52
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070053config IWL4965_LEDS
54 bool "Enable LEDS features in iwl4965 driver"
55 depends on IWL4965 && IWLWIFI_LEDS
56 ---help---
57 This option enables LEDS for the iwlwifi drivers
58
59
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080060config IWL4965_SPECTRUM_MEASUREMENT
Zhu Yi66c6b132008-01-04 22:53:11 -080061 bool "Enable Spectrum Measurement in iwl4965 driver"
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080062 depends on IWL4965
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080063 ---help---
64 This option will enable spectrum measurement for the iwl4965 driver.
65
66config IWL4965_SENSITIVITY
67 bool "Enable Sensitivity Calibration in iwl4965 driver"
68 depends on IWL4965
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080069 ---help---
70 This option will enable sensitivity calibration for the iwl4965
71 driver.
72
Tomas Winkler0a6857e2008-03-12 16:58:49 -070073config IWLWIFI_DEBUG
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080074 bool "Enable full debugging output in iwl4965 driver"
75 depends on IWL4965
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080076 ---help---
77 This option will enable debug tracing output for the iwl4965
78 driver.
79
80 This will result in the kernel module being ~100k larger. You can
81 control which debug output is sent to the kernel log by setting the
82 value in
83
84 /sys/bus/pci/drivers/${DRIVER}/debug_level
85
86 This entry will only exist if this option is enabled.
87
88 To set a value, simply echo an 8-byte hex value to the same file:
89
90 % echo 0x43fff > /sys/bus/pci/drivers/${DRIVER}/debug_level
91
92 You can find the list of debug mask values in:
93 drivers/net/wireless/iwlwifi/iwl-4965-debug.h
94
95 If this is your first time using this driver, you should say Y here
96 as the debug information can assist others in helping you resolve
97 any problems you may encounter.
98
Tomas Winkler712b6cf2008-03-12 16:58:52 -070099config IWLWIFI_DEBUGFS
100 bool "Iwlwifi debugfs support"
101 depends on IWLCORE && IWLWIFI_DEBUG && MAC80211_DEBUGFS
102 ---help---
103 Enable creation of debugfs files for the iwlwifi drivers.
104
Zhu Yib481de92007-09-25 17:54:57 -0700105config IWL3945
106 tristate "Intel PRO/Wireless 3945ABG/BG Network Connection"
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800107 depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800108 select FW_LOADER
Zhu Yib481de92007-09-25 17:54:57 -0700109 ---help---
110 Select to build the driver supporting the:
111
112 Intel PRO/Wireless 3945ABG/BG Network Connection
113
114 This driver uses the kernel's mac80211 subsystem.
115
Zhu Yib481de92007-09-25 17:54:57 -0700116 In order to use this driver, you will need a microcode (uCode)
117 image for it. You can obtain the microcode from:
118
119 <http://intellinuxwireless.org/>.
120
Reinette Chatree7a28272008-01-14 17:46:24 -0800121 The microcode is typically installed in /lib/firmware. You can
122 look in the hotplug script /etc/hotplug/firmware.agent to
123 determine which directory FIRMWARE_DIR is set to when the script
124 runs.
Zhu Yib481de92007-09-25 17:54:57 -0700125
126 If you want to compile the driver as a module ( = code which can be
Pascal Terjan7c44b6e2008-03-13 19:13:24 +0100127 inserted in and removed from the running kernel whenever you want),
Dirk Hohndele4031492007-10-30 13:37:19 -0700128 say M here and read <file:Documentation/kbuild/modules.txt>. The
129 module will be called iwl3945.ko.
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800130
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800131config IWL3945_SPECTRUM_MEASUREMENT
132 bool "Enable Spectrum Measurement in iwl3945 drivers"
133 depends on IWL3945
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800134 ---help---
135 This option will enable spectrum measurement for the iwl3945 driver.
136
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700137config IWL3945_LEDS
138 bool "Enable LEDS features in iwl3945 driver"
139 depends on IWL3945 && MAC80211_LEDS && LEDS_CLASS
140 ---help---
141 This option enables LEDS for the iwl3945 driver.
142
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800143config IWL3945_DEBUG
144 bool "Enable full debugging output in iwl3945 driver"
145 depends on IWL3945
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800146 ---help---
147 This option will enable debug tracing output for the iwl3945
148 driver.
149
150 This will result in the kernel module being ~100k larger. You can
151 control which debug output is sent to the kernel log by setting the
152 value in
153
154 /sys/bus/pci/drivers/${DRIVER}/debug_level
155
156 This entry will only exist if this option is enabled.
157
158 To set a value, simply echo an 8-byte hex value to the same file:
159
160 % echo 0x43fff > /sys/bus/pci/drivers/${DRIVER}/debug_level
161
162 You can find the list of debug mask values in:
163 drivers/net/wireless/iwlwifi/iwl-3945-debug.h
164
165 If this is your first time using this driver, you should say Y here
166 as the debug information can assist others in helping you resolve
167 any problems you may encounter.
168