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