setup-r7s9210.c 585 B

123456789101112131415161718192021222324252627
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * r7s9210 processor support
  4. *
  5. * Copyright (C) 2018 Renesas Electronics Corporation
  6. * Copyright (C) 2018 Chris Brandt
  7. *
  8. */
  9. #include <linux/kernel.h>
  10. #include <asm/mach/arch.h>
  11. #include "common.h"
  12. static const char *const r7s9210_boards_compat_dt[] __initconst = {
  13. "renesas,r7s9210",
  14. NULL,
  15. };
  16. DT_MACHINE_START(R7S72100_DT, "Generic R7S9210 (Flattened Device Tree)")
  17. .l2c_aux_val = 0,
  18. .l2c_aux_mask = ~0,
  19. .init_early = shmobile_init_delay,
  20. .init_late = shmobile_init_late,
  21. .dt_compat = r7s9210_boards_compat_dt,
  22. MACHINE_END