|
@@ -22,9 +22,9 @@
|
|
|
#include <mach/board-pb11mp.h>
|
|
|
#include <mach/board-pbx.h>
|
|
|
|
|
|
-#include "core.h"
|
|
|
+#include <plat/platsmp.h>
|
|
|
|
|
|
-extern void versatile_secondary_startup(void);
|
|
|
+#include "core.h"
|
|
|
|
|
|
static void __iomem *scu_base_addr(void)
|
|
|
{
|
|
@@ -43,7 +43,7 @@ static void __iomem *scu_base_addr(void)
|
|
|
* Initialise the CPU possible map early - this describes the CPUs
|
|
|
* which may be present or become present in the system.
|
|
|
*/
|
|
|
-void __init smp_init_cpus(void)
|
|
|
+static void __init realview_smp_init_cpus(void)
|
|
|
{
|
|
|
void __iomem *scu_base = scu_base_addr();
|
|
|
unsigned int i, ncores;
|
|
@@ -63,7 +63,7 @@ void __init smp_init_cpus(void)
|
|
|
set_smp_cross_call(gic_raise_softirq);
|
|
|
}
|
|
|
|
|
|
-void __init platform_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
+static void __init realview_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
{
|
|
|
|
|
|
scu_enable(scu_base_addr());
|
|
@@ -77,3 +77,13 @@ void __init platform_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
__raw_writel(virt_to_phys(versatile_secondary_startup),
|
|
|
__io_address(REALVIEW_SYS_FLAGSSET));
|
|
|
}
|
|
|
+
|
|
|
+struct smp_operations realview_smp_ops __initdata = {
|
|
|
+ .smp_init_cpus = realview_smp_init_cpus,
|
|
|
+ .smp_prepare_cpus = realview_smp_prepare_cpus,
|
|
|
+ .smp_secondary_init = versatile_secondary_init,
|
|
|
+ .smp_boot_secondary = versatile_boot_secondary,
|
|
|
+#ifdef CONFIG_HOTPLUG_CPU
|
|
|
+ .cpu_die = realview_cpu_die,
|
|
|
+#endif
|
|
|
+};
|