mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
43d2a30fa8
Add testmode interface for starting and using UTF firmware which is used to run factory tests. This is implemented by adding new state ATH10K_STATE_UTF and user space can enable this state with ATH10K_TM_CMD_UTF_START command. To go back to normal mode user space can send ATH10K_TM_CMD_UTF_STOP. Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
23 lines
464 B
Makefile
23 lines
464 B
Makefile
obj-$(CONFIG_ATH10K) += ath10k_core.o
|
|
ath10k_core-y += mac.o \
|
|
debug.o \
|
|
core.o \
|
|
htc.o \
|
|
htt.o \
|
|
htt_rx.o \
|
|
htt_tx.o \
|
|
txrx.o \
|
|
wmi.o \
|
|
bmi.o
|
|
|
|
ath10k_core-$(CONFIG_ATH10K_DEBUGFS) += spectral.o
|
|
ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o
|
|
|
|
obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o
|
|
ath10k_pci-y += pci.o \
|
|
ce.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|