2018-06-14 08:56:06 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-03-26 08:34:24 +07:00
|
|
|
/*
|
|
|
|
* r8a73a4 processor support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Renesas Solutions Corp.
|
|
|
|
* Copyright (C) 2013 Magnus Damm
|
|
|
|
*/
|
2015-02-20 00:48:03 +07:00
|
|
|
|
|
|
|
#include <linux/init.h>
|
2014-06-20 23:53:02 +07:00
|
|
|
|
2013-03-26 08:34:24 +07:00
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
2014-06-17 14:47:37 +07:00
|
|
|
#include "common.h"
|
2013-03-26 08:34:24 +07:00
|
|
|
|
2015-07-28 05:27:52 +07:00
|
|
|
static const char *const r8a73a4_boards_compat_dt[] __initconst = {
|
2013-03-26 08:34:24 +07:00
|
|
|
"renesas,r8a73a4",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
|
2014-07-31 06:33:08 +07:00
|
|
|
.init_late = shmobile_init_late,
|
2013-03-26 08:34:24 +07:00
|
|
|
.dt_compat = r8a73a4_boards_compat_dt,
|
|
|
|
MACHINE_END
|