Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 /*
0003  * Copyright (C) 2019 Stefan Wahren
0004  */
0005 
0006 #include <linux/of_address.h>
0007 
0008 #include <asm/mach/arch.h>
0009 
0010 #include "platsmp.h"
0011 
0012 static const char * const bcm2711_compat[] = {
0013 #ifdef CONFIG_ARCH_MULTI_V7
0014     "brcm,bcm2711",
0015 #endif
0016     NULL
0017 };
0018 
0019 DT_MACHINE_START(BCM2711, "BCM2711")
0020 #ifdef CONFIG_ZONE_DMA
0021     .dma_zone_size  = SZ_1G,
0022 #endif
0023     .dt_compat = bcm2711_compat,
0024     .smp = smp_ops(bcm2836_smp_ops),
0025 MACHINE_END