1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (C) 2014 Alexander Shiyan <shc_work@mail.ru> 4 */ 5 6 #include <linux/of_platform.h> 7 #include <asm/mach/arch.h> 8 #include <asm/mach/map.h> 9 10 #include "common.h" 11 #include "hardware.h" 12 13 #define MX1_AVIC_ADDR 0x00223000 14 15 static void __init imx1_init_early(void) 16 { 17 mxc_set_cpu_type(MXC_CPU_MX1); 18 } 19 20 static const char * const imx1_dt_board_compat[] __initconst = { 21 "fsl,imx1", 22 NULL 23 }; 24 25 DT_MACHINE_START(IMX1_DT, "Freescale i.MX1 (Device Tree Support)") 26 .init_early = imx1_init_early, 27 .dt_compat = imx1_dt_board_compat, 28 .restart = mxc_restart, 29 MACHINE_END 30