2013-09-04 11:45:57 +08:00
|
|
|
/*
|
|
|
|
* r8a7791 processor support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Renesas Electronics Corporation
|
|
|
|
* Copyright (C) 2013 Renesas Solutions Corp.
|
|
|
|
* Copyright (C) 2013 Magnus Damm
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2014-09-17 22:25:00 +08:00
|
|
|
#include <linux/init.h>
|
2014-06-21 00:53:07 +08:00
|
|
|
|
2013-09-04 11:45:57 +08:00
|
|
|
#include <asm/mach/arch.h>
|
2014-06-21 00:53:07 +08:00
|
|
|
|
2014-06-17 15:47:37 +08:00
|
|
|
#include "common.h"
|
2014-06-21 00:53:07 +08:00
|
|
|
#include "r8a7791.h"
|
2014-06-17 15:48:01 +08:00
|
|
|
#include "rcar-gen2.h"
|
2013-09-04 11:45:57 +08:00
|
|
|
|
2015-07-28 06:27:52 +08:00
|
|
|
static const char *const r8a7791_boards_compat_dt[] __initconst = {
|
2013-09-04 11:45:57 +08:00
|
|
|
"renesas,r8a7791",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(R8A7791_DT, "Generic R8A7791 (Flattened Device Tree)")
|
2013-10-01 16:13:16 +08:00
|
|
|
.smp = smp_ops(r8a7791_smp_ops),
|
2014-05-12 07:25:18 +08:00
|
|
|
.init_early = shmobile_init_delay,
|
2013-10-01 16:12:48 +08:00
|
|
|
.init_time = rcar_gen2_timer_init,
|
2014-06-06 14:15:23 +08:00
|
|
|
.init_late = shmobile_init_late,
|
2014-06-09 20:38:45 +08:00
|
|
|
.reserve = rcar_gen2_reserve,
|
2013-09-04 11:45:57 +08:00
|
|
|
.dt_compat = r8a7791_boards_compat_dt,
|
|
|
|
MACHINE_END
|