Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Copyright (C) 2019
0004  * Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com>
0005  */
0006 
0007 #include <linux/kernel.h>
0008 #include <asm/mach/arch.h>
0009 #include <asm/v7m.h>
0010 
0011 static const char *const imxrt_compat[] __initconst = {
0012     "fsl,imxrt1050",
0013     NULL
0014 };
0015 
0016 DT_MACHINE_START(IMXRTDT, "IMXRT (Device Tree Support)")
0017     .dt_compat = imxrt_compat,
0018     .restart = armv7m_restart,
0019 MACHINE_END