diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-02-20 15:53:13 -0800 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2014-09-17 10:56:06 -0700 |
commit | dc6aec60e15fec86cdafc47d9fe3e2ca6c10958b (patch) | |
tree | 64f8c178de597fbcf05fa6042bef4e13d1cbc8ad /arch/arm/mach-bcm/bcm63xx.c | |
parent | 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9 (diff) | |
download | op-kernel-dev-dc6aec60e15fec86cdafc47d9fe3e2ca6c10958b.zip op-kernel-dev-dc6aec60e15fec86cdafc47d9fe3e2ca6c10958b.tar.gz |
ARM: BCM63XX: add basic support for the Broadcom BCM63138 DSL SoC
This patch adds basic support for the Broadcom BCM63138 DSL SoC which is
using a dual-core Cortex A9 system. Add the very minimum required code
boot Linux on this SoC.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/arm/mach-bcm/bcm63xx.c')
-rw-r--r-- | arch/arm/mach-bcm/bcm63xx.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/mach-bcm/bcm63xx.c b/arch/arm/mach-bcm/bcm63xx.c new file mode 100644 index 0000000..c4c66ae --- /dev/null +++ b/arch/arm/mach-bcm/bcm63xx.c @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2014 Broadcom Corporation + * + * 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. + */ + +#include <linux/of_platform.h> + +#include <asm/mach/arch.h> + +static const char * const bcm63xx_dt_compat[] = { + "brcm,bcm63138", + NULL +}; + +DT_MACHINE_START(BCM63XXX_DT, "BCM63xx DSL SoC") + .dt_compat = bcm63xx_dt_compat, + .l2c_aux_val = 0, + .l2c_aux_mask = ~0, +MACHINE_END |