2 * SMP related functions
4 * Copyright IBM Corp. 1999, 2012
5 * Author(s): Denis Joseph Barrow,
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>,
7 * Heiko Carstens <heiko.carstens@de.ibm.com>,
9 * based on other smp stuff by
10 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
11 * (c) 1998 Ingo Molnar
13 * The code outside of smp.c uses logical cpu numbers, only smp.c does
14 * the translation of logical to physical cpu ids. All new code that
15 * operates on physical cpu numbers needs to go into smp.c.
18 #define KMSG_COMPONENT "cpu"
19 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
21 #include <linux/workqueue.h>
22 #include <linux/bootmem.h>
23 #include <linux/export.h>
24 #include <linux/init.h>
26 #include <linux/err.h>
27 #include <linux/spinlock.h>
28 #include <linux/kernel_stat.h>
29 #include <linux/delay.h>
30 #include <linux/interrupt.h>
31 #include <linux/irqflags.h>
32 #include <linux/cpu.h>
33 #include <linux/slab.h>
34 #include <linux/sched/hotplug.h>
35 #include <linux/sched/task_stack.h>
36 #include <linux/crash_dump.h>
37 #include <linux/memblock.h>
38 #include <asm/asm-offsets.h>
40 #include <asm/switch_to.h>
41 #include <asm/facility.h>
43 #include <asm/setup.h>
45 #include <asm/tlbflush.h>
46 #include <asm/vtimer.h>
47 #include <asm/lowcore.h>
50 #include <asm/debug.h>
51 #include <asm/os_info.h>
58 ec_call_function_single
,
67 static DEFINE_PER_CPU(struct cpu
*, cpu_device
);
70 struct lowcore
*lowcore
; /* lowcore page(s) for the cpu */
71 unsigned long ec_mask
; /* bit mask for ec_xxx functions */
72 unsigned long ec_clk
; /* sigp timestamp for ec_xxx */
73 signed char state
; /* physical cpu state */
74 signed char polarization
; /* physical polarization */
75 u16 address
; /* physical cpu address */
78 static u8 boot_core_type
;
79 static struct pcpu pcpu_devices
[NR_CPUS
];
81 unsigned int smp_cpu_mt_shift
;
82 EXPORT_SYMBOL(smp_cpu_mt_shift
);
84 unsigned int smp_cpu_mtid
;
85 EXPORT_SYMBOL(smp_cpu_mtid
);
87 #ifdef CONFIG_CRASH_DUMP
88 __vector128 __initdata boot_cpu_vector_save_area
[__NUM_VXRS
];
91 static unsigned int smp_max_threads __initdata
= -1U;
93 static int __init
early_nosmt(char *s
)
98 early_param("nosmt", early_nosmt
);
100 static int __init
early_smt(char *s
)
102 get_option(&s
, &smp_max_threads
);
105 early_param("smt", early_smt
);
108 * The smp_cpu_state_mutex must be held when changing the state or polarization
109 * member of a pcpu data structure within the pcpu_devices arreay.
111 DEFINE_MUTEX(smp_cpu_state_mutex
);
114 * Signal processor helper functions.
116 static inline int __pcpu_sigp_relax(u16 addr
, u8 order
, unsigned long parm
)
121 cc
= __pcpu_sigp(addr
, order
, parm
, NULL
);
122 if (cc
!= SIGP_CC_BUSY
)
128 static int pcpu_sigp_retry(struct pcpu
*pcpu
, u8 order
, u32 parm
)
132 for (retry
= 0; ; retry
++) {
133 cc
= __pcpu_sigp(pcpu
->address
, order
, parm
, NULL
);
134 if (cc
!= SIGP_CC_BUSY
)
142 static inline int pcpu_stopped(struct pcpu
*pcpu
)
144 u32
uninitialized_var(status
);
146 if (__pcpu_sigp(pcpu
->address
, SIGP_SENSE
,
147 0, &status
) != SIGP_CC_STATUS_STORED
)
149 return !!(status
& (SIGP_STATUS_CHECK_STOP
|SIGP_STATUS_STOPPED
));
152 static inline int pcpu_running(struct pcpu
*pcpu
)
154 if (__pcpu_sigp(pcpu
->address
, SIGP_SENSE_RUNNING
,
155 0, NULL
) != SIGP_CC_STATUS_STORED
)
157 /* Status stored condition code is equivalent to cpu not running. */
162 * Find struct pcpu by cpu address.
164 static struct pcpu
*pcpu_find_address(const struct cpumask
*mask
, u16 address
)
168 for_each_cpu(cpu
, mask
)
169 if (pcpu_devices
[cpu
].address
== address
)
170 return pcpu_devices
+ cpu
;
174 static void pcpu_ec_call(struct pcpu
*pcpu
, int ec_bit
)
178 if (test_and_set_bit(ec_bit
, &pcpu
->ec_mask
))
180 order
= pcpu_running(pcpu
) ? SIGP_EXTERNAL_CALL
: SIGP_EMERGENCY_SIGNAL
;
181 pcpu
->ec_clk
= get_tod_clock_fast();
182 pcpu_sigp_retry(pcpu
, order
, 0);
185 #define ASYNC_FRAME_OFFSET (ASYNC_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
186 #define PANIC_FRAME_OFFSET (PAGE_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
188 static int pcpu_alloc_lowcore(struct pcpu
*pcpu
, int cpu
)
190 unsigned long async_stack
, panic_stack
;
193 if (pcpu
!= &pcpu_devices
[0]) {
194 pcpu
->lowcore
= (struct lowcore
*)
195 __get_free_pages(GFP_KERNEL
| GFP_DMA
, LC_ORDER
);
196 async_stack
= __get_free_pages(GFP_KERNEL
, ASYNC_ORDER
);
197 panic_stack
= __get_free_page(GFP_KERNEL
);
198 if (!pcpu
->lowcore
|| !panic_stack
|| !async_stack
)
201 async_stack
= pcpu
->lowcore
->async_stack
- ASYNC_FRAME_OFFSET
;
202 panic_stack
= pcpu
->lowcore
->panic_stack
- PANIC_FRAME_OFFSET
;
205 memcpy(lc
, &S390_lowcore
, 512);
206 memset((char *) lc
+ 512, 0, sizeof(*lc
) - 512);
207 lc
->async_stack
= async_stack
+ ASYNC_FRAME_OFFSET
;
208 lc
->panic_stack
= panic_stack
+ PANIC_FRAME_OFFSET
;
210 lc
->spinlock_lockval
= arch_spin_lockval(cpu
);
212 lc
->vector_save_area_addr
=
213 (unsigned long) &lc
->vector_save_area
;
214 if (vdso_alloc_per_cpu(lc
))
216 lowcore_ptr
[cpu
] = lc
;
217 pcpu_sigp_retry(pcpu
, SIGP_SET_PREFIX
, (u32
)(unsigned long) lc
);
220 if (pcpu
!= &pcpu_devices
[0]) {
221 free_page(panic_stack
);
222 free_pages(async_stack
, ASYNC_ORDER
);
223 free_pages((unsigned long) pcpu
->lowcore
, LC_ORDER
);
228 #ifdef CONFIG_HOTPLUG_CPU
230 static void pcpu_free_lowcore(struct pcpu
*pcpu
)
232 pcpu_sigp_retry(pcpu
, SIGP_SET_PREFIX
, 0);
233 lowcore_ptr
[pcpu
- pcpu_devices
] = NULL
;
234 vdso_free_per_cpu(pcpu
->lowcore
);
235 if (pcpu
== &pcpu_devices
[0])
237 free_page(pcpu
->lowcore
->panic_stack
-PANIC_FRAME_OFFSET
);
238 free_pages(pcpu
->lowcore
->async_stack
-ASYNC_FRAME_OFFSET
, ASYNC_ORDER
);
239 free_pages((unsigned long) pcpu
->lowcore
, LC_ORDER
);
242 #endif /* CONFIG_HOTPLUG_CPU */
244 static void pcpu_prepare_secondary(struct pcpu
*pcpu
, int cpu
)
246 struct lowcore
*lc
= pcpu
->lowcore
;
248 cpumask_set_cpu(cpu
, &init_mm
.context
.cpu_attach_mask
);
249 cpumask_set_cpu(cpu
, mm_cpumask(&init_mm
));
251 lc
->spinlock_lockval
= arch_spin_lockval(cpu
);
252 lc
->percpu_offset
= __per_cpu_offset
[cpu
];
253 lc
->kernel_asce
= S390_lowcore
.kernel_asce
;
254 lc
->machine_flags
= S390_lowcore
.machine_flags
;
255 lc
->user_timer
= lc
->system_timer
= lc
->steal_timer
= 0;
256 __ctl_store(lc
->cregs_save_area
, 0, 15);
257 save_access_regs((unsigned int *) lc
->access_regs_save_area
);
258 memcpy(lc
->stfle_fac_list
, S390_lowcore
.stfle_fac_list
,
262 static void pcpu_attach_task(struct pcpu
*pcpu
, struct task_struct
*tsk
)
264 struct lowcore
*lc
= pcpu
->lowcore
;
266 lc
->kernel_stack
= (unsigned long) task_stack_page(tsk
)
267 + THREAD_SIZE
- STACK_FRAME_OVERHEAD
- sizeof(struct pt_regs
);
268 lc
->current_task
= (unsigned long) tsk
;
270 lc
->current_pid
= tsk
->pid
;
271 lc
->user_timer
= tsk
->thread
.user_timer
;
272 lc
->system_timer
= tsk
->thread
.system_timer
;
276 static void pcpu_start_fn(struct pcpu
*pcpu
, void (*func
)(void *), void *data
)
278 struct lowcore
*lc
= pcpu
->lowcore
;
280 lc
->restart_stack
= lc
->kernel_stack
;
281 lc
->restart_fn
= (unsigned long) func
;
282 lc
->restart_data
= (unsigned long) data
;
283 lc
->restart_source
= -1UL;
284 pcpu_sigp_retry(pcpu
, SIGP_RESTART
, 0);
288 * Call function via PSW restart on pcpu and stop the current cpu.
290 static void pcpu_delegate(struct pcpu
*pcpu
, void (*func
)(void *),
291 void *data
, unsigned long stack
)
293 struct lowcore
*lc
= lowcore_ptr
[pcpu
- pcpu_devices
];
294 unsigned long source_cpu
= stap();
296 __load_psw_mask(PSW_KERNEL_BITS
);
297 if (pcpu
->address
== source_cpu
)
298 func(data
); /* should not return */
299 /* Stop target cpu (if func returns this stops the current cpu). */
300 pcpu_sigp_retry(pcpu
, SIGP_STOP
, 0);
301 /* Restart func on the target cpu and stop the current cpu. */
302 mem_assign_absolute(lc
->restart_stack
, stack
);
303 mem_assign_absolute(lc
->restart_fn
, (unsigned long) func
);
304 mem_assign_absolute(lc
->restart_data
, (unsigned long) data
);
305 mem_assign_absolute(lc
->restart_source
, source_cpu
);
307 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
308 " brc 2,0b # busy, try again\n"
309 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
310 " brc 2,1b # busy, try again\n"
311 : : "d" (pcpu
->address
), "d" (source_cpu
),
312 "K" (SIGP_RESTART
), "K" (SIGP_STOP
)
318 * Enable additional logical cpus for multi-threading.
320 static int pcpu_set_smt(unsigned int mtid
)
324 if (smp_cpu_mtid
== mtid
)
326 cc
= __pcpu_sigp(0, SIGP_SET_MULTI_THREADING
, mtid
, NULL
);
329 smp_cpu_mt_shift
= 0;
330 while (smp_cpu_mtid
>= (1U << smp_cpu_mt_shift
))
332 pcpu_devices
[0].address
= stap();
338 * Call function on an online CPU.
340 void smp_call_online_cpu(void (*func
)(void *), void *data
)
344 /* Use the current cpu if it is online. */
345 pcpu
= pcpu_find_address(cpu_online_mask
, stap());
347 /* Use the first online cpu. */
348 pcpu
= pcpu_devices
+ cpumask_first(cpu_online_mask
);
349 pcpu_delegate(pcpu
, func
, data
, (unsigned long) restart_stack
);
353 * Call function on the ipl CPU.
355 void smp_call_ipl_cpu(void (*func
)(void *), void *data
)
357 pcpu_delegate(&pcpu_devices
[0], func
, data
,
358 pcpu_devices
->lowcore
->panic_stack
-
359 PANIC_FRAME_OFFSET
+ PAGE_SIZE
);
362 int smp_find_processor_id(u16 address
)
366 for_each_present_cpu(cpu
)
367 if (pcpu_devices
[cpu
].address
== address
)
372 bool arch_vcpu_is_preempted(int cpu
)
374 if (test_cpu_flag_of(CIF_ENABLED_WAIT
, cpu
))
376 if (pcpu_running(pcpu_devices
+ cpu
))
380 EXPORT_SYMBOL(arch_vcpu_is_preempted
);
382 void smp_yield_cpu(int cpu
)
384 if (MACHINE_HAS_DIAG9C
) {
385 diag_stat_inc_norecursion(DIAG_STAT_X09C
);
386 asm volatile("diag %0,0,0x9c"
387 : : "d" (pcpu_devices
[cpu
].address
));
388 } else if (MACHINE_HAS_DIAG44
) {
389 diag_stat_inc_norecursion(DIAG_STAT_X044
);
390 asm volatile("diag 0,0,0x44");
395 * Send cpus emergency shutdown signal. This gives the cpus the
396 * opportunity to complete outstanding interrupts.
398 static void smp_emergency_stop(cpumask_t
*cpumask
)
403 end
= get_tod_clock() + (1000000UL << 12);
404 for_each_cpu(cpu
, cpumask
) {
405 struct pcpu
*pcpu
= pcpu_devices
+ cpu
;
406 set_bit(ec_stop_cpu
, &pcpu
->ec_mask
);
407 while (__pcpu_sigp(pcpu
->address
, SIGP_EMERGENCY_SIGNAL
,
408 0, NULL
) == SIGP_CC_BUSY
&&
409 get_tod_clock() < end
)
412 while (get_tod_clock() < end
) {
413 for_each_cpu(cpu
, cpumask
)
414 if (pcpu_stopped(pcpu_devices
+ cpu
))
415 cpumask_clear_cpu(cpu
, cpumask
);
416 if (cpumask_empty(cpumask
))
423 * Stop all cpus but the current one.
425 void smp_send_stop(void)
430 /* Disable all interrupts/machine checks */
431 __load_psw_mask(PSW_KERNEL_BITS
| PSW_MASK_DAT
);
432 trace_hardirqs_off();
434 debug_set_critical();
435 cpumask_copy(&cpumask
, cpu_online_mask
);
436 cpumask_clear_cpu(smp_processor_id(), &cpumask
);
438 if (oops_in_progress
)
439 smp_emergency_stop(&cpumask
);
441 /* stop all processors */
442 for_each_cpu(cpu
, &cpumask
) {
443 struct pcpu
*pcpu
= pcpu_devices
+ cpu
;
444 pcpu_sigp_retry(pcpu
, SIGP_STOP
, 0);
445 while (!pcpu_stopped(pcpu
))
451 * This is the main routine where commands issued by other
454 static void smp_handle_ext_call(void)
458 /* handle bit signal external calls */
459 bits
= xchg(&pcpu_devices
[smp_processor_id()].ec_mask
, 0);
460 if (test_bit(ec_stop_cpu
, &bits
))
462 if (test_bit(ec_schedule
, &bits
))
464 if (test_bit(ec_call_function_single
, &bits
))
465 generic_smp_call_function_single_interrupt();
468 static void do_ext_call_interrupt(struct ext_code ext_code
,
469 unsigned int param32
, unsigned long param64
)
471 inc_irq_stat(ext_code
.code
== 0x1202 ? IRQEXT_EXC
: IRQEXT_EMS
);
472 smp_handle_ext_call();
475 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
479 for_each_cpu(cpu
, mask
)
480 pcpu_ec_call(pcpu_devices
+ cpu
, ec_call_function_single
);
483 void arch_send_call_function_single_ipi(int cpu
)
485 pcpu_ec_call(pcpu_devices
+ cpu
, ec_call_function_single
);
489 * this function sends a 'reschedule' IPI to another CPU.
490 * it goes straight through and wastes no time serializing
491 * anything. Worst case is that we lose a reschedule ...
493 void smp_send_reschedule(int cpu
)
495 pcpu_ec_call(pcpu_devices
+ cpu
, ec_schedule
);
499 * parameter area for the set/clear control bit callbacks
501 struct ec_creg_mask_parms
{
503 unsigned long andval
;
508 * callback for setting/clearing control bits
510 static void smp_ctl_bit_callback(void *info
)
512 struct ec_creg_mask_parms
*pp
= info
;
513 unsigned long cregs
[16];
515 __ctl_store(cregs
, 0, 15);
516 cregs
[pp
->cr
] = (cregs
[pp
->cr
] & pp
->andval
) | pp
->orval
;
517 __ctl_load(cregs
, 0, 15);
521 * Set a bit in a control register of all cpus
523 void smp_ctl_set_bit(int cr
, int bit
)
525 struct ec_creg_mask_parms parms
= { 1UL << bit
, -1UL, cr
};
527 on_each_cpu(smp_ctl_bit_callback
, &parms
, 1);
529 EXPORT_SYMBOL(smp_ctl_set_bit
);
532 * Clear a bit in a control register of all cpus
534 void smp_ctl_clear_bit(int cr
, int bit
)
536 struct ec_creg_mask_parms parms
= { 0, ~(1UL << bit
), cr
};
538 on_each_cpu(smp_ctl_bit_callback
, &parms
, 1);
540 EXPORT_SYMBOL(smp_ctl_clear_bit
);
542 #ifdef CONFIG_CRASH_DUMP
544 int smp_store_status(int cpu
)
546 struct pcpu
*pcpu
= pcpu_devices
+ cpu
;
549 pa
= __pa(&pcpu
->lowcore
->floating_pt_save_area
);
550 if (__pcpu_sigp_relax(pcpu
->address
, SIGP_STORE_STATUS_AT_ADDRESS
,
551 pa
) != SIGP_CC_ORDER_CODE_ACCEPTED
)
555 pa
= __pa(pcpu
->lowcore
->vector_save_area_addr
);
556 if (__pcpu_sigp_relax(pcpu
->address
, SIGP_STORE_ADDITIONAL_STATUS
,
557 pa
) != SIGP_CC_ORDER_CODE_ACCEPTED
)
563 * Collect CPU state of the previous, crashed system.
564 * There are four cases:
565 * 1) standard zfcp dump
566 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
567 * The state for all CPUs except the boot CPU needs to be collected
568 * with sigp stop-and-store-status. The boot CPU state is located in
569 * the absolute lowcore of the memory stored in the HSA. The zcore code
570 * will copy the boot CPU state from the HSA.
571 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
572 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
573 * The state for all CPUs except the boot CPU needs to be collected
574 * with sigp stop-and-store-status. The firmware or the boot-loader
575 * stored the registers of the boot CPU in the absolute lowcore in the
576 * memory of the old system.
577 * 3) kdump and the old kernel did not store the CPU state,
578 * or stand-alone kdump for DASD
579 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
580 * The state for all CPUs except the boot CPU needs to be collected
581 * with sigp stop-and-store-status. The kexec code or the boot-loader
582 * stored the registers of the boot CPU in the memory of the old system.
583 * 4) kdump and the old kernel stored the CPU state
584 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
585 * This case does not exist for s390 anymore, setup_arch explicitly
586 * deactivates the elfcorehdr= kernel parameter
588 static __init
void smp_save_cpu_vxrs(struct save_area
*sa
, u16 addr
,
589 bool is_boot_cpu
, unsigned long page
)
591 __vector128
*vxrs
= (__vector128
*) page
;
594 vxrs
= boot_cpu_vector_save_area
;
596 __pcpu_sigp_relax(addr
, SIGP_STORE_ADDITIONAL_STATUS
, page
);
597 save_area_add_vxrs(sa
, vxrs
);
600 static __init
void smp_save_cpu_regs(struct save_area
*sa
, u16 addr
,
601 bool is_boot_cpu
, unsigned long page
)
603 void *regs
= (void *) page
;
606 copy_oldmem_kernel(regs
, (void *) __LC_FPREGS_SAVE_AREA
, 512);
608 __pcpu_sigp_relax(addr
, SIGP_STORE_STATUS_AT_ADDRESS
, page
);
609 save_area_add_regs(sa
, regs
);
612 void __init
smp_save_dump_cpus(void)
614 int addr
, boot_cpu_addr
, max_cpu_addr
;
615 struct save_area
*sa
;
619 if (!(OLDMEM_BASE
|| ipl_info
.type
== IPL_TYPE_FCP_DUMP
))
620 /* No previous system present, normal boot. */
622 /* Allocate a page as dumping area for the store status sigps */
623 page
= memblock_alloc_base(PAGE_SIZE
, PAGE_SIZE
, 1UL << 31);
624 /* Set multi-threading state to the previous system. */
625 pcpu_set_smt(sclp
.mtid_prev
);
626 boot_cpu_addr
= stap();
627 max_cpu_addr
= SCLP_MAX_CORES
<< sclp
.mtid_prev
;
628 for (addr
= 0; addr
<= max_cpu_addr
; addr
++) {
629 if (__pcpu_sigp_relax(addr
, SIGP_SENSE
, 0) ==
630 SIGP_CC_NOT_OPERATIONAL
)
632 is_boot_cpu
= (addr
== boot_cpu_addr
);
633 /* Allocate save area */
634 sa
= save_area_alloc(is_boot_cpu
);
636 panic("could not allocate memory for save area\n");
638 /* Get the vector registers */
639 smp_save_cpu_vxrs(sa
, addr
, is_boot_cpu
, page
);
641 * For a zfcp dump OLDMEM_BASE == NULL and the registers
642 * of the boot CPU are stored in the HSA. To retrieve
643 * these registers an SCLP request is required which is
644 * done by drivers/s390/char/zcore.c:init_cpu_info()
646 if (!is_boot_cpu
|| OLDMEM_BASE
)
647 /* Get the CPU registers */
648 smp_save_cpu_regs(sa
, addr
, is_boot_cpu
, page
);
650 memblock_free(page
, PAGE_SIZE
);
654 #endif /* CONFIG_CRASH_DUMP */
656 void smp_cpu_set_polarization(int cpu
, int val
)
658 pcpu_devices
[cpu
].polarization
= val
;
661 int smp_cpu_get_polarization(int cpu
)
663 return pcpu_devices
[cpu
].polarization
;
666 static void __ref
smp_get_core_info(struct sclp_core_info
*info
, int early
)
668 static int use_sigp_detection
;
671 if (use_sigp_detection
|| sclp_get_core_info(info
, early
)) {
672 use_sigp_detection
= 1;
674 address
< (SCLP_MAX_CORES
<< smp_cpu_mt_shift
);
675 address
+= (1U << smp_cpu_mt_shift
)) {
676 if (__pcpu_sigp_relax(address
, SIGP_SENSE
, 0) ==
677 SIGP_CC_NOT_OPERATIONAL
)
679 info
->core
[info
->configured
].core_id
=
680 address
>> smp_cpu_mt_shift
;
683 info
->combined
= info
->configured
;
687 static int smp_add_present_cpu(int cpu
);
689 static int __smp_rescan_cpus(struct sclp_core_info
*info
, int sysfs_add
)
697 cpumask_xor(&avail
, cpu_possible_mask
, cpu_present_mask
);
698 cpu
= cpumask_first(&avail
);
699 for (i
= 0; (i
< info
->combined
) && (cpu
< nr_cpu_ids
); i
++) {
700 if (sclp
.has_core_type
&& info
->core
[i
].type
!= boot_core_type
)
702 address
= info
->core
[i
].core_id
<< smp_cpu_mt_shift
;
703 for (j
= 0; j
<= smp_cpu_mtid
; j
++) {
704 if (pcpu_find_address(cpu_present_mask
, address
+ j
))
706 pcpu
= pcpu_devices
+ cpu
;
707 pcpu
->address
= address
+ j
;
709 (cpu
>= info
->configured
*(smp_cpu_mtid
+ 1)) ?
710 CPU_STATE_STANDBY
: CPU_STATE_CONFIGURED
;
711 smp_cpu_set_polarization(cpu
, POLARIZATION_UNKNOWN
);
712 set_cpu_present(cpu
, true);
713 if (sysfs_add
&& smp_add_present_cpu(cpu
) != 0)
714 set_cpu_present(cpu
, false);
717 cpu
= cpumask_next(cpu
, &avail
);
718 if (cpu
>= nr_cpu_ids
)
725 void __init
smp_detect_cpus(void)
727 unsigned int cpu
, mtid
, c_cpus
, s_cpus
;
728 struct sclp_core_info
*info
;
731 /* Get CPU information */
732 info
= memblock_virt_alloc(sizeof(*info
), 8);
733 smp_get_core_info(info
, 1);
734 /* Find boot CPU type */
735 if (sclp
.has_core_type
) {
737 for (cpu
= 0; cpu
< info
->combined
; cpu
++)
738 if (info
->core
[cpu
].core_id
== address
) {
739 /* The boot cpu dictates the cpu type. */
740 boot_core_type
= info
->core
[cpu
].type
;
743 if (cpu
>= info
->combined
)
744 panic("Could not find boot CPU type");
747 /* Set multi-threading state for the current system */
748 mtid
= boot_core_type
? sclp
.mtid
: sclp
.mtid_cp
;
749 mtid
= (mtid
< smp_max_threads
) ? mtid
: smp_max_threads
- 1;
752 /* Print number of CPUs */
754 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
755 if (sclp
.has_core_type
&&
756 info
->core
[cpu
].type
!= boot_core_type
)
758 if (cpu
< info
->configured
)
759 c_cpus
+= smp_cpu_mtid
+ 1;
761 s_cpus
+= smp_cpu_mtid
+ 1;
763 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus
, s_cpus
);
765 /* Add CPUs present at boot */
767 __smp_rescan_cpus(info
, 0);
769 memblock_free_early((unsigned long)info
, sizeof(*info
));
773 * Activate a secondary processor.
775 static void smp_start_secondary(void *cpuvoid
)
777 S390_lowcore
.last_update_clock
= get_tod_clock();
778 S390_lowcore
.restart_stack
= (unsigned long) restart_stack
;
779 S390_lowcore
.restart_fn
= (unsigned long) do_restart
;
780 S390_lowcore
.restart_data
= 0;
781 S390_lowcore
.restart_source
= -1UL;
782 restore_access_regs(S390_lowcore
.access_regs_save_area
);
783 __ctl_load(S390_lowcore
.cregs_save_area
, 0, 15);
784 __load_psw_mask(PSW_KERNEL_BITS
| PSW_MASK_DAT
);
790 notify_cpu_starting(smp_processor_id());
791 set_cpu_online(smp_processor_id(), true);
792 inc_irq_stat(CPU_RST
);
794 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
797 /* Upping and downing of CPUs */
798 int __cpu_up(unsigned int cpu
, struct task_struct
*tidle
)
803 pcpu
= pcpu_devices
+ cpu
;
804 if (pcpu
->state
!= CPU_STATE_CONFIGURED
)
806 base
= smp_get_base_cpu(cpu
);
807 for (i
= 0; i
<= smp_cpu_mtid
; i
++) {
808 if (base
+ i
< nr_cpu_ids
)
809 if (cpu_online(base
+ i
))
813 * If this is the first CPU of the core to get online
814 * do an initial CPU reset.
816 if (i
> smp_cpu_mtid
&&
817 pcpu_sigp_retry(pcpu_devices
+ base
, SIGP_INITIAL_CPU_RESET
, 0) !=
818 SIGP_CC_ORDER_CODE_ACCEPTED
)
821 rc
= pcpu_alloc_lowcore(pcpu
, cpu
);
824 pcpu_prepare_secondary(pcpu
, cpu
);
825 pcpu_attach_task(pcpu
, tidle
);
826 pcpu_start_fn(pcpu
, smp_start_secondary
, NULL
);
827 /* Wait until cpu puts itself in the online & active maps */
828 while (!cpu_online(cpu
))
833 static unsigned int setup_possible_cpus __initdata
;
835 static int __init
_setup_possible_cpus(char *s
)
837 get_option(&s
, &setup_possible_cpus
);
840 early_param("possible_cpus", _setup_possible_cpus
);
842 #ifdef CONFIG_HOTPLUG_CPU
844 int __cpu_disable(void)
846 unsigned long cregs
[16];
848 /* Handle possible pending IPIs */
849 smp_handle_ext_call();
850 set_cpu_online(smp_processor_id(), false);
851 /* Disable pseudo page faults on this cpu. */
853 /* Disable interrupt sources via control register. */
854 __ctl_store(cregs
, 0, 15);
855 cregs
[0] &= ~0x0000ee70UL
; /* disable all external interrupts */
856 cregs
[6] &= ~0xff000000UL
; /* disable all I/O interrupts */
857 cregs
[14] &= ~0x1f000000UL
; /* disable most machine checks */
858 __ctl_load(cregs
, 0, 15);
859 clear_cpu_flag(CIF_NOHZ_DELAY
);
863 void __cpu_die(unsigned int cpu
)
867 /* Wait until target cpu is down */
868 pcpu
= pcpu_devices
+ cpu
;
869 while (!pcpu_stopped(pcpu
))
871 pcpu_free_lowcore(pcpu
);
872 cpumask_clear_cpu(cpu
, mm_cpumask(&init_mm
));
873 cpumask_clear_cpu(cpu
, &init_mm
.context
.cpu_attach_mask
);
876 void __noreturn
cpu_die(void)
879 pcpu_sigp_retry(pcpu_devices
+ smp_processor_id(), SIGP_STOP
, 0);
883 #endif /* CONFIG_HOTPLUG_CPU */
885 void __init
smp_fill_possible_mask(void)
887 unsigned int possible
, sclp_max
, cpu
;
889 sclp_max
= max(sclp
.mtid
, sclp
.mtid_cp
) + 1;
890 sclp_max
= min(smp_max_threads
, sclp_max
);
891 sclp_max
= (sclp
.max_cores
* sclp_max
) ?: nr_cpu_ids
;
892 possible
= setup_possible_cpus
?: nr_cpu_ids
;
893 possible
= min(possible
, sclp_max
);
894 for (cpu
= 0; cpu
< possible
&& cpu
< nr_cpu_ids
; cpu
++)
895 set_cpu_possible(cpu
, true);
898 void __init
smp_prepare_cpus(unsigned int max_cpus
)
900 /* request the 0x1201 emergency signal external interrupt */
901 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG
, do_ext_call_interrupt
))
902 panic("Couldn't request external interrupt 0x1201");
903 /* request the 0x1202 external call external interrupt */
904 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL
, do_ext_call_interrupt
))
905 panic("Couldn't request external interrupt 0x1202");
908 void __init
smp_prepare_boot_cpu(void)
910 struct pcpu
*pcpu
= pcpu_devices
;
912 pcpu
->state
= CPU_STATE_CONFIGURED
;
913 pcpu
->address
= stap();
914 pcpu
->lowcore
= (struct lowcore
*)(unsigned long) store_prefix();
915 S390_lowcore
.percpu_offset
= __per_cpu_offset
[0];
916 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN
);
917 set_cpu_present(0, true);
918 set_cpu_online(0, true);
921 void __init
smp_cpus_done(unsigned int max_cpus
)
925 void __init
smp_setup_processor_id(void)
927 S390_lowcore
.cpu_nr
= 0;
928 S390_lowcore
.spinlock_lockval
= arch_spin_lockval(0);
932 * the frequency of the profiling timer can be changed
933 * by writing a multiplier value into /proc/profile.
935 * usually you want to run this on all CPUs ;)
937 int setup_profiling_timer(unsigned int multiplier
)
942 #ifdef CONFIG_HOTPLUG_CPU
943 static ssize_t
cpu_configure_show(struct device
*dev
,
944 struct device_attribute
*attr
, char *buf
)
948 mutex_lock(&smp_cpu_state_mutex
);
949 count
= sprintf(buf
, "%d\n", pcpu_devices
[dev
->id
].state
);
950 mutex_unlock(&smp_cpu_state_mutex
);
954 static ssize_t
cpu_configure_store(struct device
*dev
,
955 struct device_attribute
*attr
,
956 const char *buf
, size_t count
)
962 if (sscanf(buf
, "%d %c", &val
, &delim
) != 1)
964 if (val
!= 0 && val
!= 1)
967 mutex_lock(&smp_cpu_state_mutex
);
969 /* disallow configuration changes of online cpus and cpu 0 */
971 cpu
= smp_get_base_cpu(cpu
);
974 for (i
= 0; i
<= smp_cpu_mtid
; i
++)
975 if (cpu_online(cpu
+ i
))
977 pcpu
= pcpu_devices
+ cpu
;
981 if (pcpu
->state
!= CPU_STATE_CONFIGURED
)
983 rc
= sclp_core_deconfigure(pcpu
->address
>> smp_cpu_mt_shift
);
986 for (i
= 0; i
<= smp_cpu_mtid
; i
++) {
987 if (cpu
+ i
>= nr_cpu_ids
|| !cpu_present(cpu
+ i
))
989 pcpu
[i
].state
= CPU_STATE_STANDBY
;
990 smp_cpu_set_polarization(cpu
+ i
,
991 POLARIZATION_UNKNOWN
);
993 topology_expect_change();
996 if (pcpu
->state
!= CPU_STATE_STANDBY
)
998 rc
= sclp_core_configure(pcpu
->address
>> smp_cpu_mt_shift
);
1001 for (i
= 0; i
<= smp_cpu_mtid
; i
++) {
1002 if (cpu
+ i
>= nr_cpu_ids
|| !cpu_present(cpu
+ i
))
1004 pcpu
[i
].state
= CPU_STATE_CONFIGURED
;
1005 smp_cpu_set_polarization(cpu
+ i
,
1006 POLARIZATION_UNKNOWN
);
1008 topology_expect_change();
1014 mutex_unlock(&smp_cpu_state_mutex
);
1016 return rc
? rc
: count
;
1018 static DEVICE_ATTR(configure
, 0644, cpu_configure_show
, cpu_configure_store
);
1019 #endif /* CONFIG_HOTPLUG_CPU */
1021 static ssize_t
show_cpu_address(struct device
*dev
,
1022 struct device_attribute
*attr
, char *buf
)
1024 return sprintf(buf
, "%d\n", pcpu_devices
[dev
->id
].address
);
1026 static DEVICE_ATTR(address
, 0444, show_cpu_address
, NULL
);
1028 static struct attribute
*cpu_common_attrs
[] = {
1029 #ifdef CONFIG_HOTPLUG_CPU
1030 &dev_attr_configure
.attr
,
1032 &dev_attr_address
.attr
,
1036 static struct attribute_group cpu_common_attr_group
= {
1037 .attrs
= cpu_common_attrs
,
1040 static struct attribute
*cpu_online_attrs
[] = {
1041 &dev_attr_idle_count
.attr
,
1042 &dev_attr_idle_time_us
.attr
,
1046 static struct attribute_group cpu_online_attr_group
= {
1047 .attrs
= cpu_online_attrs
,
1050 static int smp_cpu_online(unsigned int cpu
)
1052 struct device
*s
= &per_cpu(cpu_device
, cpu
)->dev
;
1054 return sysfs_create_group(&s
->kobj
, &cpu_online_attr_group
);
1056 static int smp_cpu_pre_down(unsigned int cpu
)
1058 struct device
*s
= &per_cpu(cpu_device
, cpu
)->dev
;
1060 sysfs_remove_group(&s
->kobj
, &cpu_online_attr_group
);
1064 static int smp_add_present_cpu(int cpu
)
1070 c
= kzalloc(sizeof(*c
), GFP_KERNEL
);
1073 per_cpu(cpu_device
, cpu
) = c
;
1075 c
->hotpluggable
= 1;
1076 rc
= register_cpu(c
, cpu
);
1079 rc
= sysfs_create_group(&s
->kobj
, &cpu_common_attr_group
);
1082 rc
= topology_cpu_init(c
);
1088 sysfs_remove_group(&s
->kobj
, &cpu_common_attr_group
);
1090 #ifdef CONFIG_HOTPLUG_CPU
1097 #ifdef CONFIG_HOTPLUG_CPU
1099 int __ref
smp_rescan_cpus(void)
1101 struct sclp_core_info
*info
;
1104 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
1107 smp_get_core_info(info
, 0);
1109 mutex_lock(&smp_cpu_state_mutex
);
1110 nr
= __smp_rescan_cpus(info
, 1);
1111 mutex_unlock(&smp_cpu_state_mutex
);
1115 topology_schedule_update();
1119 static ssize_t __ref
rescan_store(struct device
*dev
,
1120 struct device_attribute
*attr
,
1126 rc
= smp_rescan_cpus();
1127 return rc
? rc
: count
;
1129 static DEVICE_ATTR(rescan
, 0200, NULL
, rescan_store
);
1130 #endif /* CONFIG_HOTPLUG_CPU */
1132 static int __init
s390_smp_init(void)
1136 #ifdef CONFIG_HOTPLUG_CPU
1137 rc
= device_create_file(cpu_subsys
.dev_root
, &dev_attr_rescan
);
1141 for_each_present_cpu(cpu
) {
1142 rc
= smp_add_present_cpu(cpu
);
1147 rc
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "s390/smp:online",
1148 smp_cpu_online
, smp_cpu_pre_down
);
1152 subsys_initcall(s390_smp_init
);