bcm2711.c 439 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2019 Stefan Wahren
  4. */
  5. #include <linux/of_address.h>
  6. #include <asm/mach/arch.h>
  7. #include "platsmp.h"
  8. static const char * const bcm2711_compat[] = {
  9. #ifdef CONFIG_ARCH_MULTI_V7
  10. "brcm,bcm2711",
  11. #endif
  12. NULL
  13. };
  14. DT_MACHINE_START(BCM2711, "BCM2711")
  15. #ifdef CONFIG_ZONE_DMA
  16. .dma_zone_size = SZ_1G,
  17. #endif
  18. .dt_compat = bcm2711_compat,
  19. .smp = smp_ops(bcm2836_smp_ops),
  20. MACHINE_END