Merge remote-tracking branch 'selinux/next'
[deliverable/linux.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",
40b93c1f 27 "snps,zebu_hs",
a92a5d0d
MJ
28 NULL,
29};
30
70e95648
VG
31MACHINE_START(SIMULATION, "simulation")
32 .dt_compat = simulation_compat,
a92a5d0d 33MACHINE_END
This page took 0.172146 seconds and 5 git commands to generate.