blob: 300ae4b79ae6343eeb17ca2abf899fb699b92b2b [file] [log] [blame]
Christian Daudt8ac49e02012-11-19 09:46:10 -08001#
Markus Mayerc3ceebd2014-03-06 17:18:13 +08002# Copyright (C) 2012-2014 Broadcom Corporation
Christian Daudt8ac49e02012-11-19 09:46:10 -08003#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License as
6# published by the Free Software Foundation version 2.
7#
8# This program is distributed "as is" WITHOUT ANY WARRANTY of any
9# kind, whether express or implied; without even the implied warranty
10# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12
Alex Elder1892bbc2014-04-15 07:37:19 -050013# BCM281XX
14obj-$(CONFIG_ARCH_BCM_281XX) += board_bcm281xx.o
Markus Mayerd30fe622014-02-20 16:16:11 -080015
Alex Elder1892bbc2014-04-15 07:37:19 -050016# BCM21664
17obj-$(CONFIG_ARCH_BCM_21664) += board_bcm21664.o
18
Alex Elder9a5a1102014-06-30 17:15:37 -050019# BCM281XX and BCM21664 SMP support
20obj-$(CONFIG_ARCH_BCM_MOBILE_SMP) += kona_smp.o
21
Alex Elder1892bbc2014-04-15 07:37:19 -050022# BCM281XX and BCM21664 L2 cache control
Alex Eldereeda4cb2014-04-21 16:53:11 -050023obj-$(CONFIG_ARCH_BCM_MOBILE_L2_CACHE) += kona_l2_cache.o
Alex Elder7b5fe9c2014-04-21 16:53:07 -050024
25# Support for secure monitor traps
Alex Elder8b9c5502014-04-21 16:53:09 -050026obj-$(CONFIG_ARCH_BCM_MOBILE_SMC) += bcm_kona_smc.o
27ifeq ($(call as-instr,.arch_extension sec,as_has_sec),as_has_sec)
28CFLAGS_bcm_kona_smc.o += -Wa,-march=armv7-a+sec -DREQUIRES_SEC
29endif
Alex Elder1892bbc2014-04-15 07:37:19 -050030
31# BCM2835
32obj-$(CONFIG_ARCH_BCM2835) += board_bcm2835.o
33
34# BCM5301X
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +010035obj-$(CONFIG_ARCH_BCM_5301X) += bcm_5301x.o
Marc Carino4fbe66d2014-01-16 15:00:42 -080036
Florian Fainellidc6aec62014-02-20 15:53:13 -080037# BCM63XXx
38obj-$(CONFIG_ARCH_BCM_63XX) := bcm63xx.o
39
Marc Carino4fbe66d2014-01-16 15:00:42 -080040ifeq ($(CONFIG_ARCH_BRCMSTB),y)
41obj-y += brcmstb.o
Marc Carino4fbe66d2014-01-16 15:00:42 -080042endif