xref: /rk3399_ARM-atf/plat/xilinx/versal/plat_topology.c (revision fc8d2d3980352f92cf378155c1f4449b4a0ab4c0)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <platform_def.h>
8 
9 static const uint8_t plat_power_domain_tree_desc[] = {1, PLATFORM_CORE_COUNT};
10 
11 const uint8_t *plat_get_power_domain_tree_desc(void)
12 {
13 	return plat_power_domain_tree_desc;
14 }
15