topology.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stdint.h>
  7. #include <platform_def.h>
  8. #include <arch.h>
  9. #include "qemu_private.h"
  10. /* The power domain tree descriptor */
  11. static unsigned char power_domain_tree_desc[] = {
  12. /* Number of root nodes */
  13. PLATFORM_CLUSTER_COUNT,
  14. /* Number of children for the first node */
  15. PLATFORM_CLUSTER0_CORE_COUNT,
  16. /* Number of children for the second node */
  17. PLATFORM_CLUSTER1_CORE_COUNT,
  18. };
  19. /*******************************************************************************
  20. * This function returns the ARM default topology tree information.
  21. ******************************************************************************/
  22. const unsigned char *plat_get_power_domain_tree_desc(void)
  23. {
  24. return power_domain_tree_desc;
  25. }
  26. /*******************************************************************************
  27. * This function implements a part of the critical interface between the psci
  28. * generic layer and the platform that allows the former to query the platform
  29. * to convert an MPIDR to a unique linear index. An error code (-1) is returned
  30. * in case the MPIDR is invalid.
  31. ******************************************************************************/
  32. int plat_core_pos_by_mpidr(u_register_t mpidr)
  33. {
  34. unsigned int cluster_id, cpu_id;
  35. mpidr &= MPIDR_AFFINITY_MASK;
  36. if (mpidr & ~(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK))
  37. return -1;
  38. cluster_id = (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
  39. cpu_id = (mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK;
  40. if (cluster_id >= PLATFORM_CLUSTER_COUNT)
  41. return -1;
  42. if (cpu_id >= PLATFORM_MAX_CPUS_PER_CLUSTER)
  43. return -1;
  44. return plat_qemu_calc_core_pos(mpidr);
  45. }