mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
17f5559e0d
WCN3990 is integrated 802.11ac chipset with SNOC bus interface. Add snoc layer driver registration and associated ops. WCN3990 support is not yet complete as cold-boot handshake is done using qmi(Qualcomm-MSM-Interface) and qmi client support will be added once qmi framework is available. Signed-off-by: Govind Singh <govinds@codeaurora.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
43 lines
1003 B
Makefile
43 lines
1003 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
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 \
|
|
wmi-tlv.o \
|
|
bmi.o \
|
|
hw.o \
|
|
p2p.o \
|
|
swap.o
|
|
|
|
ath10k_core-$(CONFIG_ATH10K_SPECTRAL) += spectral.o
|
|
ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o
|
|
ath10k_core-$(CONFIG_THERMAL) += thermal.o
|
|
ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o
|
|
ath10k_core-$(CONFIG_PM) += wow.o
|
|
ath10k_core-$(CONFIG_DEV_COREDUMP) += coredump.o
|
|
ath10k_core-$(CONFIG_ATH10K_CE) += ce.o
|
|
|
|
obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o
|
|
ath10k_pci-y += pci.o
|
|
|
|
ath10k_pci-$(CONFIG_ATH10K_AHB) += ahb.o
|
|
|
|
obj-$(CONFIG_ATH10K_SDIO) += ath10k_sdio.o
|
|
ath10k_sdio-y += sdio.o
|
|
|
|
obj-$(CONFIG_ATH10K_USB) += ath10k_usb.o
|
|
ath10k_usb-y += usb.o
|
|
|
|
obj-$(CONFIG_ATH10K_SNOC) += ath10k_snoc.o
|
|
ath10k_snoc-y += snoc.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|