1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * plat smp support for CSR Marco dual-core SMP SoCs
5 * Copyright (c) 2012 Cambridge Silicon Radio Limited, a CSR plc group company.
8 #include <linux/init.h>
10 #include <linux/delay.h>
12 #include <linux/of_address.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>
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;
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" },
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
);
59 clk_base
= of_iomap(np
, 0);
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 */
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.
99 timeout
= jiffies
+ (1 * HZ
);
100 while (time_before(jiffies
, timeout
)) {
102 if (prima2_pen_release
== -1)
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
,