WIP FPC-III support
[linux/fpc-iii.git] / arch / arm / mach-prima2 / platsmp.c
blob8f7bbb57fb209cab86436b52a7f21b69f7bfbffa
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * plat smp support for CSR Marco dual-core SMP SoCs
5 * Copyright (c) 2012 Cambridge Silicon Radio Limited, a CSR plc group company.
6 */
8 #include <linux/init.h>
9 #include <linux/smp.h>
10 #include <linux/delay.h>
11 #include <linux/of.h>
12 #include <linux/of_address.h>
13 #include <asm/page.h>
14 #include <asm/mach/map.h>
15 #include <asm/smp_plat.h>
16 #include <asm/smp_scu.h>
17 #include <asm/cacheflush.h>
18 #include <asm/cputype.h>
20 #include "common.h"
22 static void __iomem *clk_base;
24 static DEFINE_SPINLOCK(boot_lock);
26 /* XXX prima2_pen_release is cargo culted code - DO NOT COPY XXX */
27 volatile int prima2_pen_release = -1;
29 static void sirfsoc_secondary_init(unsigned int cpu)
32 * let the primary processor know we're out of the
33 * pen, then head off into the C entry point
35 prima2_pen_release = -1;
36 smp_wmb();
39 * Synchronise with the boot thread.
41 spin_lock(&boot_lock);
42 spin_unlock(&boot_lock);
45 static const struct of_device_id clk_ids[] = {
46 { .compatible = "sirf,atlas7-clkc" },
47 {},
50 static int sirfsoc_boot_secondary(unsigned int cpu, struct task_struct *idle)
52 unsigned long timeout;
53 struct device_node *np;
55 np = of_find_matching_node(NULL, clk_ids);
56 if (!np)
57 return -ENODEV;
59 clk_base = of_iomap(np, 0);
60 if (!clk_base)
61 return -ENOMEM;
64 * write the address of secondary startup into the clkc register
65 * at offset 0x2bC, then write the magic number 0x3CAF5D62 to the
66 * clkc register at offset 0x2b8, which is what boot rom code is
67 * waiting for. This would wake up the secondary core from WFE
69 #define SIRFSOC_CPU1_JUMPADDR_OFFSET 0x2bc
70 __raw_writel(__pa_symbol(sirfsoc_secondary_startup),
71 clk_base + SIRFSOC_CPU1_JUMPADDR_OFFSET);
73 #define SIRFSOC_CPU1_WAKEMAGIC_OFFSET 0x2b8
74 __raw_writel(0x3CAF5D62,
75 clk_base + SIRFSOC_CPU1_WAKEMAGIC_OFFSET);
77 /* make sure write buffer is drained */
78 mb();
80 spin_lock(&boot_lock);
83 * The secondary processor is waiting to be released from
84 * the holding pen - release it, then wait for it to flag
85 * that it has been released by resetting prima2_pen_release.
87 * Note that "prima2_pen_release" is the hardware CPU ID, whereas
88 * "cpu" is Linux's internal ID.
90 prima2_pen_release = cpu_logical_map(cpu);
91 sync_cache_w(&prima2_pen_release);
94 * Send the secondary CPU SEV, thereby causing the boot monitor to read
95 * the JUMPADDR and WAKEMAGIC, and branch to the address found there.
97 dsb_sev();
99 timeout = jiffies + (1 * HZ);
100 while (time_before(jiffies, timeout)) {
101 smp_rmb();
102 if (prima2_pen_release == -1)
103 break;
105 udelay(10);
109 * now the secondary core is starting up let it run its
110 * calibrations, then wait for it to finish
112 spin_unlock(&boot_lock);
114 return prima2_pen_release != -1 ? -ENOSYS : 0;
117 const struct smp_operations sirfsoc_smp_ops __initconst = {
118 .smp_secondary_init = sirfsoc_secondary_init,
119 .smp_boot_secondary = sirfsoc_boot_secondary,
120 #ifdef CONFIG_HOTPLUG_CPU
121 .cpu_die = sirfsoc_cpu_die,
122 #endif