2 * arch/ia64/kernel/crash.c
4 * Architecture specific (ia64) functions for kexec based crash dumps.
6 * Created by: Khalid Aziz <khalid.aziz@hp.com>
7 * Copyright (C) 2005 Hewlett-Packard Development Company, L.P.
8 * Copyright (C) 2005 Intel Corp Zou Nan hai <nanhai.zou@intel.com>
11 #include <linux/smp.h>
12 #include <linux/delay.h>
13 #include <linux/crash_dump.h>
14 #include <linux/bootmem.h>
15 #include <linux/kexec.h>
16 #include <linux/elfcore.h>
17 #include <linux/sysctl.h>
18 #include <linux/init.h>
19 #include <linux/kdebug.h>
23 int kdump_status
[NR_CPUS
];
24 static atomic_t kdump_cpu_frozen
;
25 atomic_t kdump_in_progress
;
26 static int kdump_on_init
= 1;
28 static inline Elf64_Word
29 *append_elf_note(Elf64_Word
*buf
, char *name
, unsigned type
, void *data
,
32 struct elf_note
*note
= (struct elf_note
*)buf
;
33 note
->n_namesz
= strlen(name
) + 1;
34 note
->n_descsz
= data_len
;
36 buf
+= (sizeof(*note
) + 3)/4;
37 memcpy(buf
, name
, note
->n_namesz
);
38 buf
+= (note
->n_namesz
+ 3)/4;
39 memcpy(buf
, data
, data_len
);
40 buf
+= (data_len
+ 3)/4;
47 memset(buf
, 0, sizeof(struct elf_note
));
50 extern void ia64_dump_cpu_regs(void *);
52 static DEFINE_PER_CPU(struct elf_prstatus
, elf_prstatus
);
55 crash_save_this_cpu(void)
58 unsigned long cfm
, sof
, sol
;
60 int cpu
= smp_processor_id();
61 struct elf_prstatus
*prstatus
= &per_cpu(elf_prstatus
, cpu
);
63 elf_greg_t
*dst
= (elf_greg_t
*)&(prstatus
->pr_reg
);
64 memset(prstatus
, 0, sizeof(*prstatus
));
65 prstatus
->pr_pid
= current
->pid
;
67 ia64_dump_cpu_regs(dst
);
69 sol
= (cfm
>> 7) & 0x7f;
71 dst
[46] = (unsigned long)ia64_rse_skip_regs((unsigned long *)dst
[46],
74 buf
= (u64
*) per_cpu_ptr(crash_notes
, cpu
);
77 buf
= append_elf_note(buf
, KEXEC_CORE_NOTE_NAME
, NT_PRSTATUS
, prstatus
,
84 kdump_wait_cpu_freeze(void)
86 int cpu_num
= num_online_cpus() - 1;
88 while(timeout
-- > 0) {
89 if (atomic_read(&kdump_cpu_frozen
) == cpu_num
)
98 machine_crash_shutdown(struct pt_regs
*pt
)
100 /* This function is only called after the system
101 * has paniced or is otherwise in a critical state.
102 * The minimum amount of code to allow a kexec'd kernel
103 * to run successfully needs to happen here.
105 * In practice this means shooting down the other cpus in
108 kexec_disable_iosapic();
110 kdump_smp_send_stop();
111 /* not all cpu response to IPI, send INIT to freeze them */
112 if (kdump_wait_cpu_freeze() && kdump_on_init
) {
113 kdump_smp_send_init();
119 machine_kdump_on_init(void)
122 kexec_disable_iosapic();
123 machine_kexec(ia64_kimage
);
127 kdump_cpu_freeze(struct unw_frame_info
*info
, void *arg
)
131 cpuid
= smp_processor_id();
132 crash_save_this_cpu();
133 current
->thread
.ksp
= (__u64
)info
->sw
- 16;
134 atomic_inc(&kdump_cpu_frozen
);
135 kdump_status
[cpuid
] = 1;
137 #ifdef CONFIG_HOTPLUG_CPU
139 ia64_jump_to_sal(&sal_boot_rendez_state
[cpuid
]);
146 kdump_init_notifier(struct notifier_block
*self
, unsigned long val
, void *data
)
148 struct ia64_mca_notify_die
*nd
;
149 struct die_args
*args
= data
;
155 if (val
== DIE_INIT_MONARCH_LEAVE
)
156 ia64_mca_printk(KERN_NOTICE
157 "%s: kdump not configured\n",
158 <<<<<<< HEAD
:arch
/ia64
/kernel
/crash
.c
162 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/kernel
/crash
.c
166 if (val
!= DIE_INIT_MONARCH_LEAVE
&&
167 val
!= DIE_INIT_SLAVE_LEAVE
&&
168 val
!= DIE_INIT_MONARCH_PROCESS
&&
169 val
!= DIE_MCA_RENDZVOUS_LEAVE
&&
170 val
!= DIE_MCA_MONARCH_LEAVE
)
173 nd
= (struct ia64_mca_notify_die
*)args
->err
;
174 /* Reason code 1 means machine check rendezvous*/
175 if ((val
== DIE_INIT_MONARCH_LEAVE
|| val
== DIE_INIT_SLAVE_LEAVE
176 || val
== DIE_INIT_MONARCH_PROCESS
) && nd
->sos
->rv_rc
== 1)
180 case DIE_INIT_MONARCH_PROCESS
:
181 atomic_set(&kdump_in_progress
, 1);
182 *(nd
->monarch_cpu
) = -1;
184 case DIE_INIT_MONARCH_LEAVE
:
185 machine_kdump_on_init();
187 case DIE_INIT_SLAVE_LEAVE
:
188 if (atomic_read(&kdump_in_progress
))
189 unw_init_running(kdump_cpu_freeze
, NULL
);
191 case DIE_MCA_RENDZVOUS_LEAVE
:
192 if (atomic_read(&kdump_in_progress
))
193 unw_init_running(kdump_cpu_freeze
, NULL
);
195 case DIE_MCA_MONARCH_LEAVE
:
196 /* die_register->signr indicate if MCA is recoverable */
198 machine_kdump_on_init();
205 static ctl_table kdump_on_init_table
[] = {
207 .ctl_name
= CTL_UNNUMBERED
,
208 .procname
= "kdump_on_init",
209 .data
= &kdump_on_init
,
210 .maxlen
= sizeof(int),
212 .proc_handler
= &proc_dointvec
,
217 static ctl_table sys_table
[] = {
219 .ctl_name
= CTL_KERN
,
220 .procname
= "kernel",
222 .child
= kdump_on_init_table
,
229 machine_crash_setup(void)
231 /* be notified before default_monarch_init_process */
232 static struct notifier_block kdump_init_notifier_nb
= {
233 .notifier_call
= kdump_init_notifier
,
237 if((ret
= register_die_notifier(&kdump_init_notifier_nb
)) != 0)
240 register_sysctl_table(sys_table
);
245 __initcall(machine_crash_setup
);