2 * arch/s390/kernel/machine_kexec.c
4 * (C) Copyright IBM Corp. 2005
6 * Author(s): Rolf Adelsberger <adelsberger@de.ibm.com>
11 * s390_machine_kexec.c - handle the transition of Linux booting another kernel
12 * on the S390 architecture.
16 #include <asm/setup.h>
17 #include <linux/device.h>
19 #include <linux/kexec.h>
20 #include <linux/delay.h>
21 #include <asm/pgtable.h>
22 #include <asm/pgalloc.h>
23 #include <asm/system.h>
25 static void kexec_halt_all_cpus(void *);
27 typedef void (*relocate_kernel_t
) (kimage_entry_t
*, unsigned long);
29 const extern unsigned char relocate_kernel
[];
30 const extern unsigned long long relocate_kernel_len
;
33 machine_kexec_prepare(struct kimage
*image
)
35 unsigned long reboot_code_buffer
;
37 /* We don't support anything but the default image type for now. */
38 if (image
->type
!= KEXEC_TYPE_DEFAULT
)
41 /* Get the destination where the assembler code should be copied to.*/
42 reboot_code_buffer
= page_to_pfn(image
->control_code_page
)<<PAGE_SHIFT
;
45 memcpy((void *) reboot_code_buffer
, relocate_kernel
,
51 machine_kexec_cleanup(struct kimage
*image
)
56 machine_shutdown(void)
58 printk(KERN_INFO
"kexec: machine_shutdown called\n");
62 machine_kexec(struct kimage
*image
)
64 clear_all_subchannels();
66 /* Disable lowcore protection */
69 on_each_cpu(kexec_halt_all_cpus
, image
, 0, 0);
73 extern void pfault_fini(void);
76 kexec_halt_all_cpus(void *kernel_image
)
78 static atomic_t cpuid
= ATOMIC_INIT(-1);
81 relocate_kernel_t data_mover
;
88 if (atomic_compare_and_swap(-1, smp_processor_id(), &cpuid
))
89 signal_processor(smp_processor_id(), sigp_stop
);
91 /* Wait for all other cpus to enter stopped state */
92 for_each_online_cpu(cpu
) {
93 if (cpu
== smp_processor_id())
95 while (!smp_cpu_not_running(cpu
))
99 image
= (struct kimage
*) kernel_image
;
100 data_mover
= (relocate_kernel_t
)
101 (page_to_pfn(image
->control_code_page
) << PAGE_SHIFT
);
103 /* Call the moving routine */
104 (*data_mover
) (&image
->head
, image
->start
);