mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 20:30:41 +00:00

Currently only PCI devices are supported in Ath12k driver. Refactor Ath12k module_init and module_exit to include Ath12k AHB support. Add Ath12k AHB support in Kconfig with dependency on Remoteproc driver. Ath12k AHB support relies on remoteproc driver for firmware download, power up/down etc. Tested-on: IPQ5332 hw1.0 AHB WLAN.WBE.1.3.1-00130-QCAHKSWPL_SILICONZ-1 Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.1.1-00210-QCAHKSWPL_SILICONZ-1 Signed-off-by: Balamurugan S <quic_bselvara@quicinc.com> Co-developed-by: P Praneesh <quic_ppranees@quicinc.com> Signed-off-by: P Praneesh <quic_ppranees@quicinc.com> Reviewed-by: Vasanthakumar Thiagarajan <vasanthakumar.thiagarajan@oss.qualcomm.com> Signed-off-by: Raj Kumar Bhagat <quic_rajkbhag@quicinc.com> Link: https://patch.msgid.link/20250321-ath12k-ahb-v12-13-bb389ed76ae5@quicinc.com Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
36 lines
771 B
Makefile
36 lines
771 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
obj-$(CONFIG_ATH12K) += ath12k.o
|
|
ath12k-y += core.o \
|
|
hal.o \
|
|
hal_tx.o \
|
|
hal_rx.o \
|
|
wmi.o \
|
|
mac.o \
|
|
reg.o \
|
|
htc.o \
|
|
qmi.o \
|
|
dp.o \
|
|
dp_tx.o \
|
|
dp_rx.o \
|
|
debug.o \
|
|
ce.o \
|
|
peer.o \
|
|
dbring.o \
|
|
hw.o \
|
|
mhi.o \
|
|
pci.o \
|
|
dp_mon.o \
|
|
fw.o \
|
|
p2p.o
|
|
|
|
ath12k-$(CONFIG_ATH12K_AHB) += ahb.o
|
|
ath12k-$(CONFIG_ATH12K_DEBUGFS) += debugfs.o debugfs_htt_stats.o debugfs_sta.o
|
|
ath12k-$(CONFIG_ACPI) += acpi.o
|
|
ath12k-$(CONFIG_ATH12K_TRACING) += trace.o
|
|
ath12k-$(CONFIG_PM) += wow.o
|
|
ath12k-$(CONFIG_ATH12K_COREDUMP) += coredump.o
|
|
ath12k-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|