blob: 2732d7f9196379c33b362be330e345ee1db5e524 [file] [log] [blame]
Henry Ptasinskicf2b4482010-09-20 22:33:12 -07001#
2# Makefile fragment for Broadcom 802.11n Networking Device Driver
3#
4# Copyright (c) 2010 Broadcom Corporation
5#
6# Permission to use, copy, modify, and/or distribute this software for any
7# purpose with or without fee is hereby granted, provided that the above
8# copyright notice and this permission notice appear in all copies.
9#
10# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
13# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
15# OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
16# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
Greg Kroah-Hartman449c6742010-09-23 16:28:53 -070018ccflags-y := \
Henry Ptasinski07610432010-09-29 14:50:49 -070019 -DARP_OFFLOAD_SUPPORT \
Greg Kroah-Hartman449c6742010-09-23 16:28:53 -070020 -DBCMLXSDMMC \
21 -DBCMPLATFORM_BUS \
Henry Ptasinski07610432010-09-29 14:50:49 -070022 -DBCMSDIO \
Henry Ptasinski07610432010-09-29 14:50:49 -070023 -DBDC \
Greg Kroah-Hartman449c6742010-09-23 16:28:53 -070024 -DBRCM_FULLMAC \
Henry Ptasinski07610432010-09-29 14:50:49 -070025 -DDHD_FIRSTREAD=64 \
26 -DDHD_SCHED \
27 -DDHD_SDALIGN=64 \
28 -DEMBEDDED_PLATFORM \
Henry Ptasinski07610432010-09-29 14:50:49 -070029 -DMAX_HDR_READ=64 \
30 -DMMC_SDIO_ABORT \
31 -DPKT_FILTER_SUPPORT \
32 -DSHOW_EVENTS \
Arend van Spriel2ea0f6f2011-01-25 16:53:39 +010033 -DTOE
34
35ccflags-$(CONFIG_BRCMDBG) += -DDHD_DEBUG
36
37ccflags-y += \
38 -Idrivers/staging/brcm80211/brcmfmac \
Henry Ptasinskifc84a712011-05-09 16:33:06 +020039 -Idrivers/staging/brcm80211/include
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070040
Arend van Sprielf8559b6922011-01-21 10:54:48 +010041DHDOFILES = \
42 wl_cfg80211.o \
43 wl_iw.o \
44 dhd_cdc.o \
45 dhd_common.o \
46 dhd_custom_gpio.o \
47 dhd_sdio.o \
48 dhd_linux.o \
49 dhd_linux_sched.o \
50 bcmsdh.o \
51 bcmsdh_linux.o \
52 bcmsdh_sdmmc.o \
53 bcmsdh_sdmmc_linux.o \
Arend van Spriel2ea0f6f2011-01-25 16:53:39 +010054 bcmutils.o \
Franky Lin41ee9d82011-04-25 19:34:08 -070055 bcmwifi.o
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070056
Henry Ptasinski6afd1192010-09-26 13:19:44 -070057obj-m += brcmfmac.o
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070058brcmfmac-objs += $(DHDOFILES)