2018-10-23 04:18:39 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-05-26 15:04:43 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Broadcom
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
2013-07-05 00:31:36 +08:00
|
|
|
#include <linux/irqchip.h>
|
2012-09-16 12:18:10 +08:00
|
|
|
#include <linux/of_address.h>
|
2012-05-26 15:04:43 +08:00
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/map.h>
|
|
|
|
|
2017-08-06 23:52:02 +08:00
|
|
|
#include "platsmp.h"
|
|
|
|
|
2012-05-26 15:04:43 +08:00
|
|
|
static const char * const bcm2835_compat[] = {
|
2015-12-17 07:55:14 +08:00
|
|
|
#ifdef CONFIG_ARCH_MULTI_V6
|
2012-05-26 15:04:43 +08:00
|
|
|
"brcm,bcm2835",
|
2015-12-17 07:55:14 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_MULTI_V7
|
|
|
|
"brcm,bcm2836",
|
2017-08-06 23:52:02 +08:00
|
|
|
"brcm,bcm2837",
|
2015-12-17 07:55:14 +08:00
|
|
|
#endif
|
2012-05-26 15:04:43 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(BCM2835, "BCM2835")
|
2017-08-06 23:52:02 +08:00
|
|
|
.dt_compat = bcm2835_compat,
|
|
|
|
.smp = smp_ops(bcm2836_smp_ops),
|
2012-05-26 15:04:43 +08:00
|
|
|
MACHINE_END
|