]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arc/plat-sim/platform.c
Merge branches 'for-4.4/upstream-fixes', 'for-4.5/async-suspend', 'for-4.5/container...
[mirror_ubuntu-artful-kernel.git] / arch / arc / plat-sim / platform.c
CommitLineData
c121c506 1/*
fd155792 2 * ARC simulation Platform support code
c121c506
VG
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
c121c506 11#include <linux/init.h>
877768c8 12#include <asm/mach_desc.h>
c121c506 13
877768c8
VG
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
70e95648
VG
22static const char *simulation_compat[] __initconst = {
23 "snps,nsim",
a12ebe16 24 "snps,nsim_hs",
a92a5d0d 25 "snps,nsimosci",
a12ebe16 26 "snps,nsimosci_hs",
a92a5d0d
MJ
27 NULL,
28};
29
70e95648
VG
30MACHINE_START(SIMULATION, "simulation")
31 .dt_compat = simulation_compat,
a92a5d0d 32MACHINE_END