mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ee29e6134b
The iwmc3200 driver selects other code in Kconfig that depends on EXPERIMENTAL. Kconfig warns about this when CONFIG_EXPERIMENTAL is not already set, so logically, these options should also be marked experimental or promoted to stable. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
config IWM
|
|
tristate "Intel Wireless Multicomm 3200 WiFi driver (EXPERIMENTAL)"
|
|
depends on MMC && EXPERIMENTAL
|
|
depends on CFG80211
|
|
select FW_LOADER
|
|
select IWMC3200TOP
|
|
help
|
|
The Intel Wireless Multicomm 3200 hardware is a combo
|
|
card with GPS, Bluetooth, WiMax and 802.11 radios. It
|
|
runs over SDIO and is typically found on Moorestown
|
|
based platform. This driver takes care of the 802.11
|
|
part, which is a fullmac one.
|
|
|
|
If you choose to build it as a module, it'll be called
|
|
iwmc3200wifi.ko.
|
|
|
|
config IWM_DEBUG
|
|
bool "Enable full debugging output in iwmc3200wifi"
|
|
depends on IWM && DEBUG_FS
|
|
help
|
|
This option will enable debug tracing and setting for iwm
|
|
|
|
You can set the debug level and module through debugfs. By
|
|
default all modules are set to the IWL_DL_ERR level.
|
|
To see the list of debug modules and levels, see iwm/debug.h
|
|
|
|
For example, if you want the full MLME debug output:
|
|
echo 0xff > /sys/kernel/debug/iwm/phyN/debug/mlme
|
|
|
|
Or, if you want the full debug, for all modules:
|
|
echo 0xff > /sys/kernel/debug/iwm/phyN/debug/level
|
|
echo 0xff > /sys/kernel/debug/iwm/phyN/debug/modules
|
|
|
|
config IWM_TRACING
|
|
bool "Enable event tracing for iwmc3200wifi"
|
|
depends on IWM && EVENT_TRACING
|
|
help
|
|
Say Y here to trace all the commands and responses between
|
|
the driver and firmware (including TX/RX frames) with ftrace.
|