]> Git Repo - linux.git/blob - arch/arm/mach-imx/mach-imxrt.c
x86/kaslr: Expose and use the end of the physical memory address space
[linux.git] / arch / arm / mach-imx / mach-imxrt.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2019
4  * Author(s): Giulio Benetti <[email protected]>
5  */
6
7 #include <linux/kernel.h>
8 #include <asm/mach/arch.h>
9 #include <asm/v7m.h>
10
11 static const char *const imxrt_compat[] __initconst = {
12         "fsl,imxrt1050",
13         NULL
14 };
15
16 DT_MACHINE_START(IMXRTDT, "IMXRT (Device Tree Support)")
17         .dt_compat = imxrt_compat,
18         .restart = armv7m_restart,
19 MACHINE_END
This page took 0.034307 seconds and 4 git commands to generate.