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