2 * arch/s390/kernel/smp.c
4 * Copyright IBM Corp. 1999,2007
5 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
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 * We work with logical cpu numbering everywhere we can. The only
14 * functions using the real cpu address (got from STAP) are the sigp
15 * functions. For all other functions we use the identity mapping.
16 * That means that cpu_number_map[i] == i for every cpu. cpu_number_map is
17 * used e.g. to find the idle task belonging to a logical cpu. Every array
18 * in the kernel is sorted by the logical cpu number and not by the physical
19 * one which is causing all the confusion with __cpu_logical_map and
20 * cpu_number_map in other architectures.
23 #include <linux/module.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/cache.h>
31 #include <linux/interrupt.h>
32 #include <linux/cpu.h>
33 #include <linux/timex.h>
34 #include <linux/bootmem.h>
36 #include <asm/setup.h>
38 #include <asm/pgalloc.h>
40 #include <asm/s390_ext.h>
41 #include <asm/cpcmd.h>
42 #include <asm/tlbflush.h>
43 #include <asm/timer.h>
44 #include <asm/lowcore.h>
49 * An array with a pointer the lowcore of every CPU.
51 struct _lowcore
*lowcore_ptr
[NR_CPUS
];
52 EXPORT_SYMBOL(lowcore_ptr
);
54 cpumask_t cpu_online_map
= CPU_MASK_NONE
;
55 EXPORT_SYMBOL(cpu_online_map
);
57 cpumask_t cpu_possible_map
= CPU_MASK_ALL
;
58 EXPORT_SYMBOL(cpu_possible_map
);
60 static struct task_struct
*current_set
[NR_CPUS
];
62 static u8 smp_cpu_type
;
63 static int smp_use_sigp_detection
;
70 #ifdef CONFIG_HOTPLUG_CPU
71 static DEFINE_MUTEX(smp_cpu_state_mutex
);
73 static int smp_cpu_state
[NR_CPUS
];
75 static DEFINE_PER_CPU(struct cpu
, cpu_devices
);
76 DEFINE_PER_CPU(struct s390_idle_data
, s390_idle
);
78 static void smp_ext_bitcall(int, ec_bit_sig
);
81 * Structure and data for __smp_call_function_map(). This is designed to
82 * minimise static memory requirements. It also looks cleaner.
84 static DEFINE_SPINLOCK(call_lock
);
86 struct call_data_struct
{
87 void (*func
) (void *info
);
94 static struct call_data_struct
*call_data
;
97 * 'Call function' interrupt callback
99 static void do_call_function(void)
101 void (*func
) (void *info
) = call_data
->func
;
102 void *info
= call_data
->info
;
103 int wait
= call_data
->wait
;
105 cpu_set(smp_processor_id(), call_data
->started
);
108 cpu_set(smp_processor_id(), call_data
->finished
);;
111 static void __smp_call_function_map(void (*func
) (void *info
), void *info
,
112 int nonatomic
, int wait
, cpumask_t map
)
114 struct call_data_struct data
;
118 * Can deadlock when interrupts are disabled or if in wrong context.
120 WARN_ON(irqs_disabled() || in_irq());
123 * Check for local function call. We have to have the same call order
124 * as in on_each_cpu() because of machine_restart_smp().
126 if (cpu_isset(smp_processor_id(), map
)) {
128 cpu_clear(smp_processor_id(), map
);
131 cpus_and(map
, map
, cpu_online_map
);
137 data
.started
= CPU_MASK_NONE
;
140 data
.finished
= CPU_MASK_NONE
;
142 spin_lock(&call_lock
);
145 for_each_cpu_mask(cpu
, map
)
146 smp_ext_bitcall(cpu
, ec_call_function
);
148 /* Wait for response */
149 while (!cpus_equal(map
, data
.started
))
152 while (!cpus_equal(map
, data
.finished
))
154 spin_unlock(&call_lock
);
165 * @func: the function to run; this must be fast and non-blocking
166 * @info: an arbitrary pointer to pass to the function
168 * @wait: if true, wait (atomically) until function has completed on other CPUs
170 * Run a function on all other CPUs.
172 * You must not call this function with disabled interrupts, from a
173 * hardware interrupt handler or from a bottom half.
175 int smp_call_function(void (*func
) (void *info
), void *info
, int nonatomic
,
181 map
= cpu_online_map
;
182 cpu_clear(smp_processor_id(), map
);
183 __smp_call_function_map(func
, info
, nonatomic
, wait
, map
);
187 EXPORT_SYMBOL(smp_call_function
);
190 * smp_call_function_single:
191 * @cpu: the CPU where func should run
192 * @func: the function to run; this must be fast and non-blocking
193 * @info: an arbitrary pointer to pass to the function
195 * @wait: if true, wait (atomically) until function has completed on other CPUs
197 * Run a function on one processor.
199 * You must not call this function with disabled interrupts, from a
200 * hardware interrupt handler or from a bottom half.
202 int smp_call_function_single(int cpu
, void (*func
) (void *info
), void *info
,
203 int nonatomic
, int wait
)
206 __smp_call_function_map(func
, info
, nonatomic
, wait
,
207 cpumask_of_cpu(cpu
));
211 EXPORT_SYMBOL(smp_call_function_single
);
214 * smp_call_function_mask(): Run a function on a set of other CPUs.
215 * @mask: The set of cpus to run on. Must not include the current cpu.
216 * @func: The function to run. This must be fast and non-blocking.
217 * @info: An arbitrary pointer to pass to the function.
218 * @wait: If true, wait (atomically) until function has completed on other CPUs.
220 * Returns 0 on success, else a negative status code.
222 * If @wait is true, then returns once @func has returned; otherwise
223 * it returns just before the target cpu calls @func.
225 * You must not call this function with disabled interrupts or from a
226 * hardware interrupt handler or from a bottom half handler.
228 int smp_call_function_mask(cpumask_t mask
, void (*func
)(void *), void *info
,
232 cpu_clear(smp_processor_id(), mask
);
233 __smp_call_function_map(func
, info
, 0, wait
, mask
);
237 EXPORT_SYMBOL(smp_call_function_mask
);
239 void smp_send_stop(void)
243 /* Disable all interrupts/machine checks */
244 __load_psw_mask(psw_kernel_bits
& ~PSW_MASK_MCHECK
);
246 /* write magic number to zero page (absolute 0) */
247 lowcore_ptr
[smp_processor_id()]->panic_magic
= __PANIC_MAGIC
;
249 /* stop all processors */
250 for_each_online_cpu(cpu
) {
251 if (cpu
== smp_processor_id())
254 rc
= signal_processor(cpu
, sigp_stop
);
255 } while (rc
== sigp_busy
);
257 while (!smp_cpu_not_running(cpu
))
263 * This is the main routine where commands issued by other
267 static void do_ext_call_interrupt(__u16 code
)
272 * handle bit signal external calls
274 * For the ec_schedule signal we have to do nothing. All the work
275 * is done automatically when we return from the interrupt.
277 bits
= xchg(&S390_lowcore
.ext_call_fast
, 0);
279 if (test_bit(ec_call_function
, &bits
))
284 * Send an external call sigp to another cpu and return without waiting
285 * for its completion.
287 static void smp_ext_bitcall(int cpu
, ec_bit_sig sig
)
290 * Set signaling bit in lowcore of target cpu and kick it
292 set_bit(sig
, (unsigned long *) &lowcore_ptr
[cpu
]->ext_call_fast
);
293 while (signal_processor(cpu
, sigp_emergency_signal
) == sigp_busy
)
299 * this function sends a 'purge tlb' signal to another CPU.
301 void smp_ptlb_callback(void *info
)
306 void smp_ptlb_all(void)
308 on_each_cpu(smp_ptlb_callback
, NULL
, 0, 1);
310 EXPORT_SYMBOL(smp_ptlb_all
);
311 #endif /* ! CONFIG_64BIT */
314 * this function sends a 'reschedule' IPI to another CPU.
315 * it goes straight through and wastes no time serializing
316 * anything. Worst case is that we lose a reschedule ...
318 void smp_send_reschedule(int cpu
)
320 smp_ext_bitcall(cpu
, ec_schedule
);
324 * parameter area for the set/clear control bit callbacks
326 struct ec_creg_mask_parms
{
327 unsigned long orvals
[16];
328 unsigned long andvals
[16];
332 * callback for setting/clearing control bits
334 static void smp_ctl_bit_callback(void *info
)
336 struct ec_creg_mask_parms
*pp
= info
;
337 unsigned long cregs
[16];
340 __ctl_store(cregs
, 0, 15);
341 for (i
= 0; i
<= 15; i
++)
342 cregs
[i
] = (cregs
[i
] & pp
->andvals
[i
]) | pp
->orvals
[i
];
343 __ctl_load(cregs
, 0, 15);
347 * Set a bit in a control register of all cpus
349 void smp_ctl_set_bit(int cr
, int bit
)
351 struct ec_creg_mask_parms parms
;
353 memset(&parms
.orvals
, 0, sizeof(parms
.orvals
));
354 memset(&parms
.andvals
, 0xff, sizeof(parms
.andvals
));
355 parms
.orvals
[cr
] = 1 << bit
;
356 on_each_cpu(smp_ctl_bit_callback
, &parms
, 0, 1);
358 EXPORT_SYMBOL(smp_ctl_set_bit
);
361 * Clear a bit in a control register of all cpus
363 void smp_ctl_clear_bit(int cr
, int bit
)
365 struct ec_creg_mask_parms parms
;
367 memset(&parms
.orvals
, 0, sizeof(parms
.orvals
));
368 memset(&parms
.andvals
, 0xff, sizeof(parms
.andvals
));
369 parms
.andvals
[cr
] = ~(1L << bit
);
370 on_each_cpu(smp_ctl_bit_callback
, &parms
, 0, 1);
372 EXPORT_SYMBOL(smp_ctl_clear_bit
);
375 * In early ipl state a temp. logically cpu number is needed, so the sigp
376 * functions can be used to sense other cpus. Since NR_CPUS is >= 2 on
377 * CONFIG_SMP and the ipl cpu is logical cpu 0, it must be 1.
379 #define CPU_INIT_NO 1
381 #if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
384 * zfcpdump_prefix_array holds prefix registers for the following scenario:
385 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
386 * save its prefix registers, since they get lost, when switching from 31 bit
389 unsigned int zfcpdump_prefix_array
[NR_CPUS
+ 1] \
390 __attribute__((__section__(".data")));
392 static void __init
smp_get_save_area(unsigned int cpu
, unsigned int phy_cpu
)
394 if (ipl_info
.type
!= IPL_TYPE_FCP_DUMP
)
396 if (cpu
>= NR_CPUS
) {
397 printk(KERN_WARNING
"Registers for cpu %i not saved since dump "
398 "kernel was compiled with NR_CPUS=%i\n", cpu
, NR_CPUS
);
401 zfcpdump_save_areas
[cpu
] = kmalloc(sizeof(union save_area
), GFP_KERNEL
);
402 __cpu_logical_map
[CPU_INIT_NO
] = (__u16
) phy_cpu
;
403 while (signal_processor(CPU_INIT_NO
, sigp_stop_and_store_status
) ==
406 memcpy(zfcpdump_save_areas
[cpu
],
407 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE
,
410 /* copy original prefix register */
411 zfcpdump_save_areas
[cpu
]->s390x
.pref_reg
= zfcpdump_prefix_array
[cpu
];
415 union save_area
*zfcpdump_save_areas
[NR_CPUS
+ 1];
416 EXPORT_SYMBOL_GPL(zfcpdump_save_areas
);
420 static inline void smp_get_save_area(unsigned int cpu
, unsigned int phy_cpu
) { }
422 #endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */
424 static int cpu_stopped(int cpu
)
428 /* Check for stopped state */
429 if (signal_processor_ps(&status
, 0, cpu
, sigp_sense
) ==
430 sigp_status_stored
) {
437 static int cpu_known(int cpu_id
)
441 for_each_present_cpu(cpu
) {
442 if (__cpu_logical_map
[cpu
] == cpu_id
)
448 static int smp_rescan_cpus_sigp(cpumask_t avail
)
450 int cpu_id
, logical_cpu
;
452 logical_cpu
= first_cpu(avail
);
453 if (logical_cpu
== NR_CPUS
)
455 for (cpu_id
= 0; cpu_id
<= 65535; cpu_id
++) {
456 if (cpu_known(cpu_id
))
458 __cpu_logical_map
[logical_cpu
] = cpu_id
;
459 if (!cpu_stopped(logical_cpu
))
461 cpu_set(logical_cpu
, cpu_present_map
);
462 smp_cpu_state
[logical_cpu
] = CPU_STATE_CONFIGURED
;
463 logical_cpu
= next_cpu(logical_cpu
, avail
);
464 if (logical_cpu
== NR_CPUS
)
470 static int smp_rescan_cpus_sclp(cpumask_t avail
)
472 struct sclp_cpu_info
*info
;
473 int cpu_id
, logical_cpu
, cpu
;
476 logical_cpu
= first_cpu(avail
);
477 if (logical_cpu
== NR_CPUS
)
479 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
482 rc
= sclp_get_cpu_info(info
);
485 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
486 if (info
->has_cpu_type
&& info
->cpu
[cpu
].type
!= smp_cpu_type
)
488 cpu_id
= info
->cpu
[cpu
].address
;
489 if (cpu_known(cpu_id
))
491 __cpu_logical_map
[logical_cpu
] = cpu_id
;
492 cpu_set(logical_cpu
, cpu_present_map
);
493 if (cpu
>= info
->configured
)
494 smp_cpu_state
[logical_cpu
] = CPU_STATE_STANDBY
;
496 smp_cpu_state
[logical_cpu
] = CPU_STATE_CONFIGURED
;
497 logical_cpu
= next_cpu(logical_cpu
, avail
);
498 if (logical_cpu
== NR_CPUS
)
506 static int smp_rescan_cpus(void)
510 cpus_xor(avail
, cpu_possible_map
, cpu_present_map
);
511 if (smp_use_sigp_detection
)
512 return smp_rescan_cpus_sigp(avail
);
514 return smp_rescan_cpus_sclp(avail
);
517 static void __init
smp_detect_cpus(void)
519 unsigned int cpu
, c_cpus
, s_cpus
;
520 struct sclp_cpu_info
*info
;
521 u16 boot_cpu_addr
, cpu_addr
;
525 boot_cpu_addr
= S390_lowcore
.cpu_data
.cpu_addr
;
526 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
528 panic("smp_detect_cpus failed to allocate memory\n");
529 /* Use sigp detection algorithm if sclp doesn't work. */
530 if (sclp_get_cpu_info(info
)) {
531 smp_use_sigp_detection
= 1;
532 for (cpu
= 0; cpu
<= 65535; cpu
++) {
533 if (cpu
== boot_cpu_addr
)
535 __cpu_logical_map
[CPU_INIT_NO
] = cpu
;
536 if (!cpu_stopped(CPU_INIT_NO
))
538 smp_get_save_area(c_cpus
, cpu
);
544 if (info
->has_cpu_type
) {
545 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
546 if (info
->cpu
[cpu
].address
== boot_cpu_addr
) {
547 smp_cpu_type
= info
->cpu
[cpu
].type
;
553 for (cpu
= 0; cpu
< info
->combined
; cpu
++) {
554 if (info
->has_cpu_type
&& info
->cpu
[cpu
].type
!= smp_cpu_type
)
556 cpu_addr
= info
->cpu
[cpu
].address
;
557 if (cpu_addr
== boot_cpu_addr
)
559 __cpu_logical_map
[CPU_INIT_NO
] = cpu_addr
;
560 if (!cpu_stopped(CPU_INIT_NO
)) {
564 smp_get_save_area(c_cpus
, cpu_addr
);
569 printk(KERN_INFO
"CPUs: %d configured, %d standby\n", c_cpus
, s_cpus
);
576 * Activate a secondary processor.
578 int __cpuinit
start_secondary(void *cpuvoid
)
583 /* Enable TOD clock interrupts on the secondary cpu. */
585 #ifdef CONFIG_VIRT_TIMER
586 /* Enable cpu timer interrupts on the secondary cpu. */
589 /* Enable pfault pseudo page faults on this cpu. */
592 /* Mark this cpu as online */
593 cpu_set(smp_processor_id(), cpu_online_map
);
594 /* Switch on interrupts */
596 /* Print info about this processor */
597 print_cpu_info(&S390_lowcore
.cpu_data
);
598 /* cpu_idle will call schedule for us */
603 static void __init
smp_create_idle(unsigned int cpu
)
605 struct task_struct
*p
;
608 * don't care about the psw and regs settings since we'll never
609 * reschedule the forked task.
613 panic("failed fork for CPU %u: %li", cpu
, PTR_ERR(p
));
614 current_set
[cpu
] = p
;
615 spin_lock_init(&(&per_cpu(s390_idle
, cpu
))->lock
);
618 static int __cpuinit
smp_alloc_lowcore(int cpu
)
620 unsigned long async_stack
, panic_stack
;
621 struct _lowcore
*lowcore
;
624 lc_order
= sizeof(long) == 8 ? 1 : 0;
625 lowcore
= (void *) __get_free_pages(GFP_KERNEL
| GFP_DMA
, lc_order
);
628 async_stack
= __get_free_pages(GFP_KERNEL
, ASYNC_ORDER
);
629 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
631 goto out_async_stack
;
633 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
634 panic_stack
= __get_free_page(GFP_KERNEL
);
635 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
637 goto out_panic_stack
;
639 *lowcore
= S390_lowcore
;
641 if (!panic_stack
|| !async_stack
)
643 memcpy(lowcore
, &S390_lowcore
, 512);
644 memset((char *)lowcore
+ 512, 0, sizeof(*lowcore
) - 512);
645 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
646 lowcore
->async_stack
= async_stack
+ ASYNC_SIZE
;
647 lowcore
->panic_stack
= panic_stack
+ PAGE_SIZE
;
650 if (MACHINE_HAS_IEEE
) {
651 unsigned long save_area
;
653 save_area
= get_zeroed_page(GFP_KERNEL
);
656 lowcore
->extended_save_area_addr
= (u32
) save_area
;
659 lowcore_ptr
[cpu
] = lowcore
;
664 free_page(panic_stack
);
666 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
670 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
671 free_pages(async_stack
, ASYNC_ORDER
);
672 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
675 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
676 free_pages((unsigned long) lowcore
, lc_order
);
680 #ifdef CONFIG_HOTPLUG_CPU
681 static void smp_free_lowcore(int cpu
)
683 struct _lowcore
*lowcore
;
686 lc_order
= sizeof(long) == 8 ? 1 : 0;
687 lowcore
= lowcore_ptr
[cpu
];
689 if (MACHINE_HAS_IEEE
)
690 free_page((unsigned long) lowcore
->extended_save_area_addr
);
692 free_page(lowcore
->panic_stack
- PAGE_SIZE
);
693 free_pages(lowcore
->async_stack
- ASYNC_SIZE
, ASYNC_ORDER
);
694 free_pages((unsigned long) lowcore
, lc_order
);
695 lowcore_ptr
[cpu
] = NULL
;
697 #endif /* CONFIG_HOTPLUG_CPU */
699 /* Upping and downing of CPUs */
700 int __cpuinit
__cpu_up(unsigned int cpu
)
702 struct task_struct
*idle
;
703 struct _lowcore
*cpu_lowcore
;
704 struct stack_frame
*sf
;
707 if (smp_cpu_state
[cpu
] != CPU_STATE_CONFIGURED
)
709 if (smp_alloc_lowcore(cpu
))
712 ccode
= signal_processor_p((__u32
)(unsigned long)(lowcore_ptr
[cpu
]),
713 cpu
, sigp_set_prefix
);
715 printk("sigp_set_prefix failed for cpu %d "
716 "with condition code %d\n",
717 (int) cpu
, (int) ccode
);
721 idle
= current_set
[cpu
];
722 cpu_lowcore
= lowcore_ptr
[cpu
];
723 cpu_lowcore
->kernel_stack
= (unsigned long)
724 task_stack_page(idle
) + THREAD_SIZE
;
725 cpu_lowcore
->thread_info
= (unsigned long) task_thread_info(idle
);
726 sf
= (struct stack_frame
*) (cpu_lowcore
->kernel_stack
727 - sizeof(struct pt_regs
)
728 - sizeof(struct stack_frame
));
729 memset(sf
, 0, sizeof(struct stack_frame
));
730 sf
->gprs
[9] = (unsigned long) sf
;
731 cpu_lowcore
->save_area
[15] = (unsigned long) sf
;
732 __ctl_store(cpu_lowcore
->cregs_save_area
[0], 0, 15);
735 : : "a" (&cpu_lowcore
->access_regs_save_area
) : "memory");
736 cpu_lowcore
->percpu_offset
= __per_cpu_offset
[cpu
];
737 cpu_lowcore
->current_task
= (unsigned long) idle
;
738 cpu_lowcore
->cpu_data
.cpu_nr
= cpu
;
739 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
740 cpu_lowcore
->softirq_pending
= 0;
741 cpu_lowcore
->ext_call_fast
= 0;
743 cpu_lowcore
->kernel_asce
= S390_lowcore
.kernel_asce
;
744 cpu_lowcore
->ipl_device
= S390_lowcore
.ipl_device
;
745 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
748 while (signal_processor(cpu
, sigp_restart
) == sigp_busy
)
751 while (!cpu_online(cpu
))
756 static int __init
setup_possible_cpus(char *s
)
760 pcpus
= simple_strtoul(s
, NULL
, 0);
761 cpu_possible_map
= cpumask_of_cpu(0);
762 for (cpu
= 1; cpu
< pcpus
&& cpu
< NR_CPUS
; cpu
++)
763 cpu_set(cpu
, cpu_possible_map
);
766 early_param("possible_cpus", setup_possible_cpus
);
768 #ifdef CONFIG_HOTPLUG_CPU
770 int __cpu_disable(void)
772 struct ec_creg_mask_parms cr_parms
;
773 int cpu
= smp_processor_id();
775 cpu_clear(cpu
, cpu_online_map
);
777 /* Disable pfault pseudo page faults on this cpu. */
780 memset(&cr_parms
.orvals
, 0, sizeof(cr_parms
.orvals
));
781 memset(&cr_parms
.andvals
, 0xff, sizeof(cr_parms
.andvals
));
783 /* disable all external interrupts */
784 cr_parms
.orvals
[0] = 0;
785 cr_parms
.andvals
[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
786 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
787 /* disable all I/O interrupts */
788 cr_parms
.orvals
[6] = 0;
789 cr_parms
.andvals
[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
790 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
791 /* disable most machine checks */
792 cr_parms
.orvals
[14] = 0;
793 cr_parms
.andvals
[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
796 smp_ctl_bit_callback(&cr_parms
);
801 void __cpu_die(unsigned int cpu
)
803 /* Wait until target cpu is down */
804 while (!smp_cpu_not_running(cpu
))
806 smp_free_lowcore(cpu
);
807 printk(KERN_INFO
"Processor %d spun down\n", cpu
);
813 signal_processor(smp_processor_id(), sigp_stop
);
818 #endif /* CONFIG_HOTPLUG_CPU */
820 void __init
smp_prepare_cpus(unsigned int max_cpus
)
822 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
825 unsigned long save_area
= 0;
827 unsigned long async_stack
, panic_stack
;
828 struct _lowcore
*lowcore
;
829 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
831 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
834 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
838 /* request the 0x1201 emergency signal external interrupt */
839 if (register_external_interrupt(0x1201, do_ext_call_interrupt
) != 0)
840 panic("Couldn't request external interrupt 0x1201");
841 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
842 memset(lowcore_ptr
, 0, sizeof(lowcore_ptr
));
844 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
845 print_cpu_info(&S390_lowcore
.cpu_data
);
846 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
847 smp_alloc_lowcore(smp_processor_id());
849 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
851 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
853 /* Reallocate current lowcore, but keep its contents. */
854 lc_order
= sizeof(long) == 8 ? 1 : 0;
855 lowcore
= (void *) __get_free_pages(GFP_KERNEL
| GFP_DMA
, lc_order
);
856 panic_stack
= __get_free_page(GFP_KERNEL
);
857 async_stack
= __get_free_pages(GFP_KERNEL
, ASYNC_ORDER
);
858 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
860 if (MACHINE_HAS_IEEE
)
861 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
862 ctl_set_bit(14, 29); /* enable extended save area */
864 save_area
= get_zeroed_page(GFP_KERNEL
);
865 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
867 <<<<<<< HEAD
:arch
/s390
/kernel
/smp
.c
868 set_prefix((u32
)(unsigned long) lowcore_ptr
[smp_processor_id()]);
872 local_mcck_disable();
873 lowcore_ptr
[smp_processor_id()] = lowcore
;
874 *lowcore
= S390_lowcore
;
875 lowcore
->panic_stack
= panic_stack
+ PAGE_SIZE
;
876 lowcore
->async_stack
= async_stack
+ ASYNC_SIZE
;
878 if (MACHINE_HAS_IEEE
)
879 lowcore
->extended_save_area_addr
= (u32
) save_area
;
881 set_prefix((u32
)(unsigned long) lowcore
);
884 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/s390
/kernel
/smp
.c
885 for_each_possible_cpu(cpu
)
886 if (cpu
!= smp_processor_id())
887 smp_create_idle(cpu
);
890 void __init
smp_prepare_boot_cpu(void)
892 BUG_ON(smp_processor_id() != 0);
894 current_thread_info()->cpu
= 0;
895 cpu_set(0, cpu_present_map
);
896 cpu_set(0, cpu_online_map
);
897 S390_lowcore
.percpu_offset
= __per_cpu_offset
[0];
898 current_set
[0] = current
;
899 smp_cpu_state
[0] = CPU_STATE_CONFIGURED
;
900 spin_lock_init(&(&__get_cpu_var(s390_idle
))->lock
);
903 void __init
smp_cpus_done(unsigned int max_cpus
)
908 * the frequency of the profiling timer can be changed
909 * by writing a multiplier value into /proc/profile.
911 * usually you want to run this on all CPUs ;)
913 int setup_profiling_timer(unsigned int multiplier
)
918 #ifdef CONFIG_HOTPLUG_CPU
919 static ssize_t
cpu_configure_show(struct sys_device
*dev
, char *buf
)
923 mutex_lock(&smp_cpu_state_mutex
);
924 count
= sprintf(buf
, "%d\n", smp_cpu_state
[dev
->id
]);
925 mutex_unlock(&smp_cpu_state_mutex
);
929 static ssize_t
cpu_configure_store(struct sys_device
*dev
, const char *buf
,
936 if (sscanf(buf
, "%d %c", &val
, &delim
) != 1)
938 if (val
!= 0 && val
!= 1)
941 mutex_lock(&smp_cpu_state_mutex
);
949 if (smp_cpu_state
[cpu
] == CPU_STATE_CONFIGURED
) {
950 rc
= sclp_cpu_deconfigure(__cpu_logical_map
[cpu
]);
952 smp_cpu_state
[cpu
] = CPU_STATE_STANDBY
;
956 if (smp_cpu_state
[cpu
] == CPU_STATE_STANDBY
) {
957 rc
= sclp_cpu_configure(__cpu_logical_map
[cpu
]);
959 smp_cpu_state
[cpu
] = CPU_STATE_CONFIGURED
;
967 mutex_unlock(&smp_cpu_state_mutex
);
968 return rc
? rc
: count
;
970 static SYSDEV_ATTR(configure
, 0644, cpu_configure_show
, cpu_configure_store
);
971 #endif /* CONFIG_HOTPLUG_CPU */
973 static ssize_t
show_cpu_address(struct sys_device
*dev
, char *buf
)
975 return sprintf(buf
, "%d\n", __cpu_logical_map
[dev
->id
]);
977 static SYSDEV_ATTR(address
, 0444, show_cpu_address
, NULL
);
980 static struct attribute
*cpu_common_attrs
[] = {
981 #ifdef CONFIG_HOTPLUG_CPU
982 &attr_configure
.attr
,
988 static struct attribute_group cpu_common_attr_group
= {
989 .attrs
= cpu_common_attrs
,
992 static ssize_t
show_capability(struct sys_device
*dev
, char *buf
)
994 unsigned int capability
;
997 rc
= get_cpu_capability(&capability
);
1000 return sprintf(buf
, "%u\n", capability
);
1002 static SYSDEV_ATTR(capability
, 0444, show_capability
, NULL
);
1004 static ssize_t
show_idle_count(struct sys_device
*dev
, char *buf
)
1006 struct s390_idle_data
*idle
;
1007 unsigned long long idle_count
;
1009 idle
= &per_cpu(s390_idle
, dev
->id
);
1010 spin_lock_irq(&idle
->lock
);
1011 idle_count
= idle
->idle_count
;
1012 spin_unlock_irq(&idle
->lock
);
1013 return sprintf(buf
, "%llu\n", idle_count
);
1015 static SYSDEV_ATTR(idle_count
, 0444, show_idle_count
, NULL
);
1017 static ssize_t
show_idle_time(struct sys_device
*dev
, char *buf
)
1019 struct s390_idle_data
*idle
;
1020 unsigned long long new_time
;
1022 idle
= &per_cpu(s390_idle
, dev
->id
);
1023 spin_lock_irq(&idle
->lock
);
1024 if (idle
->in_idle
) {
1025 new_time
= get_clock();
1026 idle
->idle_time
+= new_time
- idle
->idle_enter
;
1027 idle
->idle_enter
= new_time
;
1029 new_time
= idle
->idle_time
;
1030 spin_unlock_irq(&idle
->lock
);
1031 return sprintf(buf
, "%llu\n", new_time
>> 12);
1033 static SYSDEV_ATTR(idle_time_us
, 0444, show_idle_time
, NULL
);
1035 static struct attribute
*cpu_online_attrs
[] = {
1036 &attr_capability
.attr
,
1037 &attr_idle_count
.attr
,
1038 &attr_idle_time_us
.attr
,
1042 static struct attribute_group cpu_online_attr_group
= {
1043 .attrs
= cpu_online_attrs
,
1046 static int __cpuinit
smp_cpu_notify(struct notifier_block
*self
,
1047 unsigned long action
, void *hcpu
)
1049 unsigned int cpu
= (unsigned int)(long)hcpu
;
1050 struct cpu
*c
= &per_cpu(cpu_devices
, cpu
);
1051 struct sys_device
*s
= &c
->sysdev
;
1052 struct s390_idle_data
*idle
;
1056 case CPU_ONLINE_FROZEN
:
1057 idle
= &per_cpu(s390_idle
, cpu
);
1058 spin_lock_irq(&idle
->lock
);
1059 idle
->idle_enter
= 0;
1060 idle
->idle_time
= 0;
1061 idle
->idle_count
= 0;
1062 spin_unlock_irq(&idle
->lock
);
1063 if (sysfs_create_group(&s
->kobj
, &cpu_online_attr_group
))
1067 case CPU_DEAD_FROZEN
:
1068 sysfs_remove_group(&s
->kobj
, &cpu_online_attr_group
);
1074 static struct notifier_block __cpuinitdata smp_cpu_nb
= {
1075 .notifier_call
= smp_cpu_notify
,
1078 static int __devinit
smp_add_present_cpu(int cpu
)
1080 struct cpu
*c
= &per_cpu(cpu_devices
, cpu
);
1081 struct sys_device
*s
= &c
->sysdev
;
1084 c
->hotpluggable
= 1;
1085 rc
= register_cpu(c
, cpu
);
1088 rc
= sysfs_create_group(&s
->kobj
, &cpu_common_attr_group
);
1091 if (!cpu_online(cpu
))
1093 rc
= sysfs_create_group(&s
->kobj
, &cpu_online_attr_group
);
1096 sysfs_remove_group(&s
->kobj
, &cpu_common_attr_group
);
1098 #ifdef CONFIG_HOTPLUG_CPU
1105 #ifdef CONFIG_HOTPLUG_CPU
1106 static ssize_t __ref
rescan_store(struct sys_device
*dev
,
1107 const char *buf
, size_t count
)
1113 mutex_lock(&smp_cpu_state_mutex
);
1115 newcpus
= cpu_present_map
;
1116 rc
= smp_rescan_cpus();
1119 cpus_andnot(newcpus
, cpu_present_map
, newcpus
);
1120 for_each_cpu_mask(cpu
, newcpus
) {
1121 rc
= smp_add_present_cpu(cpu
);
1123 cpu_clear(cpu
, cpu_present_map
);
1128 mutex_unlock(&smp_cpu_state_mutex
);
1129 return rc
? rc
: count
;
1131 static SYSDEV_ATTR(rescan
, 0200, NULL
, rescan_store
);
1132 #endif /* CONFIG_HOTPLUG_CPU */
1134 static int __init
topology_init(void)
1139 register_cpu_notifier(&smp_cpu_nb
);
1141 #ifdef CONFIG_HOTPLUG_CPU
1142 rc
= sysfs_create_file(&cpu_sysdev_class
.kset
.kobj
,
1147 for_each_present_cpu(cpu
) {
1148 rc
= smp_add_present_cpu(cpu
);
1154 subsys_initcall(topology_init
);