setup-r7s72100.c 578 B

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