Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / arm / mach-prima2 / platsmp.c
CommitLineData
a636cd6c 1// SPDX-License-Identifier: GPL-2.0-or-later
4898de3d
BS
2/*
3 * plat smp support for CSR Marco dual-core SMP SoCs
4 *
5 * Copyright (c) 2012 Cambridge Silicon Radio Limited, a CSR plc group company.
4898de3d
BS
6 */
7
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>
4898de3d
BS
19
20#include "common.h"
21
a7ae982f 22static void __iomem *clk_base;
4898de3d
BS
23
24static DEFINE_SPINLOCK(boot_lock);
25
6213f70e
RK
26/* XXX prima2_pen_release is cargo culted code - DO NOT COPY XXX */
27volatile int prima2_pen_release = -1;
28
8bd26e3a 29static void sirfsoc_secondary_init(unsigned int cpu)
4898de3d 30{
4898de3d
BS
31 /*
32 * let the primary processor know we're out of the
33 * pen, then head off into the C entry point
34 */
6213f70e 35 prima2_pen_release = -1;
4898de3d
BS
36 smp_wmb();
37
38 /*
39 * Synchronise with the boot thread.
40 */
41 spin_lock(&boot_lock);
42 spin_unlock(&boot_lock);
43}
44
444d2d33 45static const struct of_device_id clk_ids[] = {
a7ae982f 46 { .compatible = "sirf,atlas7-clkc" },
4898de3d
BS
47 {},
48};
49
8bd26e3a 50static int sirfsoc_boot_secondary(unsigned int cpu, struct task_struct *idle)
4898de3d
BS
51{
52 unsigned long timeout;
53 struct device_node *np;
54
a7ae982f 55 np = of_find_matching_node(NULL, clk_ids);
4898de3d
BS
56 if (!np)
57 return -ENODEV;
58
a7ae982f
ZS
59 clk_base = of_iomap(np, 0);
60 if (!clk_base)
4898de3d
BS
61 return -ENOMEM;
62
63 /*
a7ae982f
ZS
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
4898de3d
BS
67 * waiting for. This would wake up the secondary core from WFE
68 */
a7ae982f 69#define SIRFSOC_CPU1_JUMPADDR_OFFSET 0x2bc
64fc2a94 70 __raw_writel(__pa_symbol(sirfsoc_secondary_startup),
a7ae982f 71 clk_base + SIRFSOC_CPU1_JUMPADDR_OFFSET);
4898de3d 72
a7ae982f 73#define SIRFSOC_CPU1_WAKEMAGIC_OFFSET 0x2b8
4898de3d 74 __raw_writel(0x3CAF5D62,
a7ae982f 75 clk_base + SIRFSOC_CPU1_WAKEMAGIC_OFFSET);
4898de3d
BS
76
77 /* make sure write buffer is drained */
78 mb();
79
80 spin_lock(&boot_lock);
81
82 /*
83 * The secondary processor is waiting to be released from
84 * the holding pen - release it, then wait for it to flag
6213f70e 85 * that it has been released by resetting prima2_pen_release.
4898de3d 86 *
6213f70e 87 * Note that "prima2_pen_release" is the hardware CPU ID, whereas
4898de3d
BS
88 * "cpu" is Linux's internal ID.
89 */
6213f70e
RK
90 prima2_pen_release = cpu_logical_map(cpu);
91 sync_cache_w(&prima2_pen_release);
4898de3d
BS
92
93 /*
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.
96 */
97 dsb_sev();
98
99 timeout = jiffies + (1 * HZ);
100 while (time_before(jiffies, timeout)) {
101 smp_rmb();
6213f70e 102 if (prima2_pen_release == -1)
4898de3d
BS
103 break;
104
105 udelay(10);
106 }
107
108 /*
109 * now the secondary core is starting up let it run its
110 * calibrations, then wait for it to finish
111 */
112 spin_unlock(&boot_lock);
113
6213f70e 114 return prima2_pen_release != -1 ? -ENOSYS : 0;
4898de3d
BS
115}
116
75305275 117const struct smp_operations sirfsoc_smp_ops __initconst = {
661bfe23
BS
118 .smp_secondary_init = sirfsoc_secondary_init,
119 .smp_boot_secondary = sirfsoc_boot_secondary,
4898de3d
BS
120#ifdef CONFIG_HOTPLUG_CPU
121 .cpu_die = sirfsoc_cpu_die,
122#endif
123};