xref: /freebsd/sys/modules/iwlwifi/Makefile (revision 5036d9652a5701d00e9e40ea942c278e9f77d33d)
1DEVIWLWIFIDIR=	${SRCTOP}/sys/contrib/dev/iwlwifi
2
3.PATH: ${DEVIWLWIFIDIR}
4
5WITH_CONFIG_PM=	0
6WITH_DEBUGFS=	0
7
8KMOD=	if_iwlwifi
9
10SRCS=	iwl-drv.c
11SRCS+=	iwl-dbg-tlv.c iwl-debug.c
12SRCS+=	iwl-io.c iwl-nvm-parse.c iwl-nvm-utils.c iwl-phy-db.c iwl-trans.c
13SRCS+=	cfg/7000.c cfg/8000.c cfg/9000.c cfg/22000.c
14SRCS+=	cfg/ax210.c cfg/bz.c cfg/sc.c
15SRCS+=	fw/dbg.c fw/dump.c fw/img.c fw/notif-wait.c
16SRCS+=	fw/paging.c fw/pnvm.c fw/regulatory.c fw/rs.c fw/smem.c fw/init.c
17#SRCS+=	fw/uefi.c
18SRCS+=	mvm/rs.c mvm/binding.c mvm/coex.c mvm/ftm-initiator.c
19SRCS+=	mvm/ftm-responder.c mvm/fw.c mvm/mac-ctxt.c
20SRCS+=	mvm/mac80211.c mvm/nvm.c mvm/offloading.c mvm/ops.c
21SRCS+=	mvm/phy-ctxt.c mvm/power.c mvm/quota.c mvm/rs-fw.c mvm/rfi.c
22SRCS+=	mvm/rx.c mvm/rxmq.c mvm/scan.c mvm/sf.c mvm/sta.c mvm/tdls.c
23SRCS+=	mvm/time-event.c mvm/tt.c mvm/tx.c mvm/utils.c
24SRCS+=	mvm/link.c
25SRCS+=	mvm/mld-key.c mvm/mld-mac.c mvm/mld-mac80211.c mvm/mld-sta.c
26SRCS+=	mvm/ptp.c mvm/time-sync.c
27#SRCS+=	mvm/led.c
28SRCS+=	pcie/ctxt-info-gen3.c pcie/ctxt-info.c
29SRCS+=	pcie/drv.c pcie/rx.c pcie/trans-gen2.c pcie/trans.c
30SRCS+=	pcie/tx-gen2.c pcie/tx.c
31
32.if defined(WITH_DEBUGFS) && ${WITH_DEBUGFS} > 0
33SRCS+=	fw/debugfs.c mvm/debugfs.c mvm/debugfs-vif.c
34CFLAGS+=	-DCONFIG_IWLWIFI_DEBUGFS=${WITH_DEBUGFS}
35CFLAGS+=	-DCONFIG_MAC80211_DEBUGFS=${WITH_DEBUGFS}
36.endif
37.if defined(WITH_CONFIG_PM) && ${WITH_CONFIG_PM} > 0
38SRCS+=	mvm/d3.c
39CFLAGS+=	-DCONFIG_PM=${WITH_CONFIG_PM}
40CFLAGS+=	-DCONFIG_PM_SLEEP=${WITH_CONFIG_PM}
41.endif
42
43SRCS+=	iwl-devtrace.c
44
45# Other
46SRCS+=	${LINUXKPI_GENSRCS}
47SRCS+=	opt_wlan.h opt_inet6.h opt_inet.h opt_acpi.h
48
49CFLAGS+=	-DKBUILD_MODNAME='"iwlwifi"'
50CFLAGS+=	-DLINUXKPI_VERSION=61100
51
52CFLAGS+=	-I${DEVIWLWIFIDIR}
53CFLAGS+=	${LINUXKPI_INCLUDES}
54CFLAGS+=	-DCONFIG_IWLDVM=0
55CFLAGS+=	-DCONFIG_IWLMVM=1
56# Helpful after fresh imports.
57#CFLAGS+=	-ferror-limit=0
58
59#CFLAGS+=	-DCONFIG_ACPI=1
60#CFLAGS+=	-DCONFIG_INET=1		# Need LKPI TSO implementation.
61#CFLAGS+=	-DCONFIG_IPV6=1
62CFLAGS+=	-DCONFIG_IWLWIFI_DEBUG=1
63#CFLAGS+=	-DCONFIG_IWLWIFI_LEDS=1
64#CFLAGS+=	-DCONFIG_IWLWIFI_OPMODE_MODULAR=1
65CFLAGS+=	-DCONFIG_IWLWIFI_DEVICE_TRACING=1
66#CFLAGS+=	-DCONFIG_LOCKDEP=1
67#CFLAGS+=	-DCONFIG_NL80211_TESTMODE=1
68#CFLAGS+=	-DCONFIG_THERMAL=1
69#CFLAGS+=	-DCONFIG_EFI=1
70
71.include <bsd.kmod.mk>
72