2018-06-14 09:56:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-05-16 14:44:58 +08:00
|
|
|
/*
|
|
|
|
* Emma Mobile EV2 processor support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Magnus Damm
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2014-06-05 13:32:12 +08:00
|
|
|
#include <linux/mm.h>
|
2012-05-16 14:44:58 +08:00
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/map.h>
|
2016-01-28 23:20:49 +08:00
|
|
|
|
2014-06-17 15:47:37 +08:00
|
|
|
#include "common.h"
|
2016-01-28 23:20:49 +08:00
|
|
|
#include "emev2.h"
|
2012-05-16 14:44:58 +08:00
|
|
|
|
2015-02-19 04:01:45 +08:00
|
|
|
static const char *const emev2_boards_compat_dt[] __initconst = {
|
2012-05-16 14:45:54 +08:00
|
|
|
"renesas,emev2",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
|
2011-09-08 20:15:22 +08:00
|
|
|
.smp = smp_ops(emev2_smp_ops),
|
2014-06-05 13:32:04 +08:00
|
|
|
.init_early = shmobile_init_delay,
|
2013-11-07 07:21:20 +08:00
|
|
|
.init_late = shmobile_init_late,
|
2012-05-16 14:45:54 +08:00
|
|
|
.dt_compat = emev2_boards_compat_dt,
|
|
|
|
MACHINE_END
|