blob: a021681d21f8a61b5ad2ae180a9182c8a0f514ce [file] [log] [blame]
Eric W. Biederman5033cba2005-06-25 14:57:56 -07001/*
2 * Architecture specific (i386) functions for kexec based crash dumps.
3 *
4 * Created by: Hariprasad Nellitheertha (hari@in.ibm.com)
5 *
6 * Copyright (C) IBM Corporation, 2004. All rights reserved.
7 *
8 */
9
10#include <linux/init.h>
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/smp.h>
14#include <linux/irq.h>
15#include <linux/reboot.h>
16#include <linux/kexec.h>
17#include <linux/irq.h>
18#include <linux/delay.h>
19#include <linux/elf.h>
20#include <linux/elfcore.h>
21
22#include <asm/processor.h>
23#include <asm/hardirq.h>
24#include <asm/nmi.h>
25#include <asm/hw_irq.h>
Eric W. Biederman63d30292005-06-25 14:58:00 -070026#include <asm/apic.h>
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -070027#include <mach_ipi.h>
Eric W. Biederman5033cba2005-06-25 14:57:56 -070028
Eric W. Biederman5033cba2005-06-25 14:57:56 -070029
30note_buf_t crash_notes[NR_CPUS];
Vivek Goyala3ea8ac2005-06-25 14:58:14 -070031/* This keeps a track of which one is crashing cpu. */
32static int crashing_cpu;
Eric W. Biederman5033cba2005-06-25 14:57:56 -070033
Eric W. Biederman2c818b42005-06-25 14:57:59 -070034static u32 *append_elf_note(u32 *buf,
35 char *name, unsigned type, void *data, size_t data_len)
36{
37 struct elf_note note;
38 note.n_namesz = strlen(name) + 1;
39 note.n_descsz = data_len;
40 note.n_type = type;
41 memcpy(buf, &note, sizeof(note));
42 buf += (sizeof(note) +3)/4;
43 memcpy(buf, name, note.n_namesz);
44 buf += (note.n_namesz + 3)/4;
45 memcpy(buf, data, note.n_descsz);
46 buf += (note.n_descsz + 3)/4;
47 return buf;
48}
49
50static void final_note(u32 *buf)
51{
52 struct elf_note note;
53 note.n_namesz = 0;
54 note.n_descsz = 0;
55 note.n_type = 0;
56 memcpy(buf, &note, sizeof(note));
57}
58
59
60static void crash_save_this_cpu(struct pt_regs *regs, int cpu)
61{
62 struct elf_prstatus prstatus;
63 u32 *buf;
64 if ((cpu < 0) || (cpu >= NR_CPUS)) {
65 return;
66 }
67 /* Using ELF notes here is opportunistic.
68 * I need a well defined structure format
69 * for the data I pass, and I need tags
70 * on the data to indicate what information I have
71 * squirrelled away. ELF notes happen to provide
72 * all of that that no need to invent something new.
73 */
74 buf = &crash_notes[cpu][0];
75 memset(&prstatus, 0, sizeof(prstatus));
76 prstatus.pr_pid = current->pid;
77 elf_core_copy_regs(&prstatus.pr_reg, regs);
78 buf = append_elf_note(buf, "CORE", NT_PRSTATUS,
79 &prstatus, sizeof(prstatus));
80
81 final_note(buf);
82}
83
84static void crash_get_current_regs(struct pt_regs *regs)
85{
86 __asm__ __volatile__("movl %%ebx,%0" : "=m"(regs->ebx));
87 __asm__ __volatile__("movl %%ecx,%0" : "=m"(regs->ecx));
88 __asm__ __volatile__("movl %%edx,%0" : "=m"(regs->edx));
89 __asm__ __volatile__("movl %%esi,%0" : "=m"(regs->esi));
90 __asm__ __volatile__("movl %%edi,%0" : "=m"(regs->edi));
91 __asm__ __volatile__("movl %%ebp,%0" : "=m"(regs->ebp));
92 __asm__ __volatile__("movl %%eax,%0" : "=m"(regs->eax));
93 __asm__ __volatile__("movl %%esp,%0" : "=m"(regs->esp));
94 __asm__ __volatile__("movw %%ss, %%ax;" :"=a"(regs->xss));
95 __asm__ __volatile__("movw %%cs, %%ax;" :"=a"(regs->xcs));
96 __asm__ __volatile__("movw %%ds, %%ax;" :"=a"(regs->xds));
97 __asm__ __volatile__("movw %%es, %%ax;" :"=a"(regs->xes));
98 __asm__ __volatile__("pushfl; popl %0" :"=m"(regs->eflags));
99
100 regs->eip = (unsigned long)current_text_addr();
101}
102
103static void crash_save_self(void)
104{
105 struct pt_regs regs;
106 int cpu;
107 cpu = smp_processor_id();
108 crash_get_current_regs(&regs);
109 crash_save_this_cpu(&regs, cpu);
110}
111
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700112#ifdef CONFIG_SMP
113static atomic_t waiting_for_crash_ipi;
114
115static int crash_nmi_callback(struct pt_regs *regs, int cpu)
116{
Vivek Goyal4d554762005-06-25 14:58:13 -0700117 struct pt_regs fixed_regs;
Vivek Goyala3ea8ac2005-06-25 14:58:14 -0700118
119 /* Don't do anything if this handler is invoked on crashing cpu.
120 * Otherwise, system will completely hang. Crashing cpu can get
121 * an NMI if system was initially booted with nmi_watchdog parameter.
122 */
123 if (cpu == crashing_cpu)
124 return 1;
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700125 local_irq_disable();
Vivek Goyal4d554762005-06-25 14:58:13 -0700126
127 /* CPU does not save ss and esp on stack if execution is already
128 * running in kernel mode at the time of NMI occurrence. This code
129 * fixes it.
130 */
131 if (!user_mode(regs)) {
132 memcpy(&fixed_regs, regs, sizeof(*regs));
133 fixed_regs.esp = (unsigned long)&(regs->esp);
134 __asm__ __volatile__("xorl %eax, %eax;");
135 __asm__ __volatile__ ("movw %%ss, %%ax;" :"=a"(fixed_regs.xss));
136 regs = &fixed_regs;
137 }
Eric W. Biederman2c818b42005-06-25 14:57:59 -0700138 crash_save_this_cpu(regs, cpu);
Eric W. Biederman63d30292005-06-25 14:58:00 -0700139 disable_local_APIC();
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700140 atomic_dec(&waiting_for_crash_ipi);
141 /* Assume hlt works */
142 __asm__("hlt");
143 for(;;);
144 return 1;
145}
146
147/*
148 * By using the NMI code instead of a vector we just sneak thru the
149 * word generator coming out with just what we want. AND it does
150 * not matter if clustered_apic_mode is set or not.
151 */
152static void smp_send_nmi_allbutself(void)
153{
154 send_IPI_allbutself(APIC_DM_NMI);
155}
156
157static void nmi_shootdown_cpus(void)
158{
159 unsigned long msecs;
160 atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
161
162 /* Would it be better to replace the trap vector here? */
163 set_nmi_callback(crash_nmi_callback);
164 /* Ensure the new callback function is set before sending
165 * out the NMI
166 */
167 wmb();
168
169 smp_send_nmi_allbutself();
170
171 msecs = 1000; /* Wait at most a second for the other cpus to stop */
172 while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
173 mdelay(1);
174 msecs--;
175 }
176
177 /* Leave the nmi callback set */
Eric W. Biederman63d30292005-06-25 14:58:00 -0700178 disable_local_APIC();
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700179}
180#else
181static void nmi_shootdown_cpus(void)
182{
183 /* There are no cpus to shootdown */
184}
185#endif
186
Eric W. Biederman5033cba2005-06-25 14:57:56 -0700187void machine_crash_shutdown(void)
188{
189 /* This function is only called after the system
190 * has paniced or is otherwise in a critical state.
191 * The minimum amount of code to allow a kexec'd kernel
192 * to run successfully needs to happen here.
193 *
194 * In practice this means shooting down the other cpus in
195 * an SMP system.
196 */
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700197 /* The kernel is broken so disable interrupts */
198 local_irq_disable();
Vivek Goyala3ea8ac2005-06-25 14:58:14 -0700199
200 /* Make a note of crashing cpu. Will be used in NMI callback.*/
201 crashing_cpu = smp_processor_id();
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700202 nmi_shootdown_cpus();
Eric W. Biederman63d30292005-06-25 14:58:00 -0700203 lapic_shutdown();
204#if defined(CONFIG_X86_IO_APIC)
205 disable_IO_APIC();
206#endif
Eric W. Biederman2c818b42005-06-25 14:57:59 -0700207 crash_save_self();
Eric W. Biederman5033cba2005-06-25 14:57:56 -0700208}