mach-imx7d-cm4.c 435 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2018 Pengutronix, Oleksij Rempel <[email protected]>
  4. */
  5. #include <linux/kernel.h>
  6. #include <asm/v7m.h>
  7. #include <asm/mach/arch.h>
  8. static const char * const imx7d_cm4_dt_compat[] __initconst = {
  9. "fsl,imx7d-cm4",
  10. NULL,
  11. };
  12. DT_MACHINE_START(IMX7D, "Freescale i.MX7 Dual Cortex-M4 (Device Tree)")
  13. .dt_compat = imx7d_cm4_dt_compat,
  14. .restart = armv7m_restart,
  15. MACHINE_END