2013-03-27 19:49:34 +04:00
|
|
|
/*
|
|
|
|
* r8a7790 processor support
|
|
|
|
*
|
|
|
|
* 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-12-02 19:00:56 +03:00
|
|
|
#include <linux/init.h>
|
2014-06-20 20:53:06 +04:00
|
|
|
|
2013-03-27 19:49:34 +04:00
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
2014-06-17 11:47:37 +04:00
|
|
|
#include "common.h"
|
2014-06-20 20:53:06 +04:00
|
|
|
#include "r8a7790.h"
|
2014-06-17 11:48:01 +04:00
|
|
|
#include "rcar-gen2.h"
|
2013-03-27 19:49:34 +04:00
|
|
|
|
2013-08-08 02:34:53 +04:00
|
|
|
static const char * const r8a7790_boards_compat_dt[] __initconst = {
|
2013-03-27 19:49:34 +04:00
|
|
|
"renesas,r8a7790",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)")
|
2016-08-12 19:45:09 +03:00
|
|
|
.smp_init = smp_init_ops(shmobile_smp_init_fallback_ops),
|
2013-08-29 03:22:07 +04:00
|
|
|
.smp = smp_ops(r8a7790_smp_ops),
|
2014-05-20 03:37:24 +04:00
|
|
|
.init_early = shmobile_init_delay,
|
2013-09-12 04:32:49 +04:00
|
|
|
.init_time = rcar_gen2_timer_init,
|
2014-06-06 10:13:47 +04:00
|
|
|
.init_late = shmobile_init_late,
|
2014-06-09 16:38:45 +04:00
|
|
|
.reserve = rcar_gen2_reserve,
|
2013-03-27 19:49:34 +04:00
|
|
|
.dt_compat = r8a7790_boards_compat_dt,
|
|
|
|
MACHINE_END
|