platsmp.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * linux/arch/arm/plat-versatile/platsmp.c
  3. *
  4. * Copyright (C) 2002 ARM Ltd.
  5. * All Rights Reserved
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/init.h>
  12. #include <linux/errno.h>
  13. #include <linux/delay.h>
  14. #include <linux/device.h>
  15. #include <linux/jiffies.h>
  16. #include <linux/smp.h>
  17. #include <asm/cacheflush.h>
  18. /*
  19. * control for which core is the next to come out of the secondary
  20. * boot "holding pen"
  21. */
  22. volatile int __cpuinitdata pen_release = -1;
  23. /*
  24. * Write pen_release in a way that is guaranteed to be visible to all
  25. * observers, irrespective of whether they're taking part in coherency
  26. * or not. This is necessary for the hotplug code to work reliably.
  27. */
  28. static void __cpuinit write_pen_release(int val)
  29. {
  30. pen_release = val;
  31. smp_wmb();
  32. __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
  33. outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1));
  34. }
  35. static DEFINE_SPINLOCK(boot_lock);
  36. void __cpuinit platform_secondary_init(unsigned int cpu)
  37. {
  38. /*
  39. * if any interrupts are already enabled for the primary
  40. * core (e.g. timer irq), then they will not have been enabled
  41. * for us: do so
  42. */
  43. gic_secondary_init(0);
  44. /*
  45. * let the primary processor know we're out of the
  46. * pen, then head off into the C entry point
  47. */
  48. write_pen_release(-1);
  49. /*
  50. * Synchronise with the boot thread.
  51. */
  52. spin_lock(&boot_lock);
  53. spin_unlock(&boot_lock);
  54. }
  55. int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
  56. {
  57. unsigned long timeout;
  58. /*
  59. * Set synchronisation state between this boot processor
  60. * and the secondary one
  61. */
  62. spin_lock(&boot_lock);
  63. /*
  64. * This is really belt and braces; we hold unintended secondary
  65. * CPUs in the holding pen until we're ready for them. However,
  66. * since we haven't sent them a soft interrupt, they shouldn't
  67. * be there.
  68. */
  69. write_pen_release(cpu);
  70. /*
  71. * Send the secondary CPU a soft interrupt, thereby causing
  72. * the boot monitor to read the system wide flags register,
  73. * and branch to the address found there.
  74. */
  75. smp_cross_call(cpumask_of(cpu), 1);
  76. timeout = jiffies + (1 * HZ);
  77. while (time_before(jiffies, timeout)) {
  78. smp_rmb();
  79. if (pen_release == -1)
  80. break;
  81. udelay(10);
  82. }
  83. /*
  84. * now the secondary core is starting up let it run its
  85. * calibrations, then wait for it to finish
  86. */
  87. spin_unlock(&boot_lock);
  88. return pen_release != -1 ? -ENOSYS : 0;
  89. }