18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright 2012 Sascha Hauer, Pengutronix 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#include <asm/mach/arch.h> 78c2ecf20Sopenharmony_ci#include "common.h" 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_cistatic const char * const imx31_dt_board_compat[] __initconst = { 108c2ecf20Sopenharmony_ci "fsl,imx31", 118c2ecf20Sopenharmony_ci NULL 128c2ecf20Sopenharmony_ci}; 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ciDT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)") 158c2ecf20Sopenharmony_ci .map_io = mx31_map_io, 168c2ecf20Sopenharmony_ci .init_early = imx31_init_early, 178c2ecf20Sopenharmony_ci .init_irq = mx31_init_irq, 188c2ecf20Sopenharmony_ci .dt_compat = imx31_dt_board_compat, 198c2ecf20Sopenharmony_ciMACHINE_END 20