Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * r7s72100 processor support
0004  *
0005  * Copyright (C) 2013  Renesas Solutions Corp.
0006  * Copyright (C) 2013  Magnus Damm
0007  */
0008 
0009 #include <linux/kernel.h>
0010 
0011 #include <asm/mach/arch.h>
0012 
0013 #include "common.h"
0014 
0015 static const char *const r7s72100_boards_compat_dt[] __initconst = {
0016     "renesas,r7s72100",
0017     NULL
0018 };
0019 
0020 DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)")
0021     .l2c_aux_val    = 0,
0022     .l2c_aux_mask   = ~0,
0023     .init_early = shmobile_init_delay,
0024     .init_late  = shmobile_init_late,
0025     .dt_compat  = r7s72100_boards_compat_dt,
0026 MACHINE_END