2005-12-04 10:39:43 +03:00
|
|
|
/*
|
|
|
|
* Architecture specific (PPC64) functions for kexec based crash dumps.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005, IBM Corp.
|
|
|
|
*
|
|
|
|
* Created by: Haren Myneni
|
|
|
|
*
|
|
|
|
* This source code is licensed under the GNU General Public License,
|
|
|
|
* Version 2. See the file COPYING for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef DEBUG
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
#include <linux/kexec.h>
|
|
|
|
#include <linux/bootmem.h>
|
2011-05-27 18:46:24 +04:00
|
|
|
#include <linux/export.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
#include <linux/crash_dump.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <linux/elfcore.h>
|
|
|
|
#include <linux/init.h>
|
2006-04-04 15:43:01 +04:00
|
|
|
#include <linux/irq.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
#include <linux/types.h>
|
2010-07-12 08:36:09 +04:00
|
|
|
#include <linux/memblock.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/machdep.h>
|
2006-06-24 02:29:34 +04:00
|
|
|
#include <asm/kexec.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
#include <asm/kdump.h>
|
2008-02-14 03:56:49 +03:00
|
|
|
#include <asm/prom.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
#include <asm/firmware.h>
|
2006-01-11 06:25:25 +03:00
|
|
|
#include <asm/smp.h>
|
2008-01-18 07:50:30 +03:00
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/setjmp.h>
|
2005-12-04 10:39:43 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#include <asm/udbg.h>
|
|
|
|
#define DBG(fmt...) udbg_printf(fmt)
|
|
|
|
#else
|
|
|
|
#define DBG(fmt...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This keeps a track of which one is crashing cpu. */
|
|
|
|
int crashing_cpu = -1;
|
2006-06-24 02:29:34 +04:00
|
|
|
static cpumask_t cpus_in_crash = CPU_MASK_NONE;
|
2005-12-04 10:39:43 +03:00
|
|
|
|
2011-01-21 05:43:59 +03:00
|
|
|
#define CRASH_HANDLER_MAX 3
|
2008-01-18 07:50:30 +03:00
|
|
|
/* NULL terminated list of shutdown handles */
|
|
|
|
static crash_shutdown_t crash_shutdown_handles[CRASH_HANDLER_MAX+1];
|
|
|
|
static DEFINE_SPINLOCK(crash_handlers_lock);
|
|
|
|
|
2005-12-04 10:39:43 +03:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
void crash_ipi_callback(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
if (!cpu_online(cpu))
|
|
|
|
return;
|
|
|
|
|
[POWERPC] Lazy interrupt disabling for 64-bit machines
This implements a lazy strategy for disabling interrupts. This means
that local_irq_disable() et al. just clear the 'interrupts are
enabled' flag in the paca. If an interrupt comes along, the interrupt
entry code notices that interrupts are supposed to be disabled, and
clears the EE bit in SRR1, clears the 'interrupts are hard-enabled'
flag in the paca, and returns. This means that interrupts only
actually get disabled in the processor when an interrupt comes along.
When interrupts are enabled by local_irq_enable() et al., the code
sets the interrupts-enabled flag in the paca, and then checks whether
interrupts got hard-disabled. If so, it also sets the EE bit in the
MSR to hard-enable the interrupts.
This has the potential to improve performance, and also makes it
easier to make a kernel that can boot on iSeries and on other 64-bit
machines, since this lazy-disable strategy is very similar to the
soft-disable strategy that iSeries already uses.
This version renames paca->proc_enabled to paca->soft_enabled, and
changes a couple of soft-disables in the kexec code to hard-disables,
which should fix the crash that Michael Ellerman saw. This doesn't
yet use a reserved CR field for the soft_enabled and hard_enabled
flags. This applies on top of Stephen Rothwell's patches to make it
possible to build a combined iSeries/other kernel.
Signed-off-by: Paul Mackerras <paulus@samba.org>
2006-10-04 10:47:49 +04:00
|
|
|
hard_irq_disable();
|
2011-04-28 09:07:23 +04:00
|
|
|
if (!cpumask_test_cpu(cpu, &cpus_in_crash))
|
2006-12-07 07:40:41 +03:00
|
|
|
crash_save_cpu(regs, cpu);
|
2011-04-28 09:07:23 +04:00
|
|
|
cpumask_set_cpu(cpu, &cpus_in_crash);
|
2005-12-04 10:39:43 +03:00
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
/*
|
|
|
|
* Starting the kdump boot.
|
|
|
|
* This barrier is needed to make sure that all CPUs are stopped.
|
|
|
|
*/
|
2011-04-28 09:07:23 +04:00
|
|
|
while (!cpumask_test_cpu(crashing_cpu, &cpus_in_crash))
|
2006-06-24 02:29:34 +04:00
|
|
|
cpu_relax();
|
|
|
|
|
|
|
|
if (ppc_md.kexec_cpu_down)
|
|
|
|
ppc_md.kexec_cpu_down(1, 1);
|
2006-07-05 08:39:43 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC64
|
2005-12-04 10:39:43 +03:00
|
|
|
kexec_smp_wait();
|
2006-07-05 08:39:43 +04:00
|
|
|
#else
|
|
|
|
for (;;); /* FIXME */
|
|
|
|
#endif
|
|
|
|
|
2005-12-04 10:39:43 +03:00
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
static void crash_kexec_prepare_cpus(int cpu)
|
2005-12-04 10:39:43 +03:00
|
|
|
{
|
|
|
|
unsigned int msecs;
|
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
unsigned int ncpus = num_online_cpus() - 1;/* Excluding the panic cpu */
|
2005-12-04 10:39:43 +03:00
|
|
|
|
2011-11-30 04:23:10 +04:00
|
|
|
printk(KERN_EMERG "Sending IPI to other CPUs\n");
|
|
|
|
|
2005-12-04 10:39:43 +03:00
|
|
|
crash_send_ipi(crash_ipi_callback);
|
|
|
|
smp_wmb();
|
|
|
|
|
|
|
|
/*
|
2011-01-21 05:43:59 +03:00
|
|
|
* FIXME: Until we will have the way to stop other CPUs reliably,
|
2005-12-04 10:39:43 +03:00
|
|
|
* the crash CPU will send an IPI and wait for other CPUs to
|
2006-06-24 02:29:34 +04:00
|
|
|
* respond.
|
2006-02-08 02:47:03 +03:00
|
|
|
* Delay of at least 10 seconds.
|
2005-12-04 10:39:43 +03:00
|
|
|
*/
|
2006-02-08 02:47:03 +03:00
|
|
|
msecs = 10000;
|
2011-04-28 09:07:23 +04:00
|
|
|
while ((cpumask_weight(&cpus_in_crash) < ncpus) && (--msecs > 0)) {
|
2006-06-24 02:29:34 +04:00
|
|
|
cpu_relax();
|
2005-12-04 10:39:43 +03:00
|
|
|
mdelay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Would it be better to replace the trap vector here? */
|
|
|
|
|
2011-04-28 09:07:23 +04:00
|
|
|
if (cpumask_weight(&cpus_in_crash) < ncpus) {
|
2011-11-30 04:23:10 +04:00
|
|
|
printk(KERN_EMERG "ERROR: %d CPU(s) not responding\n",
|
2011-04-28 09:07:23 +04:00
|
|
|
ncpus - cpumask_weight(&cpus_in_crash));
|
2006-06-24 02:29:34 +04:00
|
|
|
}
|
2011-11-30 04:23:10 +04:00
|
|
|
|
|
|
|
printk(KERN_EMERG "IPI complete\n");
|
2005-12-04 10:39:43 +03:00
|
|
|
}
|
2006-06-24 02:29:34 +04:00
|
|
|
|
|
|
|
/*
|
2011-11-30 04:23:10 +04:00
|
|
|
* This function will be called by secondary cpus.
|
2006-06-24 02:29:34 +04:00
|
|
|
*/
|
|
|
|
void crash_kexec_secondary(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
2011-11-30 04:23:10 +04:00
|
|
|
int msecs = 500;
|
2006-06-24 02:29:34 +04:00
|
|
|
|
|
|
|
local_irq_save(flags);
|
2011-11-30 04:23:10 +04:00
|
|
|
|
|
|
|
/* Wait 500ms for the primary crash CPU to signal its progress */
|
2006-06-24 02:29:34 +04:00
|
|
|
while (crashing_cpu < 0) {
|
|
|
|
if (--msecs < 0) {
|
2011-11-30 04:23:10 +04:00
|
|
|
/* No response, kdump image may not have been loaded */
|
2006-06-24 02:29:34 +04:00
|
|
|
local_irq_restore(flags);
|
|
|
|
return;
|
|
|
|
}
|
2011-11-30 04:23:10 +04:00
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
mdelay(1);
|
|
|
|
cpu_relax();
|
|
|
|
}
|
2011-11-30 04:23:10 +04:00
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
crash_ipi_callback(regs);
|
|
|
|
}
|
|
|
|
|
2011-04-13 10:30:08 +04:00
|
|
|
#else /* ! CONFIG_SMP */
|
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
static void crash_kexec_prepare_cpus(int cpu)
|
2005-12-04 10:39:43 +03:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* move the secondarys to us so that we can copy
|
|
|
|
* the new kernel 0-0x100 safely
|
|
|
|
*
|
|
|
|
* do this if kexec in setup.c ?
|
|
|
|
*/
|
2006-07-05 08:39:43 +04:00
|
|
|
#ifdef CONFIG_PPC64
|
2005-12-04 10:39:43 +03:00
|
|
|
smp_release_cpus();
|
2006-07-05 08:39:43 +04:00
|
|
|
#else
|
|
|
|
/* FIXME */
|
|
|
|
#endif
|
2005-12-04 10:39:43 +03:00
|
|
|
}
|
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
void crash_kexec_secondary(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
}
|
2011-04-13 10:30:08 +04:00
|
|
|
#endif /* CONFIG_SMP */
|
2005-12-04 10:39:43 +03:00
|
|
|
|
2011-04-24 19:04:31 +04:00
|
|
|
/* wait for all the CPUs to hit real mode but timeout if they don't come in */
|
|
|
|
#if defined(CONFIG_SMP) && defined(CONFIG_PPC_STD_MMU_64)
|
|
|
|
static void crash_kexec_wait_realmode(int cpu)
|
|
|
|
{
|
|
|
|
unsigned int msecs;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
msecs = 10000;
|
2011-05-10 23:28:41 +04:00
|
|
|
for (i=0; i < nr_cpu_ids && msecs > 0; i++) {
|
2011-04-24 19:04:31 +04:00
|
|
|
if (i == cpu)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
while (paca[i].kexec_state < KEXEC_STATE_REAL_MODE) {
|
|
|
|
barrier();
|
2011-07-05 00:40:10 +04:00
|
|
|
if (!cpu_possible(i) || !cpu_online(i) || (msecs <= 0))
|
2011-04-24 19:04:31 +04:00
|
|
|
break;
|
|
|
|
msecs--;
|
|
|
|
mdelay(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mb();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void crash_kexec_wait_realmode(int cpu) {}
|
|
|
|
#endif /* CONFIG_SMP && CONFIG_PPC_STD_MMU_64 */
|
|
|
|
|
2008-01-18 07:50:30 +03:00
|
|
|
/*
|
|
|
|
* Register a function to be called on shutdown. Only use this if you
|
|
|
|
* can't reset your device in the second kernel.
|
|
|
|
*/
|
|
|
|
int crash_shutdown_register(crash_shutdown_t handler)
|
|
|
|
{
|
|
|
|
unsigned int i, rc;
|
|
|
|
|
|
|
|
spin_lock(&crash_handlers_lock);
|
|
|
|
for (i = 0 ; i < CRASH_HANDLER_MAX; i++)
|
|
|
|
if (!crash_shutdown_handles[i]) {
|
|
|
|
/* Insert handle at first empty entry */
|
|
|
|
crash_shutdown_handles[i] = handler;
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == CRASH_HANDLER_MAX) {
|
|
|
|
printk(KERN_ERR "Crash shutdown handles full, "
|
|
|
|
"not registered.\n");
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&crash_handlers_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(crash_shutdown_register);
|
|
|
|
|
|
|
|
int crash_shutdown_unregister(crash_shutdown_t handler)
|
|
|
|
{
|
|
|
|
unsigned int i, rc;
|
|
|
|
|
|
|
|
spin_lock(&crash_handlers_lock);
|
|
|
|
for (i = 0 ; i < CRASH_HANDLER_MAX; i++)
|
|
|
|
if (crash_shutdown_handles[i] == handler)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i == CRASH_HANDLER_MAX) {
|
|
|
|
printk(KERN_ERR "Crash shutdown handle not found\n");
|
|
|
|
rc = 1;
|
|
|
|
} else {
|
|
|
|
/* Shift handles down */
|
|
|
|
for (; crash_shutdown_handles[i]; i++)
|
|
|
|
crash_shutdown_handles[i] =
|
|
|
|
crash_shutdown_handles[i+1];
|
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&crash_handlers_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(crash_shutdown_unregister);
|
|
|
|
|
|
|
|
static unsigned long crash_shutdown_buf[JMP_BUF_LEN];
|
2010-05-10 20:25:51 +04:00
|
|
|
static int crash_shutdown_cpu = -1;
|
2008-01-18 07:50:30 +03:00
|
|
|
|
|
|
|
static int handle_fault(struct pt_regs *regs)
|
|
|
|
{
|
2010-05-10 20:25:51 +04:00
|
|
|
if (crash_shutdown_cpu == smp_processor_id())
|
|
|
|
longjmp(crash_shutdown_buf, 1);
|
2008-01-18 07:50:30 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-04 10:39:43 +03:00
|
|
|
void default_machine_crash_shutdown(struct pt_regs *regs)
|
|
|
|
{
|
2008-01-18 07:50:30 +03:00
|
|
|
unsigned int i;
|
|
|
|
int (*old_handler)(struct pt_regs *regs);
|
|
|
|
|
2006-04-04 15:43:01 +04:00
|
|
|
|
2005-12-04 10:39:43 +03:00
|
|
|
/*
|
|
|
|
* This function is only called after the system
|
2006-06-26 20:30:00 +04:00
|
|
|
* has panicked or is otherwise in a critical state.
|
2005-12-04 10:39:43 +03:00
|
|
|
* The minimum amount of code to allow a kexec'd kernel
|
|
|
|
* to run successfully needs to happen here.
|
|
|
|
*
|
|
|
|
* In practice this means stopping other cpus in
|
|
|
|
* an SMP system.
|
|
|
|
* The kernel is broken so disable interrupts.
|
|
|
|
*/
|
[POWERPC] Lazy interrupt disabling for 64-bit machines
This implements a lazy strategy for disabling interrupts. This means
that local_irq_disable() et al. just clear the 'interrupts are
enabled' flag in the paca. If an interrupt comes along, the interrupt
entry code notices that interrupts are supposed to be disabled, and
clears the EE bit in SRR1, clears the 'interrupts are hard-enabled'
flag in the paca, and returns. This means that interrupts only
actually get disabled in the processor when an interrupt comes along.
When interrupts are enabled by local_irq_enable() et al., the code
sets the interrupts-enabled flag in the paca, and then checks whether
interrupts got hard-disabled. If so, it also sets the EE bit in the
MSR to hard-enable the interrupts.
This has the potential to improve performance, and also makes it
easier to make a kernel that can boot on iSeries and on other 64-bit
machines, since this lazy-disable strategy is very similar to the
soft-disable strategy that iSeries already uses.
This version renames paca->proc_enabled to paca->soft_enabled, and
changes a couple of soft-disables in the kexec code to hard-disables,
which should fix the crash that Michael Ellerman saw. This doesn't
yet use a reserved CR field for the soft_enabled and hard_enabled
flags. This applies on top of Stephen Rothwell's patches to make it
possible to build a combined iSeries/other kernel.
Signed-off-by: Paul Mackerras <paulus@samba.org>
2006-10-04 10:47:49 +04:00
|
|
|
hard_irq_disable();
|
2005-12-04 10:39:43 +03:00
|
|
|
|
2010-08-03 00:39:41 +04:00
|
|
|
/*
|
|
|
|
* Make a note of crashing cpu. Will be used in machine_kexec
|
|
|
|
* such that another IPI will not be sent.
|
|
|
|
*/
|
|
|
|
crashing_cpu = smp_processor_id();
|
|
|
|
crash_save_cpu(regs, crashing_cpu);
|
|
|
|
crash_kexec_prepare_cpus(crashing_cpu);
|
2011-04-28 09:07:23 +04:00
|
|
|
cpumask_set_cpu(crashing_cpu, &cpus_in_crash);
|
2010-08-03 00:39:41 +04:00
|
|
|
crash_kexec_wait_realmode(crashing_cpu);
|
|
|
|
|
2010-09-17 02:58:23 +04:00
|
|
|
machine_kexec_mask_interrupts();
|
2008-01-18 07:50:30 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Call registered shutdown routines savely. Swap out
|
|
|
|
* __debugger_fault_handler, and replace on exit.
|
|
|
|
*/
|
|
|
|
old_handler = __debugger_fault_handler;
|
|
|
|
__debugger_fault_handler = handle_fault;
|
2010-05-10 20:25:51 +04:00
|
|
|
crash_shutdown_cpu = smp_processor_id();
|
2008-01-18 07:50:30 +03:00
|
|
|
for (i = 0; crash_shutdown_handles[i]; i++) {
|
|
|
|
if (setjmp(crash_shutdown_buf) == 0) {
|
|
|
|
/*
|
|
|
|
* Insert syncs and delay to ensure
|
|
|
|
* instructions in the dangerous region don't
|
|
|
|
* leak away from this protected region.
|
|
|
|
*/
|
|
|
|
asm volatile("sync; isync");
|
|
|
|
/* dangerous region */
|
|
|
|
crash_shutdown_handles[i]();
|
|
|
|
asm volatile("sync; isync");
|
|
|
|
}
|
2006-04-04 15:43:01 +04:00
|
|
|
}
|
2010-05-10 20:25:51 +04:00
|
|
|
crash_shutdown_cpu = -1;
|
2008-01-18 07:50:30 +03:00
|
|
|
__debugger_fault_handler = old_handler;
|
2006-04-04 15:43:01 +04:00
|
|
|
|
2006-06-24 02:29:34 +04:00
|
|
|
if (ppc_md.kexec_cpu_down)
|
|
|
|
ppc_md.kexec_cpu_down(1, 0);
|
2005-12-04 10:39:43 +03:00
|
|
|
}
|