2011-02-28 16:01:04 +00:00
|
|
|
#include <asm/mach/arch.h>
|
2010-02-11 21:44:53 +00:00
|
|
|
|
|
|
|
#include "core.h"
|
|
|
|
|
2012-10-09 11:56:36 +00:00
|
|
|
static const char * const v2m_dt_match[] __initconst = {
|
2012-02-23 13:04:51 +00:00
|
|
|
"arm,vexpress",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(VEXPRESS_DT, "ARM-Versatile Express")
|
|
|
|
.dt_compat = v2m_dt_match,
|
2014-04-28 14:43:12 +00:00
|
|
|
.l2c_aux_val = 0x00400000,
|
|
|
|
.l2c_aux_mask = 0xfe0fffff,
|
2013-09-17 17:30:58 +00:00
|
|
|
.smp = smp_ops(vexpress_smp_dt_ops),
|
2013-01-30 09:12:55 +00:00
|
|
|
.smp_init = smp_init_ops(vexpress_smp_init_ops),
|
2012-02-23 13:04:51 +00:00
|
|
|
MACHINE_END
|