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/module.h>
23 #include <linux/init.h>
25 #include <linux/err.h>
26 #include <linux/spinlock.h>
27 #include <linux/kernel_stat.h>
28 #include <linux/delay.h>
29 #include <linux/interrupt.h>
30 #include <linux/irqflags.h>
31 #include <linux/cpu.h>
32 #include <linux/slab.h>
33 #include <linux/crash_dump.h>
34 #include <asm/asm-offsets.h>
35 #include <asm/switch_to.h>
36 #include <asm/facility.h>
38 #include <asm/setup.h>
40 #include <asm/tlbflush.h>
41 #include <asm/vtimer.h>
42 #include <asm/lowcore.h>
45 #include <asm/debug.h>
46 #include <asm/os_info.h>
53 ec_call_function_single
,
64 struct _lowcore
*lowcore
; /* lowcore page(s) for the cpu */
65 unsigned long async_stack
; /* async stack for the cpu */
66 unsigned long panic_stack
; /* panic stack for the cpu */
67 unsigned long ec_mask
; /* bit mask for ec_xxx functions */
68 int state
; /* physical cpu state */
69 int polarization
; /* physical polarization */
70 u16 address
; /* physical cpu address */
73 static u8 boot_cpu_type
;
74 static u16 boot_cpu_address
;
75 static struct pcpu pcpu_devices
[NR_CPUS
];
78 * The smp_cpu_state_mutex must be held when changing the state or polarization
79 * member of a pcpu data structure within the pcpu_devices arreay.
81 DEFINE_MUTEX(smp_cpu_state_mutex
);
84 * Signal processor helper functions.
86 static inline int __pcpu_sigp_relax(u16 addr
, u8 order
, unsigned long parm
,
92 cc
= __pcpu_sigp(addr
, order
, parm
, NULL
);
93 if (cc
!= SIGP_CC_BUSY
)
99 static int pcpu_sigp_retry(struct pcpu
*pcpu
, u8 order
, u32 parm
)
103 for (retry
= 0; ; retry
++) {
104 cc
= __pcpu_sigp(pcpu
->address
, order
, parm
, NULL
);
105 if (cc
!= SIGP_CC_BUSY
)
113 static inline int pcpu_stopped(struct pcpu
*pcpu
)
115 u32
uninitialized_var(status
);
117 if (__pcpu_sigp(pcpu
->address
, SIGP_SENSE
,
118 0, &status
) != SIGP_CC_STATUS_STORED
)
120 return !!(status
& (SIGP_STATUS_CHECK_STOP
|SIGP_STATUS_STOPPED
));
123 static inline int pcpu_running(struct pcpu
*pcpu
)
125 if (__pcpu_sigp(pcpu
->address
, SIGP_SENSE_RUNNING
,
126 0, NULL
) != SIGP_CC_STATUS_STORED
)
128 /* Status stored condition code is equivalent to cpu not running. */
133 * Find struct pcpu by cpu address.
135 static struct pcpu
*pcpu_find_address(const struct cpumask
*mask
, int address
)
139 for_each_cpu(cpu
, mask
)
140 if (pcpu_devices
[cpu
].address
== address
)
141 return pcpu_devices
+ cpu
;
145 static void pcpu_ec_call(struct pcpu
*pcpu
, int ec_bit
)
149 if (test_and_set_bit(ec_bit
, &pcpu
->ec_mask
))
151 order
= pcpu_running(pcpu
) ? SIGP_EXTERNAL_CALL
: SIGP_EMERGENCY_SIGNAL
;
152 pcpu_sigp_retry(pcpu
, order
, 0);
155 static int pcpu_alloc_lowcore(struct pcpu
*pcpu
, int cpu
)
159 if (pcpu
!= &pcpu_devices
[0]) {
160 pcpu
->lowcore
= (struct _lowcore
*)
161 __get_free_pages(GFP_KERNEL
| GFP_DMA
, LC_ORDER
);
162 pcpu
->async_stack
= __get_free_pages(GFP_KERNEL
, ASYNC_ORDER
);
163 pcpu
->panic_stack
= __get_free_page(GFP_KERNEL
);
164 if (!pcpu
->lowcore
|| !pcpu
->panic_stack
|| !pcpu
->async_stack
)
168 memcpy(lc
, &S390_lowcore
, 512);
169 memset((char *) lc
+ 512, 0, sizeof(*lc
) - 512);
170 lc
->async_stack
= pcpu
->async_stack
+ ASYNC_SIZE
171 - STACK_FRAME_OVERHEAD
- sizeof(struct pt_regs
);
172 lc
->panic_stack
= pcpu
->panic_stack
+ PAGE_SIZE
173 - STACK_FRAME_OVERHEAD
- sizeof(struct pt_regs
);
175 lc
->spinlock_lockval
= arch_spin_lockval(cpu
);
177 if (MACHINE_HAS_IEEE
) {
178 lc
->extended_save_area_addr
= get_zeroed_page(GFP_KERNEL
);
179 if (!lc
->extended_save_area_addr
)
184 lc
->vector_save_area_addr
=
185 (unsigned long) &lc
->vector_save_area
;
186 if (vdso_alloc_per_cpu(lc
))
189 lowcore_ptr
[cpu
] = lc
;
190 pcpu_sigp_retry(pcpu
, SIGP_SET_PREFIX
, (u32
)(unsigned long) lc
);
193 if (pcpu
!= &pcpu_devices
[0]) {
194 free_page(pcpu
->panic_stack
);
195 free_pages(pcpu
->async_stack
, ASYNC_ORDER
);
196 free_pages((unsigned long) pcpu
->lowcore
, LC_ORDER
);
201 #ifdef CONFIG_HOTPLUG_CPU
203 static void pcpu_free_lowcore(struct pcpu
*pcpu
)
205 pcpu_sigp_retry(pcpu
, SIGP_SET_PREFIX
, 0);
206 lowcore_ptr
[pcpu
- pcpu_devices
] = NULL
;
208 if (MACHINE_HAS_IEEE
) {
209 struct _lowcore
*lc
= pcpu
->lowcore
;
211 free_page((unsigned long) lc
->extended_save_area_addr
);
212 lc
->extended_save_area_addr
= 0;
215 vdso_free_per_cpu(pcpu
->lowcore
);
217 if (pcpu
!= &pcpu_devices
[0]) {
218 free_page(pcpu
->panic_stack
);
219 free_pages(pcpu
->async_stack
, ASYNC_ORDER
);
220 free_pages((unsigned long) pcpu
->lowcore
, LC_ORDER
);
224 #endif /* CONFIG_HOTPLUG_CPU */
226 static void pcpu_prepare_secondary(struct pcpu
*pcpu
, int cpu
)
228 struct _lowcore
*lc
= pcpu
->lowcore
;
230 if (MACHINE_HAS_TLB_LC
)
231 cpumask_set_cpu(cpu
, &init_mm
.context
.cpu_attach_mask
);
232 cpumask_set_cpu(cpu
, mm_cpumask(&init_mm
));
233 atomic_inc(&init_mm
.context
.attach_count
);
235 lc
->spinlock_lockval
= arch_spin_lockval(cpu
);
236 lc
->percpu_offset
= __per_cpu_offset
[cpu
];
237 lc
->kernel_asce
= S390_lowcore
.kernel_asce
;
238 lc
->machine_flags
= S390_lowcore
.machine_flags
;
239 lc
->ftrace_func
= S390_lowcore
.ftrace_func
;
240 lc
->user_timer
= lc
->system_timer
= lc
->steal_timer
= 0;
241 __ctl_store(lc
->cregs_save_area
, 0, 15);
242 save_access_regs((unsigned int *) lc
->access_regs_save_area
);
243 memcpy(lc
->stfle_fac_list
, S390_lowcore
.stfle_fac_list
,
247 static void pcpu_attach_task(struct pcpu
*pcpu
, struct task_struct
*tsk
)
249 struct _lowcore
*lc
= pcpu
->lowcore
;
250 struct thread_info
*ti
= task_thread_info(tsk
);
252 lc
->kernel_stack
= (unsigned long) task_stack_page(tsk
)
253 + THREAD_SIZE
- STACK_FRAME_OVERHEAD
- sizeof(struct pt_regs
);
254 lc
->thread_info
= (unsigned long) task_thread_info(tsk
);
255 lc
->current_task
= (unsigned long) tsk
;
256 lc
->user_timer
= ti
->user_timer
;
257 lc
->system_timer
= ti
->system_timer
;
261 static void pcpu_start_fn(struct pcpu
*pcpu
, void (*func
)(void *), void *data
)
263 struct _lowcore
*lc
= pcpu
->lowcore
;
265 lc
->restart_stack
= lc
->kernel_stack
;
266 lc
->restart_fn
= (unsigned long) func
;
267 lc
->restart_data
= (unsigned long) data
;
268 lc
->restart_source
= -1UL;
269 pcpu_sigp_retry(pcpu
, SIGP_RESTART
, 0);
273 * Call function via PSW restart on pcpu and stop the current cpu.
275 static void pcpu_delegate(struct pcpu
*pcpu
, void (*func
)(void *),
276 void *data
, unsigned long stack
)
278 struct _lowcore
*lc
= lowcore_ptr
[pcpu
- pcpu_devices
];
279 unsigned long source_cpu
= stap();
281 __load_psw_mask(PSW_KERNEL_BITS
);
282 if (pcpu
->address
== source_cpu
)
283 func(data
); /* should not return */
284 /* Stop target cpu (if func returns this stops the current cpu). */
285 pcpu_sigp_retry(pcpu
, SIGP_STOP
, 0);
286 /* Restart func on the target cpu and stop the current cpu. */
287 mem_assign_absolute(lc
->restart_stack
, stack
);
288 mem_assign_absolute(lc
->restart_fn
, (unsigned long) func
);
289 mem_assign_absolute(lc
->restart_data
, (unsigned long) data
);
290 mem_assign_absolute(lc
->restart_source
, source_cpu
);
292 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
293 " brc 2,0b # busy, try again\n"
294 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
295 " brc 2,1b # busy, try again\n"
296 : : "d" (pcpu
->address
), "d" (source_cpu
),
297 "K" (SIGP_RESTART
), "K" (SIGP_STOP
)
303 * Call function on an online CPU.
305 void smp_call_online_cpu(void (*func
)(void *), void *data
)
309 /* Use the current cpu if it is online. */
310 pcpu
= pcpu_find_address(cpu_online_mask
, stap());
312 /* Use the first online cpu. */
313 pcpu
= pcpu_devices
+ cpumask_first(cpu_online_mask
);
314 pcpu_delegate(pcpu
, func
, data
, (unsigned long) restart_stack
);
318 * Call function on the ipl CPU.
320 void smp_call_ipl_cpu(void (*func
)(void *), void *data
)
322 pcpu_delegate(&pcpu_devices
[0], func
, data
,
323 pcpu_devices
->panic_stack
+ PAGE_SIZE
);
326 int smp_find_processor_id(u16 address
)
330 for_each_present_cpu(cpu
)
331 if (pcpu_devices
[cpu
].address
== address
)
336 int smp_vcpu_scheduled(int cpu
)
338 return pcpu_running(pcpu_devices
+ cpu
);
341 void smp_yield_cpu(int cpu
)
343 if (MACHINE_HAS_DIAG9C
)
344 asm volatile("diag %0,0,0x9c"
345 : : "d" (pcpu_devices
[cpu
].address
));
346 else if (MACHINE_HAS_DIAG44
)
347 asm volatile("diag 0,0,0x44");
351 * Send cpus emergency shutdown signal. This gives the cpus the
352 * opportunity to complete outstanding interrupts.
354 static void smp_emergency_stop(cpumask_t
*cpumask
)
359 end
= get_tod_clock() + (1000000UL << 12);
360 for_each_cpu(cpu
, cpumask
) {
361 struct pcpu
*pcpu
= pcpu_devices
+ cpu
;
362 set_bit(ec_stop_cpu
, &pcpu
->ec_mask
);
363 while (__pcpu_sigp(pcpu
->address
, SIGP_EMERGENCY_SIGNAL
,
364 0, NULL
) == SIGP_CC_BUSY
&&
365 get_tod_clock() < end
)
368 while (get_tod_clock() < end
) {
369 for_each_cpu(cpu
, cpumask
)
370 if (pcpu_stopped(pcpu_devices
+ cpu
))
371 cpumask_clear_cpu(cpu
, cpumask
);
372 if (cpumask_empty(cpumask
))
379 * Stop all cpus but the current one.
381 void smp_send_stop(void)
386 /* Disable all interrupts/machine checks */
387 __load_psw_mask(PSW_KERNEL_BITS
| PSW_MASK_DAT
);
388 trace_hardirqs_off();
390 debug_set_critical();
391 cpumask_copy(&cpumask
, cpu_online_mask
);
392 cpumask_clear_cpu(smp_processor_id(), &cpumask
);
394 if (oops_in_progress
)
395 smp_emergency_stop(&cpumask
);
397 /* stop all processors */
398 for_each_cpu(cpu
, &cpumask
) {
399 struct pcpu
*pcpu
= pcpu_devices
+ cpu
;
400 pcpu_sigp_retry(pcpu
, SIGP_STOP
, 0);
401 while (!pcpu_stopped(pcpu
))
407 * This is the main routine where commands issued by other
410 static void smp_handle_ext_call(void)
414 /* handle bit signal external calls */
415 bits
= xchg(&pcpu_devices
[smp_processor_id()].ec_mask
, 0);
416 if (test_bit(ec_stop_cpu
, &bits
))
418 if (test_bit(ec_schedule
, &bits
))
420 if (test_bit(ec_call_function_single
, &bits
))
421 generic_smp_call_function_single_interrupt();
424 static void do_ext_call_interrupt(struct ext_code ext_code
,
425 unsigned int param32
, unsigned long param64
)
427 inc_irq_stat(ext_code
.code
== 0x1202 ? IRQEXT_EXC
: IRQEXT_EMS
);
428 smp_handle_ext_call();
431 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
435 for_each_cpu(cpu
, mask
)
436 pcpu_ec_call(pcpu_devices
+ cpu
, ec_call_function_single
);
439 void arch_send_call_function_single_ipi(int cpu
)
441 pcpu_ec_call(pcpu_devices
+ cpu
, ec_call_function_single
);
446 * this function sends a 'purge tlb' signal to another CPU.
448 static void smp_ptlb_callback(void *info
)
453 void smp_ptlb_all(void)
455 on_each_cpu(smp_ptlb_callback
, NULL
, 1);
457 EXPORT_SYMBOL(smp_ptlb_all
);
458 #endif /* ! CONFIG_64BIT */
461 * this function sends a 'reschedule' IPI to another CPU.
462 * it goes straight through and wastes no time serializing
463 * anything. Worst case is that we lose a reschedule ...
465 void smp_send_reschedule(int cpu
)
467 pcpu_ec_call(pcpu_devices
+ cpu
, ec_schedule
);
471 * parameter area for the set/clear control bit callbacks
473 struct ec_creg_mask_parms
{
475 unsigned long andval
;
480 * callback for setting/clearing control bits
482 static void smp_ctl_bit_callback(void *info
)
484 struct ec_creg_mask_parms
*pp
= info
;
485 unsigned long cregs
[16];
487 __ctl_store(cregs
, 0, 15);
488 cregs
[pp
->cr
] = (cregs
[pp
->cr
] & pp
->andval
) | pp
->orval
;
489 __ctl_load(cregs
, 0, 15);
493 * Set a bit in a control register of all cpus
495 void smp_ctl_set_bit(int cr
, int bit
)
497 struct ec_creg_mask_parms parms
= { 1UL << bit
, -1UL, cr
};
499 on_each_cpu(smp_ctl_bit_callback
, &parms
, 1);
501 EXPORT_SYMBOL(smp_ctl_set_bit
);
504 * Clear a bit in a control register of all cpus
506 void smp_ctl_clear_bit(int cr
, int bit
)
508 struct ec_creg_mask_parms parms
= { 0, ~(1UL << bit
), cr
};
510 on_each_cpu(smp_ctl_bit_callback
, &parms
, 1);
512 EXPORT_SYMBOL(smp_ctl_clear_bit
);
514 #ifdef CONFIG_CRASH_DUMP
516 static void __init
smp_get_save_area(int cpu
, u16 address
)
518 void *lc
= pcpu_devices
[0].lowcore
;
519 struct save_area_ext
*sa_ext
;
522 if (is_kdump_kernel())
524 if (!OLDMEM_BASE
&& (address
== boot_cpu_address
||
525 ipl_info
.type
!= IPL_TYPE_FCP_DUMP
))
527 sa_ext
= dump_save_area_create(cpu
);
529 panic("could not allocate memory for save area\n");
530 if (address
== boot_cpu_address
) {
531 /* Copy the registers of the boot cpu. */
532 copy_oldmem_page(1, (void *) &sa_ext
->sa
, sizeof(sa_ext
->sa
),
533 SAVE_AREA_BASE
- PAGE_SIZE
, 0);
535 save_vx_regs_safe(sa_ext
->vx_regs
);
538 /* Get the registers of a non-boot cpu. */
539 __pcpu_sigp_relax(address
, SIGP_STOP_AND_STORE_STATUS
, 0, NULL
);
540 memcpy_real(&sa_ext
->sa
, lc
+ SAVE_AREA_BASE
, sizeof(sa_ext
->sa
));
543 /* Get the VX registers */
544 vx_sa
= __get_free_page(GFP_KERNEL
);
546 panic("could not allocate memory for VX save area\n");
547 __pcpu_sigp_relax(address
, SIGP_STORE_ADDITIONAL_STATUS
, vx_sa
, NULL
);
548 memcpy(sa_ext
->vx_regs
, (void *) vx_sa
, sizeof(sa_ext
->vx_regs
));
552 int smp_store_status(int cpu
)
557 pcpu
= pcpu_devices
+ cpu
;
558 if (__pcpu_sigp_relax(pcpu
->address
, SIGP_STOP_AND_STORE_STATUS
,
559 0, NULL
) != SIGP_CC_ORDER_CODE_ACCEPTED
)
563 vx_sa
= __pa(pcpu
->lowcore
->vector_save_area_addr
);
564 __pcpu_sigp_relax(pcpu
->address
, SIGP_STORE_ADDITIONAL_STATUS
,
569 #else /* CONFIG_CRASH_DUMP */
571 static inline void smp_get_save_area(int cpu
, u16 address
) { }
573 #endif /* CONFIG_CRASH_DUMP */
575 void smp_cpu_set_polarization(int cpu
, int val
)
577 pcpu_devices
[cpu
].polarization
= val
;
580 int smp_cpu_get_polarization(int cpu
)
582 return pcpu_devices
[cpu
].polarization
;
585 static struct sclp_cpu_info
*smp_get_cpu_info(void)
587 static int use_sigp_detection
;
588 struct sclp_cpu_info
*info
;
591 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
592 if (info
&& (use_sigp_detection
|| sclp_get_cpu_info(info
))) {
593 use_sigp_detection
= 1;
594 for (address
= 0; address
<= MAX_CPU_ADDRESS
; address
++) {
595 if (__pcpu_sigp_relax(address
, SIGP_SENSE
, 0, NULL
) ==
596 SIGP_CC_NOT_OPERATIONAL
)
598 info
->cpu
[info
->configured
].address
= address
;
601 info
->combined
= info
->configured
;
606 static int smp_add_present_cpu(int cpu
);
608 static int __smp_rescan_cpus(struct sclp_cpu_info
*info
, int sysfs_add
)
615 cpumask_xor(&avail
, cpu_possible_mask
, cpu_present_mask
);
616 cpu
= cpumask_first(&avail
);
617 for (i
= 0; (i
< info
->combined
) && (cpu
< nr_cpu_ids
); i
++) {
618 if (info
->has_cpu_type
&& info
->cpu
[i
].type
!= boot_cpu_type
)
620 if (pcpu_find_address(cpu_present_mask
, info
->cpu
[i
].address
))
622 pcpu
= pcpu_devices
+ cpu
;
623 pcpu
->address
= info
->cpu
[i
].address
;
624 pcpu
->state
= (i
>= info
->configured
) ?
625 CPU_STATE_STANDBY
: CPU_STATE_CONFIGURED
;
626 smp_cpu_set_polarization(cpu
, POLARIZATION_UNKNOWN
);
627 set_cpu_present(cpu
, true);
628 if (sysfs_add
&& smp_add_present_cpu(cpu
) != 0)
629 set_cpu_present(cpu
, false);
632 cpu
= cpumask_next(cpu
, &avail
);
637 static void __init
smp_detect_cpus(void)
639 unsigned int cpu
, c_cpus
, s_cpus
;
640 struct sclp_cpu_info
*info
;
642 info
= smp_get_cpu_info();
644 panic("smp_detect_cpus failed to allocate memory\n");
645 if (info
->has_cpu_type
) {
646 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
647 if (info
->cpu
[cpu
].address
!= boot_cpu_address
)
649 /* The boot cpu dictates the cpu type. */
650 boot_cpu_type
= info
->cpu
[cpu
].type
;
655 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
656 if (info
->has_cpu_type
&& info
->cpu
[cpu
].type
!= boot_cpu_type
)
658 if (cpu
< info
->configured
) {
659 smp_get_save_area(c_cpus
, info
->cpu
[cpu
].address
);
664 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus
, s_cpus
);
666 __smp_rescan_cpus(info
, 0);
672 * Activate a secondary processor.
674 static void smp_start_secondary(void *cpuvoid
)
676 S390_lowcore
.last_update_clock
= get_tod_clock();
677 S390_lowcore
.restart_stack
= (unsigned long) restart_stack
;
678 S390_lowcore
.restart_fn
= (unsigned long) do_restart
;
679 S390_lowcore
.restart_data
= 0;
680 S390_lowcore
.restart_source
= -1UL;
681 restore_access_regs(S390_lowcore
.access_regs_save_area
);
682 __ctl_load(S390_lowcore
.cregs_save_area
, 0, 15);
683 __load_psw_mask(PSW_KERNEL_BITS
| PSW_MASK_DAT
);
689 notify_cpu_starting(smp_processor_id());
690 set_cpu_online(smp_processor_id(), true);
691 inc_irq_stat(CPU_RST
);
693 cpu_startup_entry(CPUHP_ONLINE
);
696 /* Upping and downing of CPUs */
697 int __cpu_up(unsigned int cpu
, struct task_struct
*tidle
)
702 pcpu
= pcpu_devices
+ cpu
;
703 if (pcpu
->state
!= CPU_STATE_CONFIGURED
)
705 if (pcpu_sigp_retry(pcpu
, SIGP_INITIAL_CPU_RESET
, 0) !=
706 SIGP_CC_ORDER_CODE_ACCEPTED
)
709 rc
= pcpu_alloc_lowcore(pcpu
, cpu
);
712 pcpu_prepare_secondary(pcpu
, cpu
);
713 pcpu_attach_task(pcpu
, tidle
);
714 pcpu_start_fn(pcpu
, smp_start_secondary
, NULL
);
715 while (!cpu_online(cpu
))
720 static unsigned int setup_possible_cpus __initdata
;
722 static int __init
_setup_possible_cpus(char *s
)
724 get_option(&s
, &setup_possible_cpus
);
727 early_param("possible_cpus", _setup_possible_cpus
);
729 #ifdef CONFIG_HOTPLUG_CPU
731 int __cpu_disable(void)
733 unsigned long cregs
[16];
735 /* Handle possible pending IPIs */
736 smp_handle_ext_call();
737 set_cpu_online(smp_processor_id(), false);
738 /* Disable pseudo page faults on this cpu. */
740 /* Disable interrupt sources via control register. */
741 __ctl_store(cregs
, 0, 15);
742 cregs
[0] &= ~0x0000ee70UL
; /* disable all external interrupts */
743 cregs
[6] &= ~0xff000000UL
; /* disable all I/O interrupts */
744 cregs
[14] &= ~0x1f000000UL
; /* disable most machine checks */
745 __ctl_load(cregs
, 0, 15);
746 clear_cpu_flag(CIF_NOHZ_DELAY
);
750 void __cpu_die(unsigned int cpu
)
754 /* Wait until target cpu is down */
755 pcpu
= pcpu_devices
+ cpu
;
756 while (!pcpu_stopped(pcpu
))
758 pcpu_free_lowcore(pcpu
);
759 atomic_dec(&init_mm
.context
.attach_count
);
760 cpumask_clear_cpu(cpu
, mm_cpumask(&init_mm
));
761 if (MACHINE_HAS_TLB_LC
)
762 cpumask_clear_cpu(cpu
, &init_mm
.context
.cpu_attach_mask
);
765 void __noreturn
cpu_die(void)
768 pcpu_sigp_retry(pcpu_devices
+ smp_processor_id(), SIGP_STOP
, 0);
772 #endif /* CONFIG_HOTPLUG_CPU */
774 void __init
smp_fill_possible_mask(void)
776 unsigned int possible
, sclp
, cpu
;
778 sclp
= sclp_get_max_cpu() ?: nr_cpu_ids
;
779 possible
= setup_possible_cpus
?: nr_cpu_ids
;
780 possible
= min(possible
, sclp
);
781 for (cpu
= 0; cpu
< possible
&& cpu
< nr_cpu_ids
; cpu
++)
782 set_cpu_possible(cpu
, true);
785 void __init
smp_prepare_cpus(unsigned int max_cpus
)
787 /* request the 0x1201 emergency signal external interrupt */
788 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG
, do_ext_call_interrupt
))
789 panic("Couldn't request external interrupt 0x1201");
790 /* request the 0x1202 external call external interrupt */
791 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL
, do_ext_call_interrupt
))
792 panic("Couldn't request external interrupt 0x1202");
796 void __init
smp_prepare_boot_cpu(void)
798 struct pcpu
*pcpu
= pcpu_devices
;
800 boot_cpu_address
= stap();
801 pcpu
->state
= CPU_STATE_CONFIGURED
;
802 pcpu
->address
= boot_cpu_address
;
803 pcpu
->lowcore
= (struct _lowcore
*)(unsigned long) store_prefix();
804 pcpu
->async_stack
= S390_lowcore
.async_stack
- ASYNC_SIZE
805 + STACK_FRAME_OVERHEAD
+ sizeof(struct pt_regs
);
806 pcpu
->panic_stack
= S390_lowcore
.panic_stack
- PAGE_SIZE
807 + STACK_FRAME_OVERHEAD
+ sizeof(struct pt_regs
);
808 S390_lowcore
.percpu_offset
= __per_cpu_offset
[0];
809 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN
);
810 set_cpu_present(0, true);
811 set_cpu_online(0, true);
814 void __init
smp_cpus_done(unsigned int max_cpus
)
818 void __init
smp_setup_processor_id(void)
820 S390_lowcore
.cpu_nr
= 0;
821 S390_lowcore
.spinlock_lockval
= arch_spin_lockval(0);
825 * the frequency of the profiling timer can be changed
826 * by writing a multiplier value into /proc/profile.
828 * usually you want to run this on all CPUs ;)
830 int setup_profiling_timer(unsigned int multiplier
)
835 #ifdef CONFIG_HOTPLUG_CPU
836 static ssize_t
cpu_configure_show(struct device
*dev
,
837 struct device_attribute
*attr
, char *buf
)
841 mutex_lock(&smp_cpu_state_mutex
);
842 count
= sprintf(buf
, "%d\n", pcpu_devices
[dev
->id
].state
);
843 mutex_unlock(&smp_cpu_state_mutex
);
847 static ssize_t
cpu_configure_store(struct device
*dev
,
848 struct device_attribute
*attr
,
849 const char *buf
, size_t count
)
855 if (sscanf(buf
, "%d %c", &val
, &delim
) != 1)
857 if (val
!= 0 && val
!= 1)
860 mutex_lock(&smp_cpu_state_mutex
);
862 /* disallow configuration changes of online cpus and cpu 0 */
864 if (cpu_online(cpu
) || cpu
== 0)
866 pcpu
= pcpu_devices
+ cpu
;
870 if (pcpu
->state
!= CPU_STATE_CONFIGURED
)
872 rc
= sclp_cpu_deconfigure(pcpu
->address
);
875 pcpu
->state
= CPU_STATE_STANDBY
;
876 smp_cpu_set_polarization(cpu
, POLARIZATION_UNKNOWN
);
877 topology_expect_change();
880 if (pcpu
->state
!= CPU_STATE_STANDBY
)
882 rc
= sclp_cpu_configure(pcpu
->address
);
885 pcpu
->state
= CPU_STATE_CONFIGURED
;
886 smp_cpu_set_polarization(cpu
, POLARIZATION_UNKNOWN
);
887 topology_expect_change();
893 mutex_unlock(&smp_cpu_state_mutex
);
895 return rc
? rc
: count
;
897 static DEVICE_ATTR(configure
, 0644, cpu_configure_show
, cpu_configure_store
);
898 #endif /* CONFIG_HOTPLUG_CPU */
900 static ssize_t
show_cpu_address(struct device
*dev
,
901 struct device_attribute
*attr
, char *buf
)
903 return sprintf(buf
, "%d\n", pcpu_devices
[dev
->id
].address
);
905 static DEVICE_ATTR(address
, 0444, show_cpu_address
, NULL
);
907 static struct attribute
*cpu_common_attrs
[] = {
908 #ifdef CONFIG_HOTPLUG_CPU
909 &dev_attr_configure
.attr
,
911 &dev_attr_address
.attr
,
915 static struct attribute_group cpu_common_attr_group
= {
916 .attrs
= cpu_common_attrs
,
919 static struct attribute
*cpu_online_attrs
[] = {
920 &dev_attr_idle_count
.attr
,
921 &dev_attr_idle_time_us
.attr
,
925 static struct attribute_group cpu_online_attr_group
= {
926 .attrs
= cpu_online_attrs
,
929 static int smp_cpu_notify(struct notifier_block
*self
, unsigned long action
,
932 unsigned int cpu
= (unsigned int)(long)hcpu
;
933 struct cpu
*c
= pcpu_devices
[cpu
].cpu
;
934 struct device
*s
= &c
->dev
;
937 switch (action
& ~CPU_TASKS_FROZEN
) {
939 err
= sysfs_create_group(&s
->kobj
, &cpu_online_attr_group
);
942 sysfs_remove_group(&s
->kobj
, &cpu_online_attr_group
);
945 return notifier_from_errno(err
);
948 static int smp_add_present_cpu(int cpu
)
954 c
= kzalloc(sizeof(*c
), GFP_KERNEL
);
957 pcpu_devices
[cpu
].cpu
= c
;
960 rc
= register_cpu(c
, cpu
);
963 rc
= sysfs_create_group(&s
->kobj
, &cpu_common_attr_group
);
966 if (cpu_online(cpu
)) {
967 rc
= sysfs_create_group(&s
->kobj
, &cpu_online_attr_group
);
971 rc
= topology_cpu_init(c
);
978 sysfs_remove_group(&s
->kobj
, &cpu_online_attr_group
);
980 sysfs_remove_group(&s
->kobj
, &cpu_common_attr_group
);
982 #ifdef CONFIG_HOTPLUG_CPU
989 #ifdef CONFIG_HOTPLUG_CPU
991 int __ref
smp_rescan_cpus(void)
993 struct sclp_cpu_info
*info
;
996 info
= smp_get_cpu_info();
1000 mutex_lock(&smp_cpu_state_mutex
);
1001 nr
= __smp_rescan_cpus(info
, 1);
1002 mutex_unlock(&smp_cpu_state_mutex
);
1006 topology_schedule_update();
1010 static ssize_t __ref
rescan_store(struct device
*dev
,
1011 struct device_attribute
*attr
,
1017 rc
= smp_rescan_cpus();
1018 return rc
? rc
: count
;
1020 static DEVICE_ATTR(rescan
, 0200, NULL
, rescan_store
);
1021 #endif /* CONFIG_HOTPLUG_CPU */
1023 static int __init
s390_smp_init(void)
1027 #ifdef CONFIG_HOTPLUG_CPU
1028 rc
= device_create_file(cpu_subsys
.dev_root
, &dev_attr_rescan
);
1032 cpu_notifier_register_begin();
1033 for_each_present_cpu(cpu
) {
1034 rc
= smp_add_present_cpu(cpu
);
1039 __hotcpu_notifier(smp_cpu_notify
, 0);
1042 cpu_notifier_register_done();
1045 subsys_initcall(s390_smp_init
);