blob: 26e5ab37fcc7491c4b8b1dcb934286f09267c945 [file] [log] [blame]
Ben Menchaca84f36632014-02-28 20:57:38 +00001##########################################################################
Suman Ghosh9e4245f2018-04-11 01:11:41 +05302# Copyright (c) 2014-2016, 2018, The Linux Foundation. All rights reserved.
Ben Menchaca84f36632014-02-28 20:57:38 +00003# Permission to use, copy, modify, and/or distribute this software for
4# any purpose with or without fee is hereby granted, provided that the
5# above copyright notice and this permission notice appear in all copies.
6# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
7# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
8# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
9# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
10# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
11# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
12# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
13##########################################################################
14
15# ###################################################
16# Makefile for the QCA NSS ECM
17# ###################################################
18
Nicolas Costaf46c33b2014-05-15 10:02:00 -050019obj-m += ecm.o
20
Murat Sezgin1957a982015-05-21 22:22:25 +010021# #####################################################
22# Example builds.
23# Enable example build by using the menuconfig options.
24# #####################################################
25ifeq ($(EXAMPLES_BUILD_PCC),y)
26obj-m += examples/ecm_pcc_test.o
27endif
Murat Sezgin4ef69142018-10-16 13:12:08 -070028ifeq ($(EXAMPLES_BUILD_MARK),y)
29obj-m += examples/ecm_mark_test.o
30endif
Murat Sezgin1957a982015-05-21 22:22:25 +010031
Hai Shalom81f4e202014-06-04 09:30:27 -070032ecm-y := \
Nicolas Costaf46c33b2014-05-15 10:02:00 -050033 ecm_tracker_udp.o \
34 ecm_tracker_tcp.o \
35 ecm_tracker_datagram.o \
36 ecm_tracker.o \
Murat Sezgin3ab259d2015-06-11 14:15:35 -070037 frontends/ecm_front_end_ipv4.o \
38 frontends/ecm_front_end_ipv6.o \
Murat Sezgin5f138492015-06-11 15:18:27 -070039 frontends/ecm_front_end_common.o \
Murat Sezgin75850582018-05-02 18:37:56 -070040 ecm_db/ecm_db.o \
41 ecm_db/ecm_db_connection.o \
42 ecm_db/ecm_db_mapping.o \
43 ecm_db/ecm_db_host.o \
44 ecm_db/ecm_db_node.o \
45 ecm_db/ecm_db_iface.o \
46 ecm_db/ecm_db_listener.o \
47 ecm_db/ecm_db_timer.o \
Murat Sezginc725ad82016-04-13 17:12:50 -070048 ecm_classifier.o \
Nicolas Costaf46c33b2014-05-15 10:02:00 -050049 ecm_classifier_default.o \
Nicolas Costaf46c33b2014-05-15 10:02:00 -050050 ecm_interface.o \
Murat Sezgindf98fce2016-08-26 17:56:39 -070051 ecm_conntrack_notifier.o \
Nicolas Costaf46c33b2014-05-15 10:02:00 -050052 ecm_init.o
Ben Menchaca84f36632014-02-28 20:57:38 +000053
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -080054# #############################################################################
Xiaoping Fanb9390542015-07-20 18:15:21 -070055# Define ECM_FRONT_END_NSS_ENABLE=y in order to select
56# nss as ECM's front end.
57# #############################################################################
Suman Ghoshf79452b2018-08-17 20:46:15 +053058ifeq ($(SoC),$(filter $(SoC),ipq806x ipq807x ipq807x_64 ipq60xx ipq60xx_64))
Xiaoping Fanb9390542015-07-20 18:15:21 -070059ECM_FRONT_END_NSS_ENABLE=y
Xiaoping Fanb9390542015-07-20 18:15:21 -070060ecm-$(ECM_FRONT_END_NSS_ENABLE) += frontends/nss/ecm_nss_ipv4.o
61ecm-$(ECM_FRONT_END_NSS_ENABLE) += frontends/nss/ecm_nss_ported_ipv4.o
Xiaoping Fanb9390542015-07-20 18:15:21 -070062ccflags-$(ECM_FRONT_END_NSS_ENABLE) += -DECM_FRONT_END_NSS_ENABLE
Murat Sezgin828aa092017-04-27 13:27:39 -070063endif
Xiaoping Fanb9390542015-07-20 18:15:21 -070064
65# #############################################################################
66# Define ECM_FRONT_END_SFE_ENABLE=y in order to select
67# sfe as ECM's front end.
68# #############################################################################
Murat Sezgin828aa092017-04-27 13:27:39 -070069ifeq ($(SoC),$(filter $(SoC),ipq806x ipq40xx))
Xiaoping Fanb9390542015-07-20 18:15:21 -070070ECM_FRONT_END_SFE_ENABLE=y
Xiaoping Fanb9390542015-07-20 18:15:21 -070071ecm-$(ECM_FRONT_END_SFE_ENABLE) += frontends/sfe/ecm_sfe_ipv4.o
72ecm-$(ECM_FRONT_END_SFE_ENABLE) += frontends/sfe/ecm_sfe_ported_ipv4.o
Xiaoping Fanb9390542015-07-20 18:15:21 -070073ccflags-$(ECM_FRONT_END_SFE_ENABLE) += -DECM_FRONT_END_SFE_ENABLE
Murat Sezgin828aa092017-04-27 13:27:39 -070074endif
Xiaoping Fanb9390542015-07-20 18:15:21 -070075
76# #############################################################################
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -080077# Define ECM_INTERFACE_BOND_ENABLE=y in order to enable
78# Bonding / Link Aggregation support.
79# #############################################################################
Xiaoping Fanb9390542015-07-20 18:15:21 -070080ifeq ($(ECM_FRONT_END_NSS_ENABLE), y)
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -080081ECM_INTERFACE_BOND_ENABLE=y
82endif
Murat Sezgin8e10a7c2015-06-11 15:49:24 -070083ecm-$(ECM_INTERFACE_BOND_ENABLE) += frontends/nss/ecm_nss_bond_notifier.o
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -080084ccflags-$(ECM_INTERFACE_BOND_ENABLE) += -DECM_INTERFACE_BOND_ENABLE
Hai Shalom81f4e202014-06-04 09:30:27 -070085
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -080086# #############################################################################
ratheesh kannotha32fdd12015-09-09 08:02:58 +053087# Define ECM_INTERFACE_PPPOE_ENABLE=y in order
88# to enable support for PPPoE acceleration.
89# #############################################################################
90ECM_INTERFACE_PPPOE_ENABLE=y
91ccflags-$(ECM_INTERFACE_PPPOE_ENABLE) += -DECM_INTERFACE_PPPOE_ENABLE
92
93# #############################################################################
94# Define ECM_INTERFACE_L2TPV2_ENABLE=y in order
95# to enable support for l2tpv2 acceleration.
96# #############################################################################
ratheesh kannotha32fdd12015-09-09 08:02:58 +053097ECM_INTERFACE_L2TPV2_ENABLE=y
ratheesh kannotha32fdd12015-09-09 08:02:58 +053098ccflags-$(ECM_INTERFACE_L2TPV2_ENABLE) += -DECM_INTERFACE_L2TPV2_ENABLE
99
100# #############################################################################
Shyam Sunder23f2e542015-09-28 14:56:49 +0530101# Define ECM_INTERFACE_PPTP_ENABLE=y in order
102# to enable support for pptp acceleration.
103# #############################################################################
Shyam Sunder23f2e542015-09-28 14:56:49 +0530104ECM_INTERFACE_PPTP_ENABLE=y
Shyam Sunder23f2e542015-09-28 14:56:49 +0530105ccflags-$(ECM_INTERFACE_PPTP_ENABLE) += -DECM_INTERFACE_PPTP_ENABLE
106
107# #############################################################################
108# if pppoe, l2tpv2, pptp acceleration is enabled, ppp should
ratheesh kannotha32fdd12015-09-09 08:02:58 +0530109# be enabled automatically
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800110# #############################################################################
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800111ECM_INTERFACE_PPP_ENABLE=y
ratheesh kannotha32fdd12015-09-09 08:02:58 +0530112ifeq "$(ECM_INTERFACE_PPPOE_ENABLE)" "n"
113ifeq "$(ECM_INTERFACE_L2TPV2_ENABLE)" "n"
Shyam Sunder23f2e542015-09-28 14:56:49 +0530114ifeq "$(ECM_INTERFACE_PPTP_ENABLE)" "n"
ratheesh kannotha32fdd12015-09-09 08:02:58 +0530115ECM_INTERFACE_PPP_ENABLE=n
116endif
117endif
Shyam Sunder23f2e542015-09-28 14:56:49 +0530118endif
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800119ccflags-$(ECM_INTERFACE_PPP_ENABLE) += -DECM_INTERFACE_PPP_ENABLE
120
121# #############################################################################
ratheesh kannothcfdcb332015-12-24 07:19:18 +0530122# Define ECM_INTERFACE_MAP_T_ENABLE=y in order
123# to enable support for MAP-T interface.
124# #############################################################################
ratheesh kannothcfdcb332015-12-24 07:19:18 +0530125ccflags-$(ECM_INTERFACE_MAP_T_ENABLE) += -DECM_INTERFACE_MAP_T_ENABLE
126
127# #############################################################################
Suman Ghosh9e4245f2018-04-11 01:11:41 +0530128# Define ECM_INTERFACE_GRE_TAP_ENABLE=y in order
129# to enable support for GRE TAP interface.
Murat Sezgin31effef2017-11-13 15:09:34 -0800130# #############################################################################
Suman Ghosh9e4245f2018-04-11 01:11:41 +0530131ECM_INTERFACE_GRE_TAP_ENABLE=y
132ccflags-$(ECM_INTERFACE_GRE_TAP_ENABLE) += -DECM_INTERFACE_GRE_TAP_ENABLE
133
134# #############################################################################
135# Define ECM_INTERFACE_GRE_TUN_ENABLE=y in order
136# to enable support for GRE TUN interface.
137# #############################################################################
138ECM_INTERFACE_GRE_TUN_ENABLE=y
139ccflags-$(ECM_INTERFACE_GRE_TUN_ENABLE) += -DECM_INTERFACE_GRE_TUN_ENABLE
Murat Sezgin31effef2017-11-13 15:09:34 -0800140
141# #############################################################################
Murat Sezginb3731e82014-11-26 12:20:59 -0800142# Define ECM_INTERFACE_SIT_ENABLE=y in order
143# to enable support for SIT interface.
144# #############################################################################
Murat Sezginb3731e82014-11-26 12:20:59 -0800145ECM_INTERFACE_SIT_ENABLE=y
Murat Sezginb3731e82014-11-26 12:20:59 -0800146ccflags-$(ECM_INTERFACE_SIT_ENABLE) += -DECM_INTERFACE_SIT_ENABLE
147
148# #############################################################################
Murat Sezginc1402562015-03-12 12:32:20 -0700149# Define ECM_INTERFACE_TUNIPIP6_ENABLE=y in order
150# to enable support for TUNIPIP6 interface.
151# #############################################################################
Murat Sezginc1402562015-03-12 12:32:20 -0700152ECM_INTERFACE_TUNIPIP6_ENABLE=y
Murat Sezginc1402562015-03-12 12:32:20 -0700153ccflags-$(ECM_INTERFACE_TUNIPIP6_ENABLE) += -DECM_INTERFACE_TUNIPIP6_ENABLE
154
155# #############################################################################
Shyam Sunder1f037262015-05-18 20:04:13 +0530156# Define ECM_MULTICAST_ENABLE=y in order to enable support for ECM Multicast
157# #############################################################################
Xiaoping Fanb9390542015-07-20 18:15:21 -0700158ifeq ($(ECM_FRONT_END_NSS_ENABLE), y)
Murat Sezgin34f45c12015-11-19 13:25:22 -0800159#
160# TODO: This is a workaround for external builds in which the qca-mcs source
161# code is not available. This will be fixed later by breaking the dependency from ECM
162# to qca-mcs
163#
164MCS_CONFIG:=$(shell grep "CONFIG_PACKAGE_kmod-qca-mcs=y" $(TOPDIR)/.config)
165MCS_ENABLED:=CONFIG_PACKAGE_kmod-qca-mcs=y
166ifeq ($(MCS_CONFIG),$(MCS_ENABLED))
Shyam Sunderbe633de2016-10-06 17:02:31 +0530167ECM_MULTICAST_ENABLE=y
Shyam Sunderdd682692015-05-04 18:15:18 +0530168ecm-$(ECM_MULTICAST_ENABLE) += frontends/nss/ecm_nss_multicast_ipv4.o
Murat Sezgin3ab259d2015-06-11 14:15:35 -0700169ecm-$(ECM_MULTICAST_ENABLE) += frontends/nss/ecm_nss_multicast_ipv6.o
Murat Sezgin75850582018-05-02 18:37:56 -0700170ecm-$(ECM_MULTICAST_ENABLE) += ecm_db/ecm_db_multicast.o
Shyam Sunder1f037262015-05-18 20:04:13 +0530171ccflags-$(ECM_MULTICAST_ENABLE) += -DECM_MULTICAST_ENABLE
Karthik Hariharan3e964a32015-09-22 21:40:52 +0530172endif
Murat Sezgin34f45c12015-11-19 13:25:22 -0800173endif
Shyam Sunder1f037262015-05-18 20:04:13 +0530174
175# #############################################################################
Gareth Williams141d2382014-11-25 11:35:19 -0800176# Define ECM_INTERFACE_VLAN_ENABLE=y in order to enable support for VLAN
177# #############################################################################
Gareth Williams141d2382014-11-25 11:35:19 -0800178ECM_INTERFACE_VLAN_ENABLE=y
Gareth Williams141d2382014-11-25 11:35:19 -0800179ccflags-$(ECM_INTERFACE_VLAN_ENABLE) += -DECM_INTERFACE_VLAN_ENABLE
180
181# #############################################################################
Murat Sezgin69a27532015-03-12 14:09:40 -0700182# Define ECM_INTERFACE_IPSEC_ENABLE=y in order to enable support for IPSEC
183# #############################################################################
184ECM_INTERFACE_IPSEC_ENABLE=y
185ccflags-$(ECM_INTERFACE_IPSEC_ENABLE) += -DECM_INTERFACE_IPSEC_ENABLE
186
187# #############################################################################
Gareth Williams8ac34292015-03-17 14:06:58 +0000188# Define ECM_IPV6_ENABLE=y in order to enable IPv6 support in the ECM.
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800189# #############################################################################
Gareth Williams8ac34292015-03-17 14:06:58 +0000190ECM_IPV6_ENABLE=y
Xiaoping Fanb9390542015-07-20 18:15:21 -0700191ifeq ($(ECM_FRONT_END_NSS_ENABLE), y)
Murat Sezgin3ab259d2015-06-11 14:15:35 -0700192ecm-$(ECM_IPV6_ENABLE) += frontends/nss/ecm_nss_ipv6.o
193ecm-$(ECM_IPV6_ENABLE) += frontends/nss/ecm_nss_ported_ipv6.o
Xiaoping Fanb9390542015-07-20 18:15:21 -0700194endif
195ifeq ($(ECM_FRONT_END_SFE_ENABLE), y)
196ecm-$(ECM_IPV6_ENABLE) += frontends/sfe/ecm_sfe_ipv6.o
197ecm-$(ECM_IPV6_ENABLE) += frontends/sfe/ecm_sfe_ported_ipv6.o
198endif
Gareth Williams8ac34292015-03-17 14:06:58 +0000199ccflags-$(ECM_IPV6_ENABLE) += -DECM_IPV6_ENABLE
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800200
201# #############################################################################
Murat Sezginf4f7ab42018-10-12 17:01:46 -0700202# Define ECM_CLASSIFIER_MARK_ENABLE=y in order to enable mark classifier.
203# #############################################################################
204ECM_CLASSIFIER_MARK_ENABLE=y
205ecm-$(ECM_CLASSIFIER_MARK_ENABLE) += ecm_classifier_mark.o
206ccflags-$(ECM_CLASSIFIER_MARK_ENABLE) += -DECM_CLASSIFIER_MARK_ENABLE
207
208# #############################################################################
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800209# Define ECM_CLASSIFIER_NL_ENABLE=y in order to enable NL classifier.
210# #############################################################################
Murat Sezgine1c51d82016-02-10 16:42:58 -0800211ifeq ($(findstring 4.4., $(KERNELVERSION)),)
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800212ECM_CLASSIFIER_NL_ENABLE=y
Murat Sezgine1c51d82016-02-10 16:42:58 -0800213endif
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800214ecm-$(ECM_CLASSIFIER_NL_ENABLE) += ecm_classifier_nl.o
215ccflags-$(ECM_CLASSIFIER_NL_ENABLE) += -DECM_CLASSIFIER_NL_ENABLE
216
217# #############################################################################
218# Define ECM_CLASSIFIER_DSCP_ENABLE=y in order to enable DSCP classifier.
219# #############################################################################
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800220ECM_CLASSIFIER_DSCP_ENABLE=y
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800221ecm-$(ECM_CLASSIFIER_DSCP_ENABLE) += ecm_classifier_dscp.o
222ccflags-$(ECM_CLASSIFIER_DSCP_ENABLE) += -DECM_CLASSIFIER_DSCP_ENABLE
223
224# #############################################################################
225# Define ECM_CLASSIFIER_HYFI_ENABLE=y in order to enable
226# the Hy-Fi classifier in ECM. Currently disabled until the integration
227# with Hy-Fi is completed.
228# #############################################################################
Murat Sezgin34f45c12015-11-19 13:25:22 -0800229#
230# TODO: This is a workaround for external builds in which the qca-hyfi-bridge source
231# code is not available. This will be fixed later by breaking the dependency from ECM
232# to qca-hyfi-bridge
233#
234HYFI_BRIDGE_CONFIG:=$(shell grep "CONFIG_PACKAGE_kmod-qca-hyfi-bridge=y" $(TOPDIR)/.config)
235HYFI_BRIDGE_ENABLED:=CONFIG_PACKAGE_kmod-qca-hyfi-bridge=y
236ifeq ($(HYFI_BRIDGE_CONFIG),$(HYFI_BRIDGE_ENABLED))
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800237ecm-$(ECM_CLASSIFIER_HYFI_ENABLE) += ecm_classifier_hyfi.o
238ccflags-$(ECM_CLASSIFIER_HYFI_ENABLE) += -DECM_CLASSIFIER_HYFI_ENABLE
Murat Sezgin34f45c12015-11-19 13:25:22 -0800239endif
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800240
241# #############################################################################
Gareth Williamsdcda9b92015-05-13 10:08:15 +0100242# Define ECM_CLASSIFIER_PCC_ENABLE=y in order to enable
243# the Parental Controls subsystem classifier in ECM. Currently disabled until
244# customers require it / if they need to integrate their Parental Controls with it.
245# #############################################################################
246ECM_CLASSIFIER_PCC_ENABLE=y
247ecm-$(ECM_CLASSIFIER_PCC_ENABLE) += ecm_classifier_pcc.o
248ccflags-$(ECM_CLASSIFIER_PCC_ENABLE) += -DECM_CLASSIFIER_PCC_ENABLE
249
250# #############################################################################
Murat Sezgin8d916a12015-03-18 15:56:50 -0700251# Define ECM_NON_PORTED_SUPPORT_ENABLE=y in order to enable non-ported protocol.
252# #############################################################################
253ECM_NON_PORTED_SUPPORT_ENABLE=y
Xiaoping Fanb9390542015-07-20 18:15:21 -0700254ifeq ($(ECM_FRONT_END_NSS_ENABLE), y)
Murat Sezgin8d916a12015-03-18 15:56:50 -0700255ecm-$(ECM_NON_PORTED_SUPPORT_ENABLE) += frontends/nss/ecm_nss_non_ported_ipv4.o
Murat Sezgin3ab259d2015-06-11 14:15:35 -0700256ecm-$(ECM_NON_PORTED_SUPPORT_ENABLE) += frontends/nss/ecm_nss_non_ported_ipv6.o
Xiaoping Fanb9390542015-07-20 18:15:21 -0700257endif
258ifeq ($(ECM_FRONT_END_SFE_ENABLE), y)
259ecm-$(ECM_NON_PORTED_SUPPORT_ENABLE) += frontends/sfe/ecm_sfe_non_ported_ipv4.o
260ecm-$(ECM_NON_PORTED_SUPPORT_ENABLE) += frontends/sfe/ecm_sfe_non_ported_ipv6.o
261endif
Murat Sezgin8d916a12015-03-18 15:56:50 -0700262ccflags-$(ECM_NON_PORTED_SUPPORT_ENABLE) += -DECM_NON_PORTED_SUPPORT_ENABLE
263
Gareth Williamsf98d4192015-03-11 16:55:41 +0000264# #############################################################################
265# Define ECM_STATE_OUTPUT_ENABLE=y to support XML state output
266# #############################################################################
267ECM_STATE_OUTPUT_ENABLE=y
268ecm-$(ECM_STATE_OUTPUT_ENABLE) += ecm_state.o
269ccflags-$(ECM_STATE_OUTPUT_ENABLE) += -DECM_STATE_OUTPUT_ENABLE
Murat Sezgin8d916a12015-03-18 15:56:50 -0700270
271# #############################################################################
Gareth Williams85331c92015-03-11 20:39:18 +0000272# Define ECM_DB_ADVANCED_STATS_ENABLE to support XML state output
273# #############################################################################
274ECM_DB_ADVANCED_STATS_ENABLE=y
275ccflags-$(ECM_DB_ADVANCED_STATS_ENABLE) += -DECM_DB_ADVANCED_STATS_ENABLE
276
277# #############################################################################
Gareth Williamsb5903892015-03-20 15:13:07 +0000278# Define ECM_DB_CONNECTION_CROSS_REFERENCING_ENABLE=y in order to enable
279# the database to track relationships between objects.
280# #############################################################################
281ECM_DB_CONNECTION_CROSS_REFERENCING_ENABLE=y
282ccflags-$(ECM_DB_CONNECTION_CROSS_REFERENCING_ENABLE) += -DECM_DB_XREF_ENABLE
283
284# #############################################################################
Gareth Williams88be3722015-03-23 19:51:01 +0000285# Define ECM_TRACKER_DPI_SUPPORT_ENABLE=y in order to enable support for
286# deep packet inspection and tracking of data with the trackers.
287# #############################################################################
288ECM_TRACKER_DPI_SUPPORT_ENABLE=y
289ccflags-$(ECM_TRACKER_DPI_SUPPORT_ENABLE) += -DECM_TRACKER_DPI_SUPPORT_ENABLE
290
291# #############################################################################
Gareth Williamsb39e7c22015-03-25 10:15:33 +0000292# Define ECM_DB_CLASSIFIER_TYPE_ASSIGNMENTS_TRACK_ENABLE=y in order to enable
293# support for the database keeping lists of connections that are assigned
294# on a per TYPE of classifier basis.
295# #############################################################################
296ECM_DB_CLASSIFIER_TYPE_ASSIGNMENTS_TRACK_ENABLE=y
297ccflags-$(ECM_DB_CLASSIFIER_TYPE_ASSIGNMENTS_TRACK_ENABLE) += -DECM_DB_CTA_TRACK_ENABLE
298
299# #############################################################################
Murat Sezgin8c345822015-05-27 15:35:38 -0700300# Define ECM_BAND_STEERING_ENABLE=y in order to enable
301# band steering feature.
302# #############################################################################
303ECM_BAND_STEERING_ENABLE=y
304ccflags-$(ECM_BAND_STEERING_ENABLE) += -DECM_BAND_STEERING_ENABLE
305
306# #############################################################################
Gareth Williamsdbb2bfd2014-11-20 16:42:09 -0800307# Debug flags, set these to = 0 if you want to disable all debugging for that
308# file.
309# By turning off debugs you gain maximum ECM performance.
310# #############################################################################
Murat Sezginc725ad82016-04-13 17:12:50 -0700311ccflags-y += -DECM_CLASSIFIER_DEBUG_LEVEL=1
Murat Sezginf4f7ab42018-10-12 17:01:46 -0700312ccflags-y += -DECM_CLASSIFIER_MARK_DEBUG_LEVEL=1
Gareth Williams8932a912014-06-11 18:06:25 -0700313ccflags-y += -DECM_CLASSIFIER_DSCP_DEBUG_LEVEL=1
Ben Menchaca84f36632014-02-28 20:57:38 +0000314ccflags-y += -DECM_CLASSIFIER_HYFI_DEBUG_LEVEL=1
Gareth Williamsdcda9b92015-05-13 10:08:15 +0100315ccflags-y += -DECM_CLASSIFIER_PCC_DEBUG_LEVEL=1
Ben Menchaca84f36632014-02-28 20:57:38 +0000316ccflags-y += -DECM_CLASSIFIER_NL_DEBUG_LEVEL=1
317ccflags-y += -DECM_CLASSIFIER_DEFAULT_DEBUG_LEVEL=1
318ccflags-y += -DECM_DB_DEBUG_LEVEL=1
Murat Sezgin3ab259d2015-06-11 14:15:35 -0700319ccflags-y += -DECM_INIT_DEBUG_LEVEL=3
Ben Menchaca84f36632014-02-28 20:57:38 +0000320ccflags-y += -DECM_FRONT_END_IPV4_DEBUG_LEVEL=1
321ccflags-y += -DECM_FRONT_END_IPV6_DEBUG_LEVEL=1
Murat Sezgin5f138492015-06-11 15:18:27 -0700322ccflags-y += -DECM_FRONT_END_COMMON_DEBUG_LEVEL=1
Murat Sezgin3ab259d2015-06-11 14:15:35 -0700323ccflags-y += -DECM_NSS_IPV4_DEBUG_LEVEL=1
324ccflags-y += -DECM_NSS_PORTED_IPV4_DEBUG_LEVEL=1
325ccflags-y += -DECM_NSS_NON_PORTED_IPV4_DEBUG_LEVEL=1
326ccflags-y += -DECM_NSS_MULTICAST_IPV4_DEBUG_LEVEL=1
327ccflags-y += -DECM_NSS_IPV6_DEBUG_LEVEL=1
328ccflags-y += -DECM_NSS_PORTED_IPV6_DEBUG_LEVEL=1
329ccflags-y += -DECM_NSS_NON_PORTED_IPV6_DEBUG_LEVEL=1
330ccflags-y += -DECM_NSS_MULTICAST_IPV6_DEBUG_LEVEL=1
Xiaoping Fanb9390542015-07-20 18:15:21 -0700331ccflags-y += -DECM_SFE_IPV4_DEBUG_LEVEL=1
332ccflags-y += -DECM_SFE_PORTED_IPV4_DEBUG_LEVEL=1
333ccflags-y += -DECM_SFE_NON_PORTED_IPV4_DEBUG_LEVEL=1
334ccflags-y += -DECM_SFE_IPV6_DEBUG_LEVEL=1
335ccflags-y += -DECM_SFE_PORTED_IPV6_DEBUG_LEVEL=1
336ccflags-y += -DECM_SFE_NON_PORTED_IPV6_DEBUG_LEVEL=1
Ben Menchaca84f36632014-02-28 20:57:38 +0000337ccflags-y += -DECM_CONNTRACK_NOTIFIER_DEBUG_LEVEL=1
338ccflags-y += -DECM_TRACKER_DEBUG_LEVEL=1
339ccflags-y += -DECM_TRACKER_DATAGRAM_DEBUG_LEVEL=1
340ccflags-y += -DECM_TRACKER_TCP_DEBUG_LEVEL=1
341ccflags-y += -DECM_TRACKER_UDP_DEBUG_LEVEL=1
342ccflags-y += -DECM_BOND_NOTIFIER_DEBUG_LEVEL=1
343ccflags-y += -DECM_INTERFACE_DEBUG_LEVEL=1
Gareth Williamsf98d4192015-03-11 16:55:41 +0000344ccflags-y += -DECM_STATE_DEBUG_LEVEL=1
Stephen Wangaa7e5f72015-05-12 15:25:12 -0700345ccflags-y += -DECM_OPENWRT_SUPPORT=1
Ben Menchaca84f36632014-02-28 20:57:38 +0000346
Murat Sezgin75850582018-05-02 18:37:56 -0700347ccflags-y += -I$(obj)/ -I$(obj)/ecm_db -I$(obj)/frontends/include -I$(obj)/frontends/nss -I$(obj)/frontends/sfe
Murat Sezgin7c12aba2015-03-16 12:01:57 -0700348
Ben Menchaca84f36632014-02-28 20:57:38 +0000349obj ?= .