2018-06-14 09:56:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-09-19 04:11:11 +08:00
|
|
|
/*
|
|
|
|
* r7s72100 processor support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Renesas Solutions Corp.
|
|
|
|
* Copyright (C) 2013 Magnus Damm
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2014-06-21 00:53:01 +08:00
|
|
|
|
2013-09-19 04:11:11 +08:00
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
2014-06-17 15:47:37 +08:00
|
|
|
#include "common.h"
|
2013-09-19 04:11:20 +08:00
|
|
|
|
2015-07-28 06:27:52 +08:00
|
|
|
static const char *const r7s72100_boards_compat_dt[] __initconst = {
|
2013-09-19 04:11:11 +08:00
|
|
|
"renesas,r7s72100",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)")
|
2017-02-17 01:54:39 +08:00
|
|
|
.l2c_aux_val = 0,
|
|
|
|
.l2c_aux_mask = ~0,
|
2014-06-06 13:29:04 +08:00
|
|
|
.init_early = shmobile_init_delay,
|
2014-07-31 07:33:26 +08:00
|
|
|
.init_late = shmobile_init_late,
|
2013-09-19 04:11:11 +08:00
|
|
|
.dt_compat = r7s72100_boards_compat_dt,
|
|
|
|
MACHINE_END
|