2 * Copyright (C) 2002 ARM Ltd.
3 * Copyright (C) 2008 STMicroelctronics.
4 * Copyright (C) 2009 ST-Ericsson.
7 * This file is based on arm realview platform
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/errno.h>
15 #include <linux/delay.h>
16 #include <linux/device.h>
17 #include <linux/smp.h>
20 #include <linux/of_address.h>
22 #include <asm/cacheflush.h>
23 #include <asm/smp_plat.h>
24 #include <asm/smp_scu.h>
26 #include "db8500-regs.h"
28 /* Magic triggers in backup RAM */
29 #define UX500_CPU1_JUMPADDR_OFFSET 0x1FF4
30 #define UX500_CPU1_WAKEMAGIC_OFFSET 0x1FF0
32 static void __iomem *backupram;
34 static void __init ux500_smp_prepare_cpus(unsigned int max_cpus)
36 struct device_node *np;
37 static void __iomem *scu_base;
41 np = of_find_compatible_node(NULL, NULL, "ste,dbx500-backupram");
43 pr_err("No backupram base address\n");
46 backupram = of_iomap(np, 0);
49 pr_err("No backupram remap\n");
53 np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu");
55 pr_err("No SCU base address\n");
58 scu_base = of_iomap(np, 0);
61 pr_err("No SCU remap\n");
66 ncores = scu_get_core_count(scu_base);
67 for (i = 0; i < ncores; i++)
68 set_cpu_possible(i, true);
72 static int ux500_boot_secondary(unsigned int cpu, struct task_struct *idle)
75 * write the address of secondary startup into the backup ram register
76 * at offset 0x1FF4, then write the magic number 0xA1FEED01 to the
77 * backup ram register at offset 0x1FF0, which is what boot rom code
78 * is waiting for. This will wake up the secondary core from WFE.
80 writel(__pa_symbol(secondary_startup),
81 backupram + UX500_CPU1_JUMPADDR_OFFSET);
83 backupram + UX500_CPU1_WAKEMAGIC_OFFSET);
85 /* make sure write buffer is drained */
87 arch_send_wakeup_ipi_mask(cpumask_of(cpu));
91 #ifdef CONFIG_HOTPLUG_CPU
92 void ux500_cpu_die(unsigned int cpu)
98 static const struct smp_operations ux500_smp_ops __initconst = {
99 .smp_prepare_cpus = ux500_smp_prepare_cpus,
100 .smp_boot_secondary = ux500_boot_secondary,
101 #ifdef CONFIG_HOTPLUG_CPU
102 .cpu_die = ux500_cpu_die,
105 CPU_METHOD_OF_DECLARE(ux500_smp, "ste,dbx500-smp", &ux500_smp_ops);