Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * Copyright (C) 2014 Linaro Ltd.
0004  *
0005  * Author: Linus Walleij <linus.walleij@linaro.org>
0006  */
0007 #include <linux/of_platform.h>
0008 #include <asm/mach/arch.h>
0009 #include <asm/hardware/cache-l2x0.h>
0010 
0011 static const char *const realview_dt_platform_compat[] __initconst = {
0012     "arm,realview-eb",
0013     "arm,realview-pb1176",
0014     "arm,realview-pb11mp",
0015     "arm,realview-pba8",
0016     "arm,realview-pbx",
0017     NULL,
0018 };
0019 
0020 DT_MACHINE_START(REALVIEW_DT, "ARM RealView Machine (Device Tree Support)")
0021 #ifdef CONFIG_ZONE_DMA
0022     .dma_zone_size  = SZ_256M,
0023 #endif
0024     .dt_compat  = realview_dt_platform_compat,
0025     .l2c_aux_val = 0x0,
0026     .l2c_aux_mask = ~0x0,
0027 MACHINE_END