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