Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.4-rc4 33 lines 842 B view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * ARC simulation Platform support code 4 * 5 * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com) 6 */ 7 8#include <linux/init.h> 9#include <asm/mach_desc.h> 10 11/*----------------------- Machine Descriptions ------------------------------ 12 * 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. 17 */ 18 19static const char *simulation_compat[] __initconst = { 20#ifdef CONFIG_ISA_ARCOMPACT 21 "snps,nsim", 22 "snps,nsimosci", 23#else 24 "snps,nsim_hs", 25 "snps,nsimosci_hs", 26 "snps,zebu_hs", 27#endif 28 NULL, 29}; 30 31MACHINE_START(SIMULATION, "simulation") 32 .dt_compat = simulation_compat, 33MACHINE_END