2005-12-04 02:39:43 -05: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>
|
|
|
|
#include <linux/crash_dump.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <linux/elfcore.h>
|
|
|
|
#include <linux/init.h>
|
2006-04-04 07:43:01 -04:00
|
|
|
#include <linux/irq.h>
|
2005-12-04 02:39:43 -05:00
|
|
|
#include <linux/types.h>
|
2006-06-23 18:29:34 -04:00
|
|
|
#include <linux/irq.h>
|
2005-12-04 02:39:43 -05:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/machdep.h>
|
2006-06-23 18:29:34 -04:00
|
|
|
#include <asm/kexec.h>
|
2005-12-04 02:39:43 -05:00
|
|
|
#include <asm/kdump.h>
|
|
|
|
#include <asm/lmb.h>
|
|
|
|
#include <asm/firmware.h>
|
2006-01-10 22:25:25 -05:00
|
|
|
#include <asm/smp.h>
|
2005-12-04 02:39:43 -05: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-23 18:29:34 -04:00
|
|
|
static cpumask_t cpus_in_crash = CPU_MASK_NONE;
|
2006-07-05 00:39:43 -04:00
|
|
|
cpumask_t cpus_in_sr = CPU_MASK_NONE;
|
2005-12-04 02:39:43 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2006-06-23 18:29:34 -04:00
|
|
|
static atomic_t enter_on_soft_reset = ATOMIC_INIT(0);
|
2005-12-04 02:39:43 -05:00
|
|
|
|
|
|
|
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 02:47:49 -04:00
|
|
|
hard_irq_disable();
|
2006-06-23 18:29:34 -04:00
|
|
|
if (!cpu_isset(cpu, cpus_in_crash))
|
2006-12-06 23:40:41 -05:00
|
|
|
crash_save_cpu(regs, cpu);
|
2006-06-23 18:29:34 -04:00
|
|
|
cpu_set(cpu, cpus_in_crash);
|
2005-12-04 02:39:43 -05:00
|
|
|
|
2006-06-23 18:29:34 -04:00
|
|
|
/*
|
|
|
|
* Entered via soft-reset - could be the kdump
|
|
|
|
* process is invoked using soft-reset or user activated
|
|
|
|
* it if some CPU did not respond to an IPI.
|
|
|
|
* For soft-reset, the secondary CPU can enter this func
|
|
|
|
* twice. 1 - using IPI, and 2. soft-reset.
|
|
|
|
* Tell the kexec CPU that entered via soft-reset and ready
|
|
|
|
* to go down.
|
|
|
|
*/
|
|
|
|
if (cpu_isset(cpu, cpus_in_sr)) {
|
|
|
|
cpu_clear(cpu, cpus_in_sr);
|
|
|
|
atomic_inc(&enter_on_soft_reset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Starting the kdump boot.
|
|
|
|
* This barrier is needed to make sure that all CPUs are stopped.
|
|
|
|
* If not, soft-reset will be invoked to bring other CPUs.
|
|
|
|
*/
|
|
|
|
while (!cpu_isset(crashing_cpu, cpus_in_crash))
|
|
|
|
cpu_relax();
|
|
|
|
|
|
|
|
if (ppc_md.kexec_cpu_down)
|
|
|
|
ppc_md.kexec_cpu_down(1, 1);
|
2006-07-05 00:39:43 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC64
|
2005-12-04 02:39:43 -05:00
|
|
|
kexec_smp_wait();
|
2006-07-05 00:39:43 -04:00
|
|
|
#else
|
|
|
|
for (;;); /* FIXME */
|
|
|
|
#endif
|
|
|
|
|
2005-12-04 02:39:43 -05:00
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
2006-06-23 18:29:34 -04:00
|
|
|
/*
|
|
|
|
* Wait until all CPUs are entered via soft-reset.
|
|
|
|
*/
|
|
|
|
static void crash_soft_reset_check(int cpu)
|
|
|
|
{
|
|
|
|
unsigned int ncpus = num_online_cpus() - 1;/* Excluding the panic cpu */
|
|
|
|
|
|
|
|
cpu_clear(cpu, cpus_in_sr);
|
|
|
|
while (atomic_read(&enter_on_soft_reset) != ncpus)
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void crash_kexec_prepare_cpus(int cpu)
|
2005-12-04 02:39:43 -05:00
|
|
|
{
|
|
|
|
unsigned int msecs;
|
|
|
|
|
2006-06-23 18:29:34 -04:00
|
|
|
unsigned int ncpus = num_online_cpus() - 1;/* Excluding the panic cpu */
|
2005-12-04 02:39:43 -05:00
|
|
|
|
|
|
|
crash_send_ipi(crash_ipi_callback);
|
|
|
|
smp_wmb();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: Until we will have the way to stop other CPUSs reliabally,
|
|
|
|
* the crash CPU will send an IPI and wait for other CPUs to
|
2006-06-23 18:29:34 -04:00
|
|
|
* respond.
|
2006-02-07 18:47:03 -05:00
|
|
|
* Delay of at least 10 seconds.
|
2005-12-04 02:39:43 -05:00
|
|
|
*/
|
2006-06-23 18:29:34 -04:00
|
|
|
printk(KERN_EMERG "Sending IPI to other cpus...\n");
|
2006-02-07 18:47:03 -05:00
|
|
|
msecs = 10000;
|
2006-06-23 18:29:34 -04:00
|
|
|
while ((cpus_weight(cpus_in_crash) < ncpus) && (--msecs > 0)) {
|
|
|
|
cpu_relax();
|
2005-12-04 02:39:43 -05:00
|
|
|
mdelay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Would it be better to replace the trap vector here? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: In case if we do not get all CPUs, one possibility: ask the
|
|
|
|
* user to do soft reset such that we get all.
|
2006-06-23 18:29:34 -04:00
|
|
|
* Soft-reset will be used until better mechanism is implemented.
|
|
|
|
*/
|
|
|
|
if (cpus_weight(cpus_in_crash) < ncpus) {
|
|
|
|
printk(KERN_EMERG "done waiting: %d cpu(s) not responding\n",
|
|
|
|
ncpus - cpus_weight(cpus_in_crash));
|
|
|
|
printk(KERN_EMERG "Activate soft-reset to stop other cpu(s)\n");
|
|
|
|
cpus_in_sr = CPU_MASK_NONE;
|
|
|
|
atomic_set(&enter_on_soft_reset, 0);
|
|
|
|
while (cpus_weight(cpus_in_crash) < ncpus)
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Make sure all CPUs are entered via soft-reset if the kdump is
|
|
|
|
* invoked using soft-reset.
|
2005-12-04 02:39:43 -05:00
|
|
|
*/
|
2006-06-23 18:29:34 -04:00
|
|
|
if (cpu_isset(cpu, cpus_in_sr))
|
|
|
|
crash_soft_reset_check(cpu);
|
2005-12-04 02:39:43 -05:00
|
|
|
/* Leave the IPI callback set */
|
|
|
|
}
|
2006-06-23 18:29:34 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function will be called by secondary cpus or by kexec cpu
|
|
|
|
* if soft-reset is activated to stop some CPUs.
|
|
|
|
*/
|
|
|
|
void crash_kexec_secondary(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
unsigned long flags;
|
|
|
|
int msecs = 5;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
|
|
|
/* Wait 5ms if the kexec CPU is not entered yet. */
|
|
|
|
while (crashing_cpu < 0) {
|
|
|
|
if (--msecs < 0) {
|
|
|
|
/*
|
|
|
|
* Either kdump image is not loaded or
|
|
|
|
* kdump process is not started - Probably xmon
|
|
|
|
* exited using 'x'(exit and recover) or
|
|
|
|
* kexec_should_crash() failed for all running tasks.
|
|
|
|
*/
|
|
|
|
cpu_clear(cpu, cpus_in_sr);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mdelay(1);
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
if (cpu == crashing_cpu) {
|
|
|
|
/*
|
|
|
|
* Panic CPU will enter this func only via soft-reset.
|
|
|
|
* Wait until all secondary CPUs entered and
|
|
|
|
* then start kexec boot.
|
|
|
|
*/
|
|
|
|
crash_soft_reset_check(cpu);
|
|
|
|
cpu_set(crashing_cpu, cpus_in_crash);
|
|
|
|
if (ppc_md.kexec_cpu_down)
|
|
|
|
ppc_md.kexec_cpu_down(1, 0);
|
|
|
|
machine_kexec(kexec_crash_image);
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
crash_ipi_callback(regs);
|
|
|
|
}
|
|
|
|
|
2005-12-04 02:39:43 -05:00
|
|
|
#else
|
2006-06-23 18:29:34 -04:00
|
|
|
static void crash_kexec_prepare_cpus(int cpu)
|
2005-12-04 02:39:43 -05: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 00:39:43 -04:00
|
|
|
#ifdef CONFIG_PPC64
|
2005-12-04 02:39:43 -05:00
|
|
|
smp_release_cpus();
|
2006-07-05 00:39:43 -04:00
|
|
|
#else
|
|
|
|
/* FIXME */
|
|
|
|
#endif
|
2005-12-04 02:39:43 -05:00
|
|
|
}
|
|
|
|
|
2006-06-23 18:29:34 -04:00
|
|
|
void crash_kexec_secondary(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
cpus_in_sr = CPU_MASK_NONE;
|
|
|
|
}
|
2005-12-04 02:39:43 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void default_machine_crash_shutdown(struct pt_regs *regs)
|
|
|
|
{
|
2006-04-04 07:43:01 -04:00
|
|
|
unsigned int irq;
|
|
|
|
|
2005-12-04 02:39:43 -05:00
|
|
|
/*
|
|
|
|
* This function is only called after the system
|
2006-06-26 12:30:00 -04:00
|
|
|
* has panicked or is otherwise in a critical state.
|
2005-12-04 02:39:43 -05: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 02:47:49 -04:00
|
|
|
hard_irq_disable();
|
2005-12-04 02:39:43 -05:00
|
|
|
|
2006-04-04 07:43:01 -04:00
|
|
|
for_each_irq(irq) {
|
2006-06-29 05:24:38 -04:00
|
|
|
struct irq_desc *desc = irq_desc + irq;
|
2006-04-04 07:43:01 -04:00
|
|
|
|
|
|
|
if (desc->status & IRQ_INPROGRESS)
|
2006-09-12 08:18:21 -04:00
|
|
|
desc->chip->eoi(irq);
|
2006-04-04 07:43:01 -04:00
|
|
|
|
|
|
|
if (!(desc->status & IRQ_DISABLED))
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 05:24:36 -04:00
|
|
|
desc->chip->disable(irq);
|
2006-04-04 07:43:01 -04:00
|
|
|
}
|
|
|
|
|
2005-12-04 02:39:43 -05: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();
|
2006-12-06 23:40:41 -05:00
|
|
|
crash_save_cpu(regs, crashing_cpu);
|
2006-06-23 18:29:34 -04:00
|
|
|
crash_kexec_prepare_cpus(crashing_cpu);
|
|
|
|
cpu_set(crashing_cpu, cpus_in_crash);
|
|
|
|
if (ppc_md.kexec_cpu_down)
|
|
|
|
ppc_md.kexec_cpu_down(1, 0);
|
2005-12-04 02:39:43 -05:00
|
|
|
}
|