1 /*
2  * xen/arch/arm/platforms/xilinx-zynqmp.c
3  *
4  * Xilinx ZynqMP setup
5  *
6  * Copyright (c) 2016 Xilinx Inc.
7  * Written by Edgar E. Iglesias <edgar.iglesias@xilinx.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  */
19 
20 #include <asm/platform.h>
21 
22 static const char * const zynqmp_dt_compat[] __initconst =
23 {
24     "xlnx,zynqmp",
25     NULL
26 };
27 
28 static const struct dt_device_match zynqmp_blacklist_dev[] __initconst =
29 {
30     /* Power management is not yet supported.  */
31     DT_MATCH_COMPATIBLE("xlnx,zynqmp-pm"),
32     { /* sentinel */ },
33 };
34 
35 PLATFORM_START(xgene_storm, "Xilinx ZynqMP")
36     .compatible = zynqmp_dt_compat,
37     .blacklist_dev = zynqmp_blacklist_dev,
38 PLATFORM_END
39 
40 /*
41  * Local variables:
42  * mode: C
43  * c-file-style: "BSD"
44  * c-basic-offset: 4
45  * indent-tabs-mode: nil
46  * End:
47  */
48