2013-01-18 13:42:20 +04:00
|
|
|
/*
|
2015-02-20 16:42:18 +03:00
|
|
|
* ARC simulation Platform support code
|
2013-01-18 13:42:20 +04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
2013-01-23 15:02:48 +04:00
|
|
|
#include <asm/mach_desc.h>
|
2013-01-18 13:42:20 +04:00
|
|
|
|
2013-01-23 15:02:48 +04:00
|
|
|
/*----------------------- Machine Descriptions ------------------------------
|
|
|
|
*
|
|
|
|
* Machine description is simply a set of platform/board specific callbacks
|
|
|
|
* This is not directly related to DeviceTree based dynamic device creation,
|
|
|
|
* however as part of early device tree scan, we also select the right
|
|
|
|
* callback set, by matching the DT compatible name.
|
|
|
|
*/
|
|
|
|
|
2014-09-10 09:38:39 +04:00
|
|
|
static const char *simulation_compat[] __initconst = {
|
2017-07-28 14:23:50 +03:00
|
|
|
#ifdef CONFIG_ISA_ARCOMPACT
|
2014-09-10 09:38:39 +04:00
|
|
|
"snps,nsim",
|
2013-04-18 13:40:39 +04:00
|
|
|
"snps,nsimosci",
|
2017-07-28 14:23:50 +03:00
|
|
|
#else
|
|
|
|
"snps,nsim_hs",
|
2015-03-09 12:00:19 +03:00
|
|
|
"snps,nsimosci_hs",
|
2015-05-11 16:16:22 +03:00
|
|
|
"snps,zebu_hs",
|
2017-07-28 14:23:50 +03:00
|
|
|
#endif
|
2013-04-18 13:40:39 +04:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2014-09-10 09:38:39 +04:00
|
|
|
MACHINE_START(SIMULATION, "simulation")
|
|
|
|
.dt_compat = simulation_compat,
|
2013-04-18 13:40:39 +04:00
|
|
|
MACHINE_END
|