https://github.com/torvalds/linux
Raw File
Tip revision: 6613476e225e090cc9aad49be7fa504e290dd33d authored by Linus Torvalds on 21 January 2024, 22:11:32 UTC
Linux 6.8-rc1
Tip revision: 6613476
mach-imx7d-cm4.c
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2018 Pengutronix, Oleksij Rempel <o.rempel@pengutronix.de>
 */

#include <linux/kernel.h>
#include <asm/v7m.h>
#include <asm/mach/arch.h>

static const char * const imx7d_cm4_dt_compat[] __initconst = {
	"fsl,imx7d-cm4",
	NULL,
};

DT_MACHINE_START(IMX7D, "Freescale i.MX7 Dual Cortex-M4 (Device Tree)")
	.dt_compat = imx7d_cm4_dt_compat,
	.restart = armv7m_restart,
MACHINE_END
back to top