freebsd-src/sys/modules/iwlwifi/Makefile
Bjoern A. Zeeb 491e4f5c86 iwlwifi: add the d3 (PM) bits to the Makefile (disabled)
Add the logic to conditionally enable PM for iwlwifi.
This should help suspend/resume in the future.
For now leave it disabled until other preconditional problems are
sorted.

Sponsored by:	The FreeBSD Foundation (2023)
Reviewed by:	cc
Differential Revision: https://reviews.freebsd.org/D43647

(cherry picked from commit 8f7c32a41a)
2024-02-18 18:31:16 +00:00

74 lines
2.2 KiB
Makefile

DEVIWLWIFIDIR= ${SRCTOP}/sys/contrib/dev/iwlwifi
.PATH: ${DEVIWLWIFIDIR}
WITH_CONFIG_PM= 0
WITH_DEBUGFS= 0
KMOD= if_iwlwifi
SRCS= iwl-drv.c
SRCS+= iwl-dbg-tlv.c iwl-debug.c
SRCS+= iwl-eeprom-parse.c iwl-eeprom-read.c
SRCS+= iwl-io.c iwl-nvm-parse.c iwl-phy-db.c iwl-trans.c
SRCS+= cfg/7000.c cfg/8000.c cfg/9000.c cfg/22000.c
SRCS+= cfg/ax210.c cfg/bz.c cfg/sc.c
SRCS+= fw/dbg.c fw/dump.c fw/img.c fw/notif-wait.c
SRCS+= fw/paging.c fw/pnvm.c fw/rs.c fw/smem.c fw/init.c
#SRCS+= fw/uefi.c
SRCS+= mvm/rs.c mvm/binding.c mvm/coex.c mvm/ftm-initiator.c
SRCS+= mvm/ftm-responder.c mvm/fw.c mvm/mac-ctxt.c
SRCS+= mvm/mac80211.c mvm/nvm.c mvm/offloading.c mvm/ops.c
SRCS+= mvm/phy-ctxt.c mvm/power.c mvm/quota.c mvm/rs-fw.c mvm/rfi.c
SRCS+= mvm/rx.c mvm/rxmq.c mvm/scan.c mvm/sf.c mvm/sta.c mvm/tdls.c
SRCS+= mvm/time-event.c mvm/tt.c mvm/tx.c mvm/utils.c
SRCS+= mvm/link.c
SRCS+= mvm/mld-key.c mvm/mld-mac.c mvm/mld-mac80211.c mvm/mld-sta.c
SRCS+= mvm/ptp.c mvm/time-sync.c
#SRCS+= mvm/led.c
SRCS+= pcie/ctxt-info-gen3.c pcie/ctxt-info.c
SRCS+= pcie/drv.c pcie/rx.c pcie/trans-gen2.c pcie/trans.c
SRCS+= pcie/tx-gen2.c pcie/tx.c
SRCS+= queue/tx.c
.if defined(WITH_DEBUGFS) && ${WITH_DEBUGFS} > 0
SRCS+= fw/debugfs.c mvm/debugfs.c mvm/debugfs-vif.c
CFLAGS+= -DCONFIG_IWLWIFI_DEBUGFS=${WITH_DEBUGFS}
CFLAGS+= -DCONFIG_MAC80211_DEBUGFS=${WITH_DEBUGFS}
.endif
.if defined(WITH_CONFIG_PM) && ${WITH_CONFIG_PM} > 0
SRCS+= mvm/d3.c
CFLAGS+= -DCONFIG_PM=${WITH_CONFIG_PM}
CFLAGS+= -DCONFIG_PM_SLEEP=${WITH_CONFIG_PM}
.endif
SRCS+= iwl-devtrace.c
# Other
SRCS+= ${LINUXKPI_GENSRCS}
SRCS+= opt_wlan.h opt_inet6.h opt_inet.h opt_acpi.h
CFLAGS+= -DKBUILD_MODNAME='"iwlwifi"'
CFLAGS+= -I${DEVIWLWIFIDIR}
CFLAGS+= ${LINUXKPI_INCLUDES}
CFLAGS+= -DCONFIG_IWLDVM=0
CFLAGS+= -DCONFIG_IWLMVM=1
# Helpful after fresh imports.
#CFLAGS+= -ferror-limit=0
#CFLAGS+= -DCONFIG_ACPI=1
#CFLAGS+= -DCONFIG_INET=1 # Need LKPI TSO implementation.
#CFLAGS+= -DCONFIG_IPV6=1
CFLAGS+= -DCONFIG_IWLWIFI_DEBUG=1
#CFLAGS+= -DCONFIG_IWLWIFI_LEDS=1
#CFLAGS+= -DCONFIG_IWLWIFI_OPMODE_MODULAR=1
CFLAGS+= -DCONFIG_IWLWIFI_DEVICE_TRACING=1
#CFLAGS+= -DCONFIG_LOCKDEP=1
#CFLAGS+= -DCONFIG_NL80211_TESTMODE=1
#CFLAGS+= -DCONFIG_THERMAL=1
#CFLAGS+= -DCONFIG_EFI=1
.include <bsd.kmod.mk>