xref: /rk3399_ARM-atf/plat/xilinx/zynqmp/plat_topology.c (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (c) 2013-2016, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #include <stdint.h>
7 
8 #include <plat/common/platform.h>
9 
10 static const uint8_t plat_power_domain_tree_desc[] = {1, 4};
11 
12 const uint8_t *plat_get_power_domain_tree_desc(void)
13 {
14 	return plat_power_domain_tree_desc;
15 }
16