blob: 1bb5dd98d1d48ad49437424eaf127b0c7331815f [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. Biedermanc4ac4262005-06-25 14:57:58 -070026#include <mach_ipi.h>
Eric W. Biederman5033cba2005-06-25 14:57:56 -070027
28#define MAX_NOTE_BYTES 1024
29typedef u32 note_buf_t[MAX_NOTE_BYTES/4];
30
31note_buf_t crash_notes[NR_CPUS];
32
Eric W. Biederman2c818b42005-06-25 14:57:59 -070033static u32 *append_elf_note(u32 *buf,
34 char *name, unsigned type, void *data, size_t data_len)
35{
36 struct elf_note note;
37 note.n_namesz = strlen(name) + 1;
38 note.n_descsz = data_len;
39 note.n_type = type;
40 memcpy(buf, &note, sizeof(note));
41 buf += (sizeof(note) +3)/4;
42 memcpy(buf, name, note.n_namesz);
43 buf += (note.n_namesz + 3)/4;
44 memcpy(buf, data, note.n_descsz);
45 buf += (note.n_descsz + 3)/4;
46 return buf;
47}
48
49static void final_note(u32 *buf)
50{
51 struct elf_note note;
52 note.n_namesz = 0;
53 note.n_descsz = 0;
54 note.n_type = 0;
55 memcpy(buf, &note, sizeof(note));
56}
57
58
59static void crash_save_this_cpu(struct pt_regs *regs, int cpu)
60{
61 struct elf_prstatus prstatus;
62 u32 *buf;
63 if ((cpu < 0) || (cpu >= NR_CPUS)) {
64 return;
65 }
66 /* Using ELF notes here is opportunistic.
67 * I need a well defined structure format
68 * for the data I pass, and I need tags
69 * on the data to indicate what information I have
70 * squirrelled away. ELF notes happen to provide
71 * all of that that no need to invent something new.
72 */
73 buf = &crash_notes[cpu][0];
74 memset(&prstatus, 0, sizeof(prstatus));
75 prstatus.pr_pid = current->pid;
76 elf_core_copy_regs(&prstatus.pr_reg, regs);
77 buf = append_elf_note(buf, "CORE", NT_PRSTATUS,
78 &prstatus, sizeof(prstatus));
79
80 final_note(buf);
81}
82
83static void crash_get_current_regs(struct pt_regs *regs)
84{
85 __asm__ __volatile__("movl %%ebx,%0" : "=m"(regs->ebx));
86 __asm__ __volatile__("movl %%ecx,%0" : "=m"(regs->ecx));
87 __asm__ __volatile__("movl %%edx,%0" : "=m"(regs->edx));
88 __asm__ __volatile__("movl %%esi,%0" : "=m"(regs->esi));
89 __asm__ __volatile__("movl %%edi,%0" : "=m"(regs->edi));
90 __asm__ __volatile__("movl %%ebp,%0" : "=m"(regs->ebp));
91 __asm__ __volatile__("movl %%eax,%0" : "=m"(regs->eax));
92 __asm__ __volatile__("movl %%esp,%0" : "=m"(regs->esp));
93 __asm__ __volatile__("movw %%ss, %%ax;" :"=a"(regs->xss));
94 __asm__ __volatile__("movw %%cs, %%ax;" :"=a"(regs->xcs));
95 __asm__ __volatile__("movw %%ds, %%ax;" :"=a"(regs->xds));
96 __asm__ __volatile__("movw %%es, %%ax;" :"=a"(regs->xes));
97 __asm__ __volatile__("pushfl; popl %0" :"=m"(regs->eflags));
98
99 regs->eip = (unsigned long)current_text_addr();
100}
101
102static void crash_save_self(void)
103{
104 struct pt_regs regs;
105 int cpu;
106 cpu = smp_processor_id();
107 crash_get_current_regs(&regs);
108 crash_save_this_cpu(&regs, cpu);
109}
110
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700111#ifdef CONFIG_SMP
112static atomic_t waiting_for_crash_ipi;
113
114static int crash_nmi_callback(struct pt_regs *regs, int cpu)
115{
116 local_irq_disable();
Eric W. Biederman2c818b42005-06-25 14:57:59 -0700117 crash_save_this_cpu(regs, cpu);
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700118 atomic_dec(&waiting_for_crash_ipi);
119 /* Assume hlt works */
120 __asm__("hlt");
121 for(;;);
122 return 1;
123}
124
125/*
126 * By using the NMI code instead of a vector we just sneak thru the
127 * word generator coming out with just what we want. AND it does
128 * not matter if clustered_apic_mode is set or not.
129 */
130static void smp_send_nmi_allbutself(void)
131{
132 send_IPI_allbutself(APIC_DM_NMI);
133}
134
135static void nmi_shootdown_cpus(void)
136{
137 unsigned long msecs;
138 atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
139
140 /* Would it be better to replace the trap vector here? */
141 set_nmi_callback(crash_nmi_callback);
142 /* Ensure the new callback function is set before sending
143 * out the NMI
144 */
145 wmb();
146
147 smp_send_nmi_allbutself();
148
149 msecs = 1000; /* Wait at most a second for the other cpus to stop */
150 while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
151 mdelay(1);
152 msecs--;
153 }
154
155 /* Leave the nmi callback set */
156}
157#else
158static void nmi_shootdown_cpus(void)
159{
160 /* There are no cpus to shootdown */
161}
162#endif
163
Eric W. Biederman5033cba2005-06-25 14:57:56 -0700164void machine_crash_shutdown(void)
165{
166 /* This function is only called after the system
167 * has paniced or is otherwise in a critical state.
168 * The minimum amount of code to allow a kexec'd kernel
169 * to run successfully needs to happen here.
170 *
171 * In practice this means shooting down the other cpus in
172 * an SMP system.
173 */
Eric W. Biedermanc4ac4262005-06-25 14:57:58 -0700174 /* The kernel is broken so disable interrupts */
175 local_irq_disable();
176 nmi_shootdown_cpus();
Eric W. Biederman2c818b42005-06-25 14:57:59 -0700177 crash_save_self();
Eric W. Biederman5033cba2005-06-25 14:57:56 -0700178}