2012-11-19 18:46:10 +01:00
|
|
|
#
|
2014-03-06 10:18:13 +01:00
|
|
|
# Copyright (C) 2012-2014 Broadcom Corporation
|
2012-11-19 18:46:10 +01: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-04-15 14:37:19 +02:00
|
|
|
# BCM281XX
|
|
|
|
obj-$(CONFIG_ARCH_BCM_281XX) += board_bcm281xx.o
|
|
|
|
|
|
|
|
# BCM21664
|
|
|
|
obj-$(CONFIG_ARCH_BCM_21664) += board_bcm21664.o
|
2014-02-21 01:16:11 +01:00
|
|
|
|
2014-04-15 14:37:19 +02:00
|
|
|
# BCM281XX and BCM21664 L2 cache control
|
2014-04-21 23:53:07 +02:00
|
|
|
obj-$(CONFIG_ARCH_BCM_MOBILE_L2_CACHE) += kona.o
|
|
|
|
|
|
|
|
# Support for secure monitor traps
|
2014-04-21 23:53:09 +02:00
|
|
|
obj-$(CONFIG_ARCH_BCM_MOBILE_SMC) += bcm_kona_smc.o
|
|
|
|
ifeq ($(call as-instr,.arch_extension sec,as_has_sec),as_has_sec)
|
|
|
|
CFLAGS_bcm_kona_smc.o += -Wa,-march=armv7-a+sec -DREQUIRES_SEC
|
|
|
|
endif
|
2014-04-15 14:37:19 +02: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
|