aml_topology.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <arch.h>
  7. #include <platform_def.h>
  8. #include <stdint.h>
  9. #include "aml_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. };
  17. /*******************************************************************************
  18. * This function returns the ARM default topology tree information.
  19. ******************************************************************************/
  20. const unsigned char *plat_get_power_domain_tree_desc(void)
  21. {
  22. return power_domain_tree_desc;
  23. }
  24. /*******************************************************************************
  25. * This function implements a part of the critical interface between the psci
  26. * generic layer and the platform that allows the former to query the platform
  27. * to convert an MPIDR to a unique linear index. An error code (-1) is returned
  28. * in case the MPIDR is invalid.
  29. ******************************************************************************/
  30. int plat_core_pos_by_mpidr(u_register_t mpidr)
  31. {
  32. unsigned int cluster_id, cpu_id;
  33. mpidr &= MPIDR_AFFINITY_MASK;
  34. if (mpidr & ~(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK))
  35. return -1;
  36. cluster_id = (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
  37. cpu_id = (mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK;
  38. if (cluster_id >= PLATFORM_CLUSTER_COUNT)
  39. return -1;
  40. if (cpu_id >= PLATFORM_MAX_CPUS_PER_CLUSTER)
  41. return -1;
  42. return plat_calc_core_pos(mpidr);
  43. }