cpu_ops.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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/errno.h>
  20. #include <linux/of.h>
  21. #include <linux/string.h>
  22. #include <asm/acpi.h>
  23. #include <asm/cpu_ops.h>
  24. #include <asm/smp_plat.h>
  25. extern const struct cpu_operations smp_spin_table_ops;
  26. extern const struct cpu_operations cpu_psci_ops;
  27. const struct cpu_operations *cpu_ops[NR_CPUS];
  28. static const struct cpu_operations *supported_cpu_ops[] __initconst = {
  29. #ifdef CONFIG_SMP
  30. &smp_spin_table_ops,
  31. #endif
  32. &cpu_psci_ops,
  33. NULL,
  34. };
  35. static const struct cpu_operations * __init cpu_get_ops(const char *name)
  36. {
  37. const struct cpu_operations **ops = supported_cpu_ops;
  38. while (*ops) {
  39. if (!strcmp(name, (*ops)->name))
  40. return *ops;
  41. ops++;
  42. }
  43. return NULL;
  44. }
  45. static const char *__init cpu_read_enable_method(int cpu)
  46. {
  47. const char *enable_method;
  48. if (acpi_disabled) {
  49. struct device_node *dn = of_get_cpu_node(cpu, NULL);
  50. if (!dn) {
  51. if (!cpu)
  52. pr_err("Failed to find device node for boot cpu\n");
  53. return NULL;
  54. }
  55. enable_method = of_get_property(dn, "enable-method", NULL);
  56. if (!enable_method) {
  57. /*
  58. * The boot CPU may not have an enable method (e.g.
  59. * when spin-table is used for secondaries).
  60. * Don't warn spuriously.
  61. */
  62. if (cpu != 0)
  63. pr_err("%s: missing enable-method property\n",
  64. dn->full_name);
  65. }
  66. } else {
  67. enable_method = acpi_get_enable_method(cpu);
  68. if (!enable_method)
  69. pr_err("Unsupported ACPI enable-method\n");
  70. }
  71. return enable_method;
  72. }
  73. /*
  74. * Read a cpu's enable method and record it in cpu_ops.
  75. */
  76. int __init cpu_read_ops(int cpu)
  77. {
  78. const char *enable_method = cpu_read_enable_method(cpu);
  79. if (!enable_method)
  80. return -ENODEV;
  81. cpu_ops[cpu] = cpu_get_ops(enable_method);
  82. if (!cpu_ops[cpu]) {
  83. pr_warn("Unsupported enable-method: %s\n", enable_method);
  84. return -EOPNOTSUPP;
  85. }
  86. return 0;
  87. }