smp_spin_table.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Spin Table SMP initialisation
  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/init.h>
  19. #include <linux/of.h>
  20. #include <linux/smp.h>
  21. #include <asm/cacheflush.h>
  22. static phys_addr_t cpu_release_addr[NR_CPUS];
  23. static int __init smp_spin_table_init_cpu(struct device_node *dn, int cpu)
  24. {
  25. /*
  26. * Determine the address from which the CPU is polling.
  27. */
  28. if (of_property_read_u64(dn, "cpu-release-addr",
  29. &cpu_release_addr[cpu])) {
  30. pr_err("CPU %d: missing or invalid cpu-release-addr property\n",
  31. cpu);
  32. return -1;
  33. }
  34. return 0;
  35. }
  36. static int __init smp_spin_table_prepare_cpu(int cpu)
  37. {
  38. void **release_addr;
  39. if (!cpu_release_addr[cpu])
  40. return -ENODEV;
  41. release_addr = __va(cpu_release_addr[cpu]);
  42. release_addr[0] = (void *)__pa(secondary_holding_pen);
  43. __flush_dcache_area(release_addr, sizeof(release_addr[0]));
  44. /*
  45. * Send an event to wake up the secondary CPU.
  46. */
  47. sev();
  48. return 0;
  49. }
  50. const struct smp_enable_ops smp_spin_table_ops __initconst = {
  51. .name = "spin-table",
  52. .init_cpu = smp_spin_table_init_cpu,
  53. .prepare_cpu = smp_spin_table_prepare_cpu,
  54. };