1 // SPDX-License-Identifier: GPL-2.0-only
3 * ARC simulation Platform support code
5 * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
8 #include <linux/init.h>
9 #include <asm/mach_desc.h>
11 /*----------------------- Machine Descriptions ------------------------------
13 * Machine description is simply a set of platform/board specific callbacks
14 * This is not directly related to DeviceTree based dynamic device creation,
15 * however as part of early device tree scan, we also select the right
16 * callback set, by matching the DT compatible name.
19 static const char *simulation_compat[] __initconst = {
20 #ifdef CONFIG_ISA_ARCOMPACT
30 MACHINE_START(SIMULATION, "simulation")
31 .dt_compat = simulation_compat,