smp.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * OMAP4 machine specific smp.h
  3. *
  4. * Copyright (C) 2009 Texas Instruments, Inc.
  5. *
  6. * Author:
  7. * Santosh Shilimkar <santosh.shilimkar@ti.com>
  8. *
  9. * Interface functions needed for the SMP. This file is based on arm
  10. * realview smp platform.
  11. * Copyright (c) 2003 ARM Limited.
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License version 2 as
  15. * published by the Free Software Foundation.
  16. */
  17. #ifndef OMAP_ARCH_SMP_H
  18. #define OMAP_ARCH_SMP_H
  19. #include <asm/hardware/gic.h>
  20. /*
  21. * set_event() is used to wake up secondary core from wfe using sev. ROM
  22. * code puts the second core into wfe(standby).
  23. *
  24. */
  25. #define set_event() __asm__ __volatile__ ("sev" : : : "memory")
  26. /* Needed for secondary core boot */
  27. extern void omap_secondary_startup(void);
  28. /*
  29. * We use Soft IRQ1 as the IPI
  30. */
  31. static inline void smp_cross_call(const struct cpumask *mask)
  32. {
  33. gic_raise_softirq(mask, 1);
  34. }
  35. /*
  36. * Read MPIDR: Multiprocessor affinity register
  37. */
  38. #define hard_smp_processor_id() \
  39. ({ \
  40. unsigned int cpunum; \
  41. __asm__("mrc p15, 0, %0, c0, c0, 5" \
  42. : "=r" (cpunum)); \
  43. cpunum &= 0x0F; \
  44. })
  45. #endif