Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Copyright (c) 2018 Pengutronix, Oleksij Rempel <o.rempel@pengutronix.de>
0004  */
0005 
0006 #include <linux/kernel.h>
0007 #include <asm/v7m.h>
0008 #include <asm/mach/arch.h>
0009 
0010 static const char * const imx7d_cm4_dt_compat[] __initconst = {
0011     "fsl,imx7d-cm4",
0012     NULL,
0013 };
0014 
0015 DT_MACHINE_START(IMX7D, "Freescale i.MX7 Dual Cortex-M4 (Device Tree)")
0016     .dt_compat = imx7d_cm4_dt_compat,
0017     .restart = armv7m_restart,
0018 MACHINE_END