xref: /OK3568_Linux_fs/kernel/arch/arm/mach-shmobile/setup-emev2.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Emma Mobile EV2 processor support
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * Copyright (C) 2012  Magnus Damm
6*4882a593Smuzhiyun  */
7*4882a593Smuzhiyun #include <linux/kernel.h>
8*4882a593Smuzhiyun #include <linux/init.h>
9*4882a593Smuzhiyun #include <linux/mm.h>
10*4882a593Smuzhiyun #include <asm/mach-types.h>
11*4882a593Smuzhiyun #include <asm/mach/arch.h>
12*4882a593Smuzhiyun #include <asm/mach/map.h>
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun #include "common.h"
15*4882a593Smuzhiyun #include "emev2.h"
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun static const char *const emev2_boards_compat_dt[] __initconst = {
18*4882a593Smuzhiyun 	"renesas,emev2",
19*4882a593Smuzhiyun 	NULL,
20*4882a593Smuzhiyun };
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
23*4882a593Smuzhiyun 	.smp		= smp_ops(emev2_smp_ops),
24*4882a593Smuzhiyun 	.init_early	= shmobile_init_delay,
25*4882a593Smuzhiyun 	.init_late	= shmobile_init_late,
26*4882a593Smuzhiyun 	.dt_compat	= emev2_boards_compat_dt,
27*4882a593Smuzhiyun MACHINE_END
28