]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arc/plat-sim/platform.c
Merge remote-tracking branch 'mvebu/for-next'
[karo-tx-linux.git] / arch / arc / plat-sim / platform.c
1 /*
2  * ARC simulation Platform support code
3  *
4  * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #include <linux/init.h>
12 #include <asm/mach_desc.h>
13
14 /*----------------------- Machine Descriptions ------------------------------
15  *
16  * Machine description is simply a set of platform/board specific callbacks
17  * This is not directly related to DeviceTree based dynamic device creation,
18  * however as part of early device tree scan, we also select the right
19  * callback set, by matching the DT compatible name.
20  */
21
22 static const char *simulation_compat[] __initconst = {
23         "snps,nsim",
24         "snps,nsim_hs",
25         "snps,nsimosci",
26         "snps,nsimosci_hs",
27         NULL,
28 };
29
30 MACHINE_START(SIMULATION, "simulation")
31         .dt_compat      = simulation_compat,
32 MACHINE_END