rpi3_topology.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright (c) 2015-2024, 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 <rpi_shared.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. /*
  35. * When MT is set, lowest affinity represents the thread ID.
  36. * Since we only support one thread per core, discard this field
  37. * so cluster and core IDs go back into Aff1 and Aff0 respectively.
  38. * The upper bits are also affected, but plat_rpi3_calc_core_pos()
  39. * does not use them.
  40. */
  41. if ((read_mpidr() & MPIDR_MT_MASK) != 0) {
  42. if (MPIDR_AFFLVL0_VAL(mpidr) != 0) {
  43. return -1;
  44. }
  45. mpidr >>= MPIDR_AFFINITY_BITS;
  46. }
  47. if (mpidr & ~(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK)) {
  48. return -1;
  49. }
  50. cluster_id = MPIDR_AFFLVL1_VAL(mpidr);
  51. cpu_id = MPIDR_AFFLVL0_VAL(mpidr);
  52. if (cluster_id >= PLATFORM_CLUSTER_COUNT) {
  53. return -1;
  54. }
  55. if (cpu_id >= PLATFORM_MAX_CPUS_PER_CLUSTER) {
  56. return -1;
  57. }
  58. return plat_rpi3_calc_core_pos(mpidr);
  59. }