// SPDX-License-Identifier: GPL-2.0-only1/*2* ARC simulation Platform support code3*4* Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)5*/67#include <linux/init.h>8#include <asm/mach_desc.h>910/*----------------------- Machine Descriptions ------------------------------11*12* Machine description is simply a set of platform/board specific callbacks13* This is not directly related to DeviceTree based dynamic device creation,14* however as part of early device tree scan, we also select the right15* callback set, by matching the DT compatible name.16*/1718static const char *simulation_compat[] __initconst = {19#ifdef CONFIG_ISA_ARCOMPACT20"snps,nsim",21"snps,nsimosci",22#else23"snps,nsimosci_hs",24"snps,zebu_hs",25#endif26NULL,27};2829MACHINE_START(SIMULATION, "simulation")30.dt_compat = simulation_compat,31MACHINE_END323334