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