plat_topology.c 342 B

123456789101112131415
  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. #include <plat/common/platform.h>
  8. static const uint8_t plat_power_domain_tree_desc[] = {1, 4};
  9. const uint8_t *plat_get_power_domain_tree_desc(void)
  10. {
  11. return plat_power_domain_tree_desc;
  12. }