setup-r8a73a4.c 489 B

123456789101112131415161718192021222324
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * r8a73a4 processor support
  4. *
  5. * Copyright (C) 2013 Renesas Solutions Corp.
  6. * Copyright (C) 2013 Magnus Damm
  7. */
  8. #include <linux/init.h>
  9. #include <asm/mach/arch.h>
  10. #include "common.h"
  11. static const char *const r8a73a4_boards_compat_dt[] __initconst = {
  12. "renesas,r8a73a4",
  13. NULL,
  14. };
  15. DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
  16. .init_late = shmobile_init_late,
  17. .dt_compat = r8a73a4_boards_compat_dt,
  18. MACHINE_END