sama7.c 481 B

123456789101112131415161718192021222324
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Setup code for SAMA7
  4. *
  5. * Copyright (C) 2021 Microchip Technology, Inc. and its subsidiaries
  6. *
  7. */
  8. #include <asm/mach/arch.h>
  9. #include <asm/system_misc.h>
  10. #include "generic.h"
  11. static const char *const sama7_dt_board_compat[] __initconst = {
  12. "microchip,sama7",
  13. NULL
  14. };
  15. DT_MACHINE_START(sama7_dt, "Microchip SAMA7")
  16. /* Maintainer: Microchip */
  17. .init_late = sama7_pm_init,
  18. .dt_compat = sama7_dt_board_compat,
  19. MACHINE_END