blob: d31cc80d85ac17764f0ea7743fe0d13fbbc8445e [file] [log] [blame]
Arunkumar T8ebe1532015-06-10 16:01:53 +05301# ###################################################
2# # Makefile for the NSS driver
3# ###################################################
4obj-m += qca-nss-drv.o
5
6#
7# List the files that belong to the driver in alphabetical order.
8#
9qca-nss-drv-objs := \
10 nss_cmn.o \
11 nss_core.o \
12 nss_crypto.o \
13 nss_capwap.o \
14 nss_lso_rx.o \
15 nss_data_plane.o \
16 nss_dynamic_interface.o \
17 nss_gre_redir.o \
18 nss_if.o \
19 nss_init.o \
20 nss_ipsec.o \
21 nss_ipv4.o \
22 nss_ipv4_reasm.o \
23 nss_ipv6.o \
24 nss_lag.o \
25 nss_phys_if.o \
26 nss_stats.o \
27 nss_tun6rd.o \
28 nss_tunipip6.o \
29 nss_virt_if.o \
30 nss_shaper.o \
31 nss_n2h.o \
32 nss_log.o \
33 nss_eth_rx.o
34
35
36#
37# TODO: Deprecated files should be removed before merge
38#
39qca-nss-drv-objs += nss_tx_rx_virt_if.o
40qca-nss-drv-objs += nss_hal/fsm9010/nss_hal_pvt.o
41
42ccflags-y += -I$(obj)/nss_hal/include
43ccflags-y += -I$(obj)/nss_hal/
44ccflags-y += -I$(obj)/exports
45ccflags-y += -I$(obj)/nss_hal/fsm9010
46ccflags-y += -DNSS_DEBUG_LEVEL=0 -DNSS_EMPTY_BUFFER_SIZE=1792 -DNSS_PKT_STATS_ENABLED=0
47ccflags-y += -DNSS_DT_SUPPORT=1 -DNSS_PM_SUPPORT=0 -DNSS_FW_DBG_SUPPORT=0
48ccflags-y += -DNSS_PPP_SUPPORT=0 -DNSS_FREQ_SCALE_SUPPORT=0
49
50
51
52
53