blob: 5de395ec51b5a2ed5f1ebf71a8da46ef8d160ab9 [file] [log] [blame]
Radhakrishna Jiguru1c9b2252013-08-27 23:57:48 +05301##########################################################################
Sundarajan Srinivasan6e0366b2015-01-20 12:10:42 -08002# Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
Radhakrishna Jiguru1c9b2252013-08-27 23:57:48 +05303# 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##########################################################################
Pamidipati, Vijayc6ae5662013-06-10 11:03:55 +053014
15# ###################################################
16# # Makefile for the NSS driver
17# ###################################################
18
Abhishek Rastogibc74e432013-04-02 10:28:22 +053019obj-m += qca-nss-drv.o
Sol Kavy2783c072014-04-05 12:53:13 -070020
Sol Kavy879eb8b2014-04-07 19:11:31 -070021#
22# List the files that belong to the driver in alphabetical order.
23#
Sol Kavy2783c072014-04-05 12:53:13 -070024qca-nss-drv-objs := \
Sol Kavy2783c072014-04-05 12:53:13 -070025 nss_cmn.o \
26 nss_core.o \
Guojun Jin1cb79522015-06-22 22:34:22 -070027 nss_coredump.o \
Samarjeet Banerjeede86b802014-04-10 02:59:49 +053028 nss_crypto.o \
Ankit Dhanuka9b430252014-08-12 13:53:41 +053029 nss_dynamic_interface.o \
Ankit Dhanuka607508d2014-08-21 20:20:34 +053030 nss_gre_redir.o \
Sol Kavya55c9a52014-04-08 14:33:16 -070031 nss_if.o \
Samarjeet Banerjeed99d9d02014-04-08 18:51:00 +053032 nss_init.o \
33 nss_ipsec.o \
Sol Kavy2783c072014-04-05 12:53:13 -070034 nss_ipv4.o \
Selin Dag6d9b0c12014-11-04 18:27:21 -080035 nss_ipv4_reasm.o \
Sol Kavy879eb8b2014-04-07 19:11:31 -070036 nss_ipv6.o \
Selin Dag60a2f5b2015-06-29 14:39:49 -070037 nss_ipv6_reasm.o \
Sol Kavy2783c072014-04-05 12:53:13 -070038 nss_lag.o \
Thomas Wuc3e382c2014-10-29 15:35:13 -070039 nss_lso_rx.o \
Sol Kavy2783c072014-04-05 12:53:13 -070040 nss_phys_if.o \
41 nss_pm.o \
Ankit Dhanuka2ae20a82014-08-25 18:04:00 +053042 nss_sjack.o \
Sol Kavy2783c072014-04-05 12:53:13 -070043 nss_stats.o \
44 nss_tun6rd.o \
ratheesh kannoth7af985d2015-06-24 15:08:40 +053045 nss_l2tpv2.o \
Sol Kavy2783c072014-04-05 12:53:13 -070046 nss_tunipip6.o \
Sakthi Vignesh Radhakrishnanef918492014-04-07 14:24:19 -070047 nss_virt_if.o \
Ankit Dhanukaa1569ce2014-05-13 19:58:06 +053048 nss_shaper.o \
Saurabh Misra09dddeb2014-09-30 16:38:07 -070049 nss_pppoe.o \
Sundarajan Srinivasanf1e57462014-09-17 15:24:01 -070050 nss_capwap.o \
51 nss_eth_rx.o \
Stephen Wang38e89bc2014-11-06 11:34:45 -080052 nss_n2h.o \
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070053 nss_data_plane.o \
Bharath M Kumarcc666e92014-12-24 19:17:28 +053054 nss_log.o \
55 nss_wifi.o \
Sundarajan Srinivasan273d9002015-03-03 15:43:16 -080056 nss_wifi_vdev.o \
57 nss_wifi_if.o
Sol Kavy2783c072014-04-05 12:53:13 -070058
59#
60# TODO: Deprecated files should be removed before merge
61#
62qca-nss-drv-objs += \
Sol Kavy2783c072014-04-05 12:53:13 -070063 nss_tx_rx_virt_if.o
64
Bharath M Kumarcc666e92014-12-24 19:17:28 +053065ccflags-y += -I$(obj)/nss_hal/include -I$(obj)/exports -DNSS_DEBUG_LEVEL=0 -DNSS_PKT_STATS_ENABLED=1
Murat Sezginc5cbfed2015-01-16 17:32:43 -080066ccflags-y += -DNSS_PM_DEBUG_LEVEL=0 -DNSS_PPP_SUPPORT=1
Pamidipati, Vijayc6ae5662013-06-10 11:03:55 +053067
Sundarajan Srinivasan4691ba62014-11-07 11:24:07 -080068ifneq ($(findstring 3.4, $(KERNELVERSION)),)
Ankit Dhanuka4ac3c9f2015-08-10 16:03:00 +053069NSS_CCFLAGS = -DNSS_DT_SUPPORT=0 -DNSS_FW_DBG_SUPPORT=1 -DNSS_PM_SUPPORT=1 -DNSS_EMPTY_BUFFER_SIZE=1984
Sundarajan Srinivasan4691ba62014-11-07 11:24:07 -080070else
Bharath M Kumarcc666e92014-12-24 19:17:28 +053071NSS_CCFLAGS = -DNSS_DT_SUPPORT=1 -DNSS_FW_DBG_SUPPORT=0 -DNSS_PM_SUPPORT=0 -DNSS_EMPTY_BUFFER_SIZE=1792
Sundarajan Srinivasan4691ba62014-11-07 11:24:07 -080072ccflags-y += -I$(obj)
73endif
74
Arunkumar T28b2d742015-06-16 22:15:58 +053075# Disable Frequency scaling
76ifeq "$(NSS_FREQ_SCALE_DISABLE)" "y"
77ccflags-y += -DNSS_FREQ_SCALE_SUPPORT=0
78else
79qca-nss-drv-objs += nss_freq.o
80ccflags-y += -DNSS_FREQ_SCALE_SUPPORT=1
81endif
82
Sundarajan Srinivasan4691ba62014-11-07 11:24:07 -080083ccflags-y += $(NSS_CCFLAGS)
84
85export NSS_CCFLAGS
86
Guojun Jin4b3707b2014-05-16 15:55:23 -070087qca-nss-drv-objs += nss_profiler.o
Saurabh Misra70057f02014-10-16 12:22:53 -070088
Pamidipati, Vijayc6ae5662013-06-10 11:03:55 +053089obj ?= .
Abhishek Rastogibc74e432013-04-02 10:28:22 +053090
Abhishek Rastogibc74e432013-04-02 10:28:22 +053091qca-nss-drv-objs += nss_hal/ipq806x/nss_hal_pvt.o
Abhishek Rastogi38cffff2013-06-02 11:25:47 +053092ccflags-y += -I$(obj)/nss_hal/ipq806x