2 * SMP support for iSeries machines.
4 * Dave Engebretsen, Peter Bergner, and
5 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
7 * Plus various changes from other IBM teams...
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
17 #include <linux/config.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/sched.h>
21 #include <linux/smp.h>
22 #include <linux/smp_lock.h>
23 #include <linux/interrupt.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/delay.h>
26 #include <linux/init.h>
27 #include <linux/spinlock.h>
28 #include <linux/cache.h>
29 #include <linux/err.h>
30 #include <linux/sysdev.h>
31 #include <linux/cpu.h>
33 #include <asm/ptrace.h>
34 #include <asm/atomic.h>
37 #include <asm/pgtable.h>
41 #include <asm/iSeries/LparData.h>
42 #include <asm/iSeries/HvCall.h>
43 #include <asm/iSeries/HvCallCfg.h>
45 #include <asm/ppcdebug.h>
46 #include <asm/machdep.h>
47 #include <asm/cputable.h>
48 #include <asm/system.h>
50 static unsigned long iSeries_smp_message
[NR_CPUS
];
52 void iSeries_smp_message_recv( struct pt_regs
* regs
)
54 int cpu
= smp_processor_id();
57 if ( num_online_cpus() < 2 )
60 for ( msg
= 0; msg
< 4; ++msg
)
61 if ( test_and_clear_bit( msg
, &iSeries_smp_message
[cpu
] ) )
62 smp_message_recv( msg
, regs
);
65 static inline void smp_iSeries_do_message(int cpu
, int msg
)
67 set_bit(msg
, &iSeries_smp_message
[cpu
]);
68 HvCall_sendIPI(&(paca
[cpu
]));
71 static void smp_iSeries_message_pass(int target
, int msg
)
76 smp_iSeries_do_message(target
, msg
);
78 for_each_online_cpu(i
) {
79 if (target
== MSG_ALL_BUT_SELF
80 && i
== smp_processor_id())
82 smp_iSeries_do_message(i
, msg
);
87 static int smp_iSeries_numProcs(void)
92 for (i
=0; i
< NR_CPUS
; ++i
) {
93 if (paca
[i
].lppaca
.dyn_proc_status
< 2) {
94 cpu_set(i
, cpu_possible_map
);
95 cpu_set(i
, cpu_present_map
);
96 cpu_set(i
, cpu_sibling_map
[i
]);
103 static int smp_iSeries_probe(void)
108 for (i
=0; i
< NR_CPUS
; ++i
) {
109 if (paca
[i
].lppaca
.dyn_proc_status
< 2) {
110 /*paca[i].active = 1;*/
118 static void smp_iSeries_kick_cpu(int nr
)
120 BUG_ON(nr
< 0 || nr
>= NR_CPUS
);
122 /* Verify that our partition has a processor nr */
123 if (paca
[nr
].lppaca
.dyn_proc_status
>= 2)
126 /* The processor is currently spinning, waiting
127 * for the cpu_start field to become non-zero
128 * After we set cpu_start, the processor will
129 * continue on to secondary_start in iSeries_head.S
131 paca
[nr
].cpu_start
= 1;
134 static void __devinit
smp_iSeries_setup_cpu(int nr
)
138 static struct smp_ops_t iSeries_smp_ops
= {
139 .message_pass
= smp_iSeries_message_pass
,
140 .probe
= smp_iSeries_probe
,
141 .kick_cpu
= smp_iSeries_kick_cpu
,
142 .setup_cpu
= smp_iSeries_setup_cpu
,
145 /* This is called very early. */
146 void __init
smp_init_iSeries(void)
148 smp_ops
= &iSeries_smp_ops
;
149 systemcfg
->processorCount
= smp_iSeries_numProcs();