mach-imxrt.c 419 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2019
  4. * Author(s): Giulio Benetti <[email protected]>
  5. */
  6. #include <linux/kernel.h>
  7. #include <asm/mach/arch.h>
  8. #include <asm/v7m.h>
  9. static const char *const imxrt_compat[] __initconst = {
  10. "fsl,imxrt1050",
  11. NULL
  12. };
  13. DT_MACHINE_START(IMXRTDT, "IMXRT (Device Tree Support)")
  14. .dt_compat = imxrt_compat,
  15. .restart = armv7m_restart,
  16. MACHINE_END