]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/powerpc/platforms/cell/smp.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / arch / powerpc / platforms / cell / smp.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
19fe0475
AB
2/*
3 * SMP support for BPA machines.
4 *
5 * Dave Engebretsen, Peter Bergner, and
6 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
7 *
8 * Plus various changes from other IBM teams...
19fe0475
AB
9 */
10
11#undef DEBUG
12
19fe0475 13#include <linux/kernel.h>
19fe0475
AB
14#include <linux/sched.h>
15#include <linux/smp.h>
16#include <linux/interrupt.h>
17#include <linux/delay.h>
18#include <linux/init.h>
19#include <linux/spinlock.h>
20#include <linux/cache.h>
21#include <linux/err.h>
edbaa603 22#include <linux/device.h>
19fe0475
AB
23#include <linux/cpu.h>
24
25#include <asm/ptrace.h>
60063497 26#include <linux/atomic.h>
19fe0475
AB
27#include <asm/irq.h>
28#include <asm/page.h>
29#include <asm/pgtable.h>
30#include <asm/io.h>
31#include <asm/prom.h>
32#include <asm/smp.h>
33#include <asm/paca.h>
19fe0475
AB
34#include <asm/machdep.h>
35#include <asm/cputable.h>
36#include <asm/firmware.h>
19fe0475 37#include <asm/rtas.h>
8d089085 38#include <asm/cputhreads.h>
2751b628 39#include <asm/code-patching.h>
19fe0475
AB
40
41#include "interrupt.h"
aa39be09 42#include <asm/udbg.h>
19fe0475
AB
43
44#ifdef DEBUG
45#define DBG(fmt...) udbg_printf(fmt)
46#else
47#define DBG(fmt...)
48#endif
49
50/*
6a75a6b8
MM
51 * The Primary thread of each non-boot processor was started from the OF client
52 * interface by prom_hold_cpus and is spinning on secondary_hold_spinloop.
19fe0475
AB
53 */
54static cpumask_t of_spin_map;
55
19fe0475
AB
56/**
57 * smp_startup_cpu() - start the given cpu
58 *
59 * At boot time, there is nothing to do for primary threads which were
60 * started from Open Firmware. For anything else, call RTAS with the
61 * appropriate start location.
62 *
63 * Returns:
64 * 0 - failure
65 * 1 - success
66 */
cad5cef6 67static inline int smp_startup_cpu(unsigned int lcpu)
19fe0475
AB
68{
69 int status;
2751b628
AB
70 unsigned long start_here =
71 __pa(ppc_function_entry(generic_secondary_smp_init));
19fe0475
AB
72 unsigned int pcpu;
73 int start_cpu;
74
104699c0 75 if (cpumask_test_cpu(lcpu, &of_spin_map))
19fe0475
AB
76 /* Already started by OF and sitting in spin loop */
77 return 1;
78
79 pcpu = get_hard_smp_processor_id(lcpu);
80
81 /* Fixup atomic count: it exited inside IRQ handler. */
d2e60075 82 task_thread_info(paca_ptrs[lcpu]->__current)->preempt_count = 0;
19fe0475
AB
83
84 /*
85 * If the RTAS start-cpu token does not exist then presume the
86 * cpu is already spinning.
87 */
88 start_cpu = rtas_token("start-cpu");
89 if (start_cpu == RTAS_UNKNOWN_SERVICE)
90 return 1;
91
92 status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, lcpu);
93 if (status != 0) {
94 printk(KERN_ERR "start-cpu failed: %i\n", status);
95 return 0;
96 }
97
98 return 1;
99}
100
cad5cef6 101static void smp_cell_setup_cpu(int cpu)
19fe0475
AB
102{
103 if (cpu != boot_cpuid)
104 iic_setup_cpu();
960cedb4
AB
105
106 /*
107 * change default DABRX to allow user watchpoints
108 */
109 mtspr(SPRN_DABRX, DABRX_KERNEL | DABRX_USER);
19fe0475
AB
110}
111
cad5cef6 112static int smp_cell_kick_cpu(int nr)
19fe0475 113{
c642af9c 114 if (nr < 0 || nr >= nr_cpu_ids)
f8d0d5dc 115 return -EINVAL;
19fe0475
AB
116
117 if (!smp_startup_cpu(nr))
de300974 118 return -ENOENT;
19fe0475
AB
119
120 /*
121 * The processor is currently spinning, waiting for the
122 * cpu_start field to become non-zero After we set cpu_start,
123 * the processor will continue on to secondary_start
124 */
d2e60075 125 paca_ptrs[nr]->cpu_start = 1;
de300974
ME
126
127 return 0;
19fe0475
AB
128}
129
19fe0475 130static struct smp_ops_t bpa_iic_smp_ops = {
d5a1c193 131 .message_pass = iic_message_pass,
a7f4ee1f 132 .probe = iic_request_IPIs,
19fe0475 133 .kick_cpu = smp_cell_kick_cpu,
960cedb4 134 .setup_cpu = smp_cell_setup_cpu,
39fd4027 135 .cpu_bootable = smp_generic_cpu_bootable,
19fe0475
AB
136};
137
138/* This is called very early */
139void __init smp_init_cell(void)
140{
141 int i;
142
143 DBG(" -> smp_init_cell()\n");
144
145 smp_ops = &bpa_iic_smp_ops;
146
147 /* Mark threads which are still spinning in hold loops. */
148 if (cpu_has_feature(CPU_FTR_SMT)) {
149 for_each_present_cpu(i) {
6a75a6b8 150 if (cpu_thread_in_core(i) == 0)
104699c0 151 cpumask_set_cpu(i, &of_spin_map);
19fe0475 152 }
104699c0
KM
153 } else
154 cpumask_copy(&of_spin_map, cpu_present_mask);
19fe0475 155
104699c0 156 cpumask_clear_cpu(boot_cpuid, &of_spin_map);
19fe0475
AB
157
158 /* Non-lpar has additional take/give timebase */
159 if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) {
c4007a2f
BH
160 smp_ops->give_timebase = rtas_give_timebase;
161 smp_ops->take_timebase = rtas_take_timebase;
19fe0475
AB
162 }
163
164 DBG(" <- smp_init_cell()\n");
165}