2012-11-19 09:46:10 -08:00
#
2015-08-26 18:35:28 -04:00
# Copyright (C) 2012-2015 Broadcom Corporation
2012-11-19 09:46:10 -08:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation version 2.
#
# This program is distributed "as is" WITHOUT ANY WARRANTY of any
# kind, whether express or implied; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2014-08-15 12:52:00 -07:00
# Cygnus
obj-$(CONFIG_ARCH_BCM_CYGNUS) += bcm_cygnus.o
2015-08-26 18:35:28 -04:00
# Northstar Plus
2015-12-01 11:24:08 -05:00
obj-$(CONFIG_ARCH_BCM_NSP) += bcm_nsp.o
i f e q ( $( CONFIG_ARCH_BCM_NSP ) , y )
obj-$(CONFIG_SMP) += platsmp.o
e n d i f
2015-08-26 18:35:28 -04:00
2014-04-15 07:37:19 -05:00
# BCM281XX
obj-$(CONFIG_ARCH_BCM_281XX) += board_bcm281xx.o
# BCM21664
obj-$(CONFIG_ARCH_BCM_21664) += board_bcm21664.o
2014-02-20 16:16:11 -08:00
2016-05-11 14:36:20 -07:00
# BCM23550
obj-$(CONFIG_ARCH_BCM_23550) += board_bcm23550.o
# BCM281XX, BCM21664 and BCM23550 SMP support
2015-12-01 11:24:08 -05:00
obj-$(CONFIG_ARCH_BCM_MOBILE_SMP) += platsmp.o
2014-06-30 17:15:37 -05:00
2014-04-15 07:37:19 -05:00
# BCM281XX and BCM21664 L2 cache control
2014-04-21 16:53:11 -05:00
obj-$(CONFIG_ARCH_BCM_MOBILE_L2_CACHE) += kona_l2_cache.o
2014-04-21 16:53:07 -05:00
# Support for secure monitor traps
2014-04-21 16:53:09 -05:00
obj-$(CONFIG_ARCH_BCM_MOBILE_SMC) += bcm_kona_smc.o
i f e q ( $( call as -instr ,.arch_extension sec ,as_has_sec ) , a s _ h a s _ s e c )
CFLAGS_bcm_kona_smc.o += -Wa,-march= armv7-a+sec -DREQUIRES_SEC
e n d i f
2014-04-15 07:37:19 -05:00
# BCM2835
obj-$(CONFIG_ARCH_BCM2835) += board_bcm2835.o
# BCM5301X
ARM: BCM5301X: initial support for the BCM5301X/BCM470X SoCs with ARM CPU
This patch adds support for the BCM5301X/BCM470X SoCs with an ARM CPUs.
Currently just booting to a shell is working and nothing else, no
Ethernet, wifi, flash, ...
I have some pending patches to make Ethernet work for this device.
Mostly device tree support for bcma is missing.
This SoC is used in small office and home router with Broadcom SoCs
it's internal name is Northstar. This code should support the BCM4707,
BCM4708, BCM4709, BCM53010, BCM53011 and BCM53012 SoC. It uses one or
two ARM Cortex A9 Cores, some highlights are 2 PCIe 2.0 controllers,
4 Gigabit Ethernet MACs and a USB 3.0 host controller.
This SoC uses a dual core CPU, but this is currently not implemented.
More information about this SoC can be found here:
http://www.anandtech.com/show/5925/broadcom-announces-bcm4708x-and-bcm5301x-socs-for-80211ac-routers
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Christian Daudt <bcm@fixthebug.org>
Signed-off-by: Matt Porter <mporter@linaro.org>
2014-02-04 00:01:43 +01:00
obj-$(CONFIG_ARCH_BCM_5301X) += bcm_5301x.o
2015-12-01 11:24:09 -05:00
i f e q ( $( CONFIG_ARCH_BCM_ 5301X ) , y )
obj-$(CONFIG_SMP) += platsmp.o
e n d i f
2014-01-16 15:00:42 -08:00
2014-02-20 15:53:13 -08:00
# BCM63XXx
2014-08-14 19:37:45 -07:00
i f e q ( $( CONFIG_ARCH_BCM_ 63XX ) , y )
obj-y += bcm63xx.o
2015-07-07 18:17:01 -07:00
obj-$(CONFIG_SMP) += bcm63xx_smp.o bcm63xx_pmb.o
2014-08-14 19:37:45 -07:00
e n d i f
2014-02-20 15:53:13 -08:00
2014-01-16 15:00:42 -08:00
i f e q ( $( CONFIG_ARCH_BRCMSTB ) , y )
2014-09-05 16:31:04 -07:00
CFLAGS_platsmp-brcmstb.o += -march= armv7-a
2014-01-16 15:00:42 -08:00
obj-y += brcmstb.o
2015-05-19 17:06:44 +01:00
obj-$(CONFIG_SMP) += platsmp-brcmstb.o
2014-01-16 15:00:42 -08:00
e n d i f