0001
0002
0003
0004
0005
0006
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