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