Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Emma Mobile EV2 processor support
0004  *
0005  * Copyright (C) 2012  Magnus Damm
0006  */
0007 #include <linux/kernel.h>
0008 #include <linux/init.h>
0009 #include <linux/mm.h>
0010 #include <asm/mach-types.h>
0011 #include <asm/mach/arch.h>
0012 #include <asm/mach/map.h>
0013 
0014 #include "common.h"
0015 #include "emev2.h"
0016 
0017 static const char *const emev2_boards_compat_dt[] __initconst = {
0018     "renesas,emev2",
0019     NULL
0020 };
0021 
0022 DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
0023     .smp        = smp_ops(emev2_smp_ops),
0024     .init_early = shmobile_init_delay,
0025     .init_late  = shmobile_init_late,
0026     .dt_compat  = emev2_boards_compat_dt,
0027 MACHINE_END