]> git.zerfleddert.de Git - ms2-kexec/blame - machine_kexec.c
update offsets to new european GB kernel, set software booting from USB
[ms2-kexec] / machine_kexec.c
CommitLineData
4e93cb00
MG
1/*
2 * machine_kexec.c - handle transition of Linux booting another kernel
3 */
4
5#include <linux/mm.h>
6#include <linux/kexec.h>
7#include <linux/delay.h>
8#include <linux/reboot.h>
9#include <linux/io.h>
10#include <asm/pgtable.h>
11#include <asm/pgalloc.h>
12#include <asm/mmu_context.h>
13#include <asm/cacheflush.h>
14#include <asm/mach-types.h>
15
16extern const unsigned char relocate_new_kernel[];
17extern const unsigned int relocate_new_kernel_size;
18
19extern void setup_mm_for_reboot(char mode);
20
1109a23f
MG
21extern void v7_flush_kern_cache_all(void);
22
4e93cb00
MG
23extern unsigned long kexec_start_address;
24extern unsigned long kexec_indirection_page;
25extern unsigned long kexec_mach_type;
26extern unsigned long kexec_boot_atags;
27
0c549ba1
MG
28static atomic_t waiting_for_crash_ipi;
29
4e93cb00
MG
30/*
31 * Provide a dummy crash_notes definition while crash dump arrives to arm.
32 * This prevents breakage of crash_notes attribute in kernel/ksysfs.c.
33 */
34
35int machine_kexec_prepare(struct kimage *image)
36{
37 return 0;
38}
39
40void machine_kexec_cleanup(struct kimage *image)
41{
42}
43
0c549ba1 44void machine_crash_nonpanic_core(void *unused)
4e93cb00 45{
0c549ba1
MG
46 struct pt_regs regs;
47
48 crash_setup_regs(&regs, NULL);
49 printk(KERN_DEBUG "CPU %u will stop doing anything useful since another CPU has crashed\n",
50 smp_processor_id());
51 crash_save_cpu(&regs, smp_processor_id());
1109a23f 52 v7_flush_kern_cache_all();
0c549ba1
MG
53
54 atomic_dec(&waiting_for_crash_ipi);
55 while (1)
56 cpu_relax();
4e93cb00
MG
57}
58
59void machine_crash_shutdown(struct pt_regs *regs)
60{
0c549ba1
MG
61 unsigned long msecs;
62
63 local_irq_disable();
64
65 atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
66 smp_call_function(machine_crash_nonpanic_core, NULL, false);
67 msecs = 1000; /* Wait at most a second for the other cpus to stop */
68 while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
69 mdelay(1);
70 msecs--;
71 }
72 if (atomic_read(&waiting_for_crash_ipi) > 0)
73 printk(KERN_WARNING "Non-crashing CPUs did not react to IPI\n");
74
75 crash_save_cpu(regs, smp_processor_id());
76
77 printk(KERN_INFO "Loading crashdump kernel...\n");
4e93cb00
MG
78}
79
0c549ba1
MG
80/*
81 * Function pointer to optional machine-specific reinitialization
82 */
83void (*kexec_reinit)(void);
84
4e93cb00
MG
85void machine_kexec(struct kimage *image)
86{
87 unsigned long page_list;
88 unsigned long reboot_code_buffer_phys;
89 void *reboot_code_buffer;
90
4e93cb00
MG
91 page_list = image->head & PAGE_MASK;
92
93 /* we need both effective and real address here */
94 reboot_code_buffer_phys =
95 page_to_pfn(image->control_code_page) << PAGE_SHIFT;
96 reboot_code_buffer = page_address(image->control_code_page);
97
98 /* Prepare parameters for reboot_code_buffer*/
99 kexec_start_address = image->start;
100 kexec_indirection_page = page_list;
101 kexec_mach_type = machine_arch_type;
102 kexec_boot_atags = image->start - KEXEC_ARM_ZIMAGE_OFFSET + KEXEC_ARM_ATAGS_OFFSET;
103
104 /* copy our kernel relocation code to the control code page */
105 memcpy(reboot_code_buffer,
106 relocate_new_kernel, relocate_new_kernel_size);
107
108
109 flush_icache_range((unsigned long) reboot_code_buffer,
110 (unsigned long) reboot_code_buffer + KEXEC_CONTROL_PAGE_SIZE);
111 printk(KERN_INFO "Bye!\n");
112
0c549ba1
MG
113 if (kexec_reinit)
114 kexec_reinit();
115 local_irq_disable();
116 local_fiq_disable();
4e93cb00 117 setup_mm_for_reboot(0); /* mode is not used, so just pass 0*/
1109a23f 118 v7_flush_kern_cache_all();
74ed2903 119#ifdef CONFIG_OUTER_CACHE
0c549ba1
MG
120 outer_flush_all();
121 outer_disable();
122#endif
123 cpu_proc_fin();
74ed2903 124#ifdef CONFIG_OUTER_CACHE
0c549ba1
MG
125 outer_inv_all();
126#endif
1109a23f 127 //v7_flush_kern_cache_all();
4e93cb00
MG
128 cpu_reset(reboot_code_buffer_phys);
129}
Impressum, Datenschutz