RF Interference Mitigation is a new feature targeted to handle the problem of interference between DDR memory and WiFi. The role of the driver is to configure FW with the table holding a mapping between problematic channels/bands and the corresponding frequencies. This patch adds RFI infrastructure and adds two debugfs hooks: - send RFI configuration command (currently with a default table) which will reset feature in the FW - read the table, used by the FW (which can be a subset of the table that driver sent). Signed-off-by: Gregory Greenman <gregory.greenman@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Link: https://lore.kernel.org/r/iwlwifi.20210210171218.2cea55a09bc7.I634b79795abad499ce442631d6672ffef8fc6d41@changeid Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
14 lines
535 B
Makefile
14 lines
535 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_IWLMVM) += iwlmvm.o
|
|
iwlmvm-y += fw.o mac80211.o nvm.o ops.o phy-ctxt.o mac-ctxt.o
|
|
iwlmvm-y += utils.o rx.o rxmq.o tx.o binding.o quota.o sta.o sf.o
|
|
iwlmvm-y += scan.o time-event.o rs.o rs-fw.o
|
|
iwlmvm-y += power.o coex.o
|
|
iwlmvm-y += tt.o offloading.o tdls.o
|
|
iwlmvm-y += ftm-responder.o ftm-initiator.o
|
|
iwlmvm-y += rfi.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_DEBUGFS) += debugfs.o debugfs-vif.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_LEDS) += led.o
|
|
iwlmvm-$(CONFIG_PM) += d3.o
|
|
|
|
ccflags-y += -I $(srctree)/$(src)/../
|