Merge tag 'renesas-cleanup2-for-v4.3' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / arm / mach-realview / realview-dt.c
CommitLineData
fa6e2eec
LW
1/*
2 * Copyright (C) 2014 Linaro Ltd.
3 *
4 * Author: Linus Walleij <linus.walleij@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 */
11#include <linux/of_platform.h>
12#include <asm/mach/arch.h>
13#include <asm/hardware/cache-l2x0.h>
14#include "core.h"
15
16static const char *realview_dt_platform_compat[] __initconst = {
17 "arm,realview-eb",
18 "arm,realview-pb1176",
19 "arm,realview-pb11mp",
20 "arm,realview-pba8",
21 "arm,realview-pbx",
22 NULL,
23};
24
25DT_MACHINE_START(REALVIEW_DT, "ARM RealView Machine (Device Tree Support)")
26#ifdef CONFIG_ZONE_DMA
27 .dma_zone_size = SZ_256M,
28#endif
29 .dt_compat = realview_dt_platform_compat,
30 .l2c_aux_val = 0x0,
31 .l2c_aux_mask = ~0x0,
32MACHINE_END
This page took 0.065534 seconds and 5 git commands to generate.