0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #include <linux/kernel.h>
0011
0012 #include <asm/mach/arch.h>
0013
0014 #include "common.h"
0015
0016 static const char *const r7s9210_boards_compat_dt[] __initconst = {
0017 "renesas,r7s9210",
0018 NULL
0019 };
0020
0021 DT_MACHINE_START(R7S72100_DT, "Generic R7S9210 (Flattened Device Tree)")
0022 .l2c_aux_val = 0,
0023 .l2c_aux_mask = ~0,
0024 .init_early = shmobile_init_delay,
0025 .init_late = shmobile_init_late,
0026 .dt_compat = r7s9210_boards_compat_dt,
0027 MACHINE_END