Merge tag 'drm-intel-fixes-2013-11-20' of git://people.freedesktop.org/~danvet/drm...
[deliverable/linux.git] / arch / arm / mach-shmobile / board-koelsch.c
CommitLineData
1f52c659
HN
1/*
2 * Koelsch board support
3 *
4 * Copyright (C) 2013 Renesas Electronics Corporation
5 * Copyright (C) 2013 Renesas Solutions Corp.
6 * Copyright (C) 2013 Magnus Damm
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <linux/kernel.h>
23#include <linux/platform_device.h>
24#include <mach/common.h>
25#include <mach/r8a7791.h>
f9c9eb7e 26#include <mach/rcar-gen2.h>
1f52c659
HN
27#include <asm/mach-types.h>
28#include <asm/mach/arch.h>
29
30static void __init koelsch_add_standard_devices(void)
31{
32 r8a7791_clock_init();
0749bead 33 r8a7791_add_standard_devices();
1f52c659
HN
34}
35
36static const char * const koelsch_boards_compat_dt[] __initconst = {
37 "renesas,koelsch",
38 NULL,
39};
40
41DT_MACHINE_START(KOELSCH_DT, "koelsch")
b6d5a1b1 42 .smp = smp_ops(r8a7791_smp_ops),
1f52c659
HN
43 .init_early = r8a7791_init_early,
44 .init_machine = koelsch_add_standard_devices,
f9c9eb7e 45 .init_time = rcar_gen2_timer_init,
1f52c659
HN
46 .dt_compat = koelsch_boards_compat_dt,
47MACHINE_END
This page took 0.033126 seconds and 5 git commands to generate.