cpu_ops.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * CPU kernel entry/exit control
  3. *
  4. * Copyright (C) 2013 ARM Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/acpi.h>
  19. #include <linux/cache.h>
  20. #include <linux/errno.h>
  21. #include <linux/of.h>
  22. #include <linux/string.h>
  23. #include <asm/acpi.h>
  24. #include <asm/cpu_ops.h>
  25. #include <asm/smp_plat.h>
  26. extern const struct cpu_operations smp_spin_table_ops;
  27. extern const struct cpu_operations acpi_parking_protocol_ops;
  28. extern const struct cpu_operations cpu_psci_ops;
  29. const struct cpu_operations *cpu_ops[NR_CPUS] __ro_after_init;
  30. static const struct cpu_operations *dt_supported_cpu_ops[] __initconst = {
  31. &smp_spin_table_ops,
  32. &cpu_psci_ops,
  33. NULL,
  34. };
  35. static const struct cpu_operations *acpi_supported_cpu_ops[] __initconst = {
  36. #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
  37. &acpi_parking_protocol_ops,
  38. #endif
  39. &cpu_psci_ops,
  40. NULL,
  41. };
  42. static const struct cpu_operations * __init cpu_get_ops(const char *name)
  43. {
  44. const struct cpu_operations **ops;
  45. ops = acpi_disabled ? dt_supported_cpu_ops : acpi_supported_cpu_ops;
  46. while (*ops) {
  47. if (!strcmp(name, (*ops)->name))
  48. return *ops;
  49. ops++;
  50. }
  51. return NULL;
  52. }
  53. static const char *__init cpu_read_enable_method(int cpu)
  54. {
  55. const char *enable_method;
  56. if (acpi_disabled) {
  57. struct device_node *dn = of_get_cpu_node(cpu, NULL);
  58. if (!dn) {
  59. if (!cpu)
  60. pr_err("Failed to find device node for boot cpu\n");
  61. return NULL;
  62. }
  63. enable_method = of_get_property(dn, "enable-method", NULL);
  64. if (!enable_method) {
  65. /*
  66. * The boot CPU may not have an enable method (e.g.
  67. * when spin-table is used for secondaries).
  68. * Don't warn spuriously.
  69. */
  70. if (cpu != 0)
  71. pr_err("%s: missing enable-method property\n",
  72. dn->full_name);
  73. }
  74. } else {
  75. enable_method = acpi_get_enable_method(cpu);
  76. if (!enable_method) {
  77. /*
  78. * In ACPI systems the boot CPU does not require
  79. * checking the enable method since for some
  80. * boot protocol (ie parking protocol) it need not
  81. * be initialized. Don't warn spuriously.
  82. */
  83. if (cpu != 0)
  84. pr_err("Unsupported ACPI enable-method\n");
  85. }
  86. }
  87. return enable_method;
  88. }
  89. /*
  90. * Read a cpu's enable method and record it in cpu_ops.
  91. */
  92. int __init cpu_read_ops(int cpu)
  93. {
  94. const char *enable_method = cpu_read_enable_method(cpu);
  95. if (!enable_method)
  96. return -ENODEV;
  97. cpu_ops[cpu] = cpu_get_ops(enable_method);
  98. if (!cpu_ops[cpu]) {
  99. pr_warn("Unsupported enable-method: %s\n", enable_method);
  100. return -EOPNOTSUPP;
  101. }
  102. return 0;
  103. }