1// SPDX-License-Identifier: GPL-2.0
2/*
3 * r7s9210 processor support
4 *
5 * Copyright (C) 2018  Renesas Electronics Corporation
6 * Copyright (C) 2018  Chris Brandt
7 *
8 */
9
10#include <linux/kernel.h>
11
12#include <asm/mach/arch.h>
13
14#include "common.h"
15
16static const char *const r7s9210_boards_compat_dt[] __initconst = {
17	"renesas,r7s9210",
18	NULL
19};
20
21DT_MACHINE_START(R7S72100_DT, "Generic R7S9210 (Flattened Device Tree)")
22	.l2c_aux_val    = 0,
23	.l2c_aux_mask   = ~0,
24	.init_early	= shmobile_init_delay,
25	.init_late	= shmobile_init_late,
26	.dt_compat	= r7s9210_boards_compat_dt,
27MACHINE_END
28