Kconfig (2da4366f9e2c44afedec4acad65a99a3c7da1a35) | Kconfig (977df8bd5844c9370c26a9477418165b870da27c) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2config IWLWIFI 3 tristate "Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) " 4 depends on PCI && HAS_IOMEM && CFG80211 | 1# SPDX-License-Identifier: GPL-2.0-only 2config IWLWIFI 3 tristate "Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) " 4 depends on PCI && HAS_IOMEM && CFG80211 |
5 depends on IWLMEI || !IWLMEI |
|
5 select FW_LOADER 6 help 7 Select to build the driver supporting the: 8 9 Intel Wireless WiFi Link Next-Gen AGN 10 11 This option enables support for use with the following hardware: 12 Intel Wireless WiFi Link 6250AGN Adapter --- 74 unchanged lines hidden (view full) --- 87 88 Enabling broadcast filtering will drop any incoming wireless 89 broadcast frames, except some very specific predefined 90 patterns (e.g. incoming arp requests). 91 92 If unsure, don't enable this option, as some programs might 93 expect incoming broadcasts for their normal operations. 94 | 6 select FW_LOADER 7 help 8 Select to build the driver supporting the: 9 10 Intel Wireless WiFi Link Next-Gen AGN 11 12 This option enables support for use with the following hardware: 13 Intel Wireless WiFi Link 6250AGN Adapter --- 74 unchanged lines hidden (view full) --- 88 89 Enabling broadcast filtering will drop any incoming wireless 90 broadcast frames, except some very specific predefined 91 patterns (e.g. incoming arp requests). 92 93 If unsure, don't enable this option, as some programs might 94 expect incoming broadcasts for their normal operations. 95 |
95config IWLMEI 96 tristate "Intel Management Engine communication over WLAN" 97 depends on INTEL_MEI 98 depends on PM 99 depends on IWLMVM 100 help 101 Enables the iwlmei kernel module. 102 103 CSME stands for Converged Security and Management Engine. It is a CPU 104 on the chipset and runs a dedicated firmware. AMT (Active Management 105 Technology) is one of the applications that run on that CPU. AMT 106 allows to control the platform remotely. 107 108 This kernel module allows to communicate with the Intel Management 109 Engine over Wifi. This is supported starting from Tiger Lake 110 platforms and has been tested on 9260 devices only. 111 If AMT is configured not to use the wireless device, this module is 112 harmless (and useless). 113 Enabling this option on a platform that has a different device and 114 has Wireless enabled on AMT can prevent WiFi from working correctly. 115 116 For more information see 117 <https://software.intel.com/en-us/manageability/> 118 119 If unsure, say N. 120 | |
121menu "Debugging Options" 122 123config IWLWIFI_DEBUG 124 bool "Enable full debugging output in the iwlwifi driver" 125 help 126 This option will enable debug tracing output for the iwlwifi drivers 127 128 This will result in the kernel module being ~100k larger. You can --- 38 unchanged lines hidden (view full) --- 167 When tracing is not enabled, this option still has some 168 (though rather small) overhead. 169 170 If unsure, say Y so we can help you better when problems 171 occur. 172endmenu 173 174endif | 96menu "Debugging Options" 97 98config IWLWIFI_DEBUG 99 bool "Enable full debugging output in the iwlwifi driver" 100 help 101 This option will enable debug tracing output for the iwlwifi drivers 102 103 This will result in the kernel module being ~100k larger. You can --- 38 unchanged lines hidden (view full) --- 142 When tracing is not enabled, this option still has some 143 (though rather small) overhead. 144 145 If unsure, say Y so we can help you better when problems 146 occur. 147endmenu 148 149endif |
150 151config IWLMEI 152 tristate "Intel Management Engine communication over WLAN" 153 depends on INTEL_MEI 154 depends on PM 155 help 156 Enables the iwlmei kernel module. 157 158 CSME stands for Converged Security and Management Engine. It is a CPU 159 on the chipset and runs a dedicated firmware. AMT (Active Management 160 Technology) is one of the applications that run on that CPU. AMT 161 allows to control the platform remotely. 162 163 This kernel module allows to communicate with the Intel Management 164 Engine over Wifi. This is supported starting from Tiger Lake 165 platforms and has been tested on 9260 devices only. 166 If AMT is configured not to use the wireless device, this module is 167 harmless (and useless). 168 Enabling this option on a platform that has a different device and 169 has Wireless enabled on AMT can prevent WiFi from working correctly. 170 171 For more information see 172 <https://software.intel.com/en-us/manageability/> 173 174 If unsure, say N. |
|