2005-11-03 04:35:45 +00:00
|
|
|
#ifndef _ASM_POWERPC_KEXEC_H
|
|
|
|
#define _ASM_POWERPC_KEXEC_H
|
2005-12-16 21:43:46 +00:00
|
|
|
#ifdef __KERNEL__
|
2005-11-03 04:35:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum page that is mapped directly into kernel memory.
|
|
|
|
* XXX: Since we copy virt we can use any page we allocate
|
|
|
|
*/
|
|
|
|
#define KEXEC_SOURCE_MEMORY_LIMIT (-1UL)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum address we can reach in physical address mode.
|
|
|
|
* XXX: I want to allow initrd in highmem. Otherwise set to rmo on LPAR.
|
|
|
|
*/
|
|
|
|
#define KEXEC_DESTINATION_MEMORY_LIMIT (-1UL)
|
|
|
|
|
|
|
|
/* Maximum address we can use for the control code buffer */
|
|
|
|
#ifdef __powerpc64__
|
|
|
|
#define KEXEC_CONTROL_MEMORY_LIMIT (-1UL)
|
|
|
|
#else
|
|
|
|
/* TASK_SIZE, probably left over from use_mm ?? */
|
|
|
|
#define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
|
|
|
|
#endif
|
|
|
|
|
2008-08-15 07:40:22 +00:00
|
|
|
#define KEXEC_CONTROL_PAGE_SIZE 4096
|
2005-11-03 04:35:45 +00:00
|
|
|
|
|
|
|
/* The native architecture */
|
|
|
|
#ifdef __powerpc64__
|
|
|
|
#define KEXEC_ARCH KEXEC_ARCH_PPC64
|
|
|
|
#else
|
|
|
|
#define KEXEC_ARCH KEXEC_ARCH_PPC
|
|
|
|
#endif
|
|
|
|
|
2010-05-13 19:40:11 +00:00
|
|
|
#define KEXEC_STATE_NONE 0
|
|
|
|
#define KEXEC_STATE_IRQS_OFF 1
|
|
|
|
#define KEXEC_STATE_REAL_MODE 2
|
|
|
|
|
2006-05-17 08:00:46 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2006-07-05 04:39:43 +00:00
|
|
|
#include <linux/cpumask.h>
|
2008-12-17 10:09:01 +00:00
|
|
|
#include <asm/reg.h>
|
2006-05-17 08:00:46 +00:00
|
|
|
|
2008-06-12 09:14:34 +00:00
|
|
|
typedef void (*crash_shutdown_t)(void);
|
|
|
|
|
2005-12-04 07:39:43 +00:00
|
|
|
#ifdef CONFIG_KEXEC
|
|
|
|
|
2006-01-14 03:15:36 +00:00
|
|
|
/*
|
|
|
|
* This function is responsible for capturing register states if coming
|
|
|
|
* via panic or invoking dump using sysrq-trigger.
|
|
|
|
*/
|
|
|
|
static inline void crash_setup_regs(struct pt_regs *newregs,
|
|
|
|
struct pt_regs *oldregs)
|
|
|
|
{
|
|
|
|
if (oldregs)
|
|
|
|
memcpy(newregs, oldregs, sizeof(*newregs));
|
2008-12-17 10:09:01 +00:00
|
|
|
else
|
|
|
|
ppc_save_regs(newregs);
|
|
|
|
}
|
2006-01-14 03:15:36 +00:00
|
|
|
|
2005-11-03 04:35:45 +00:00
|
|
|
extern void kexec_smp_wait(void); /* get and clear naca physid, wait for
|
|
|
|
master to copy new code to 0 */
|
2005-12-04 07:39:43 +00:00
|
|
|
extern int crashing_cpu;
|
|
|
|
extern void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *));
|
2006-06-23 22:29:34 +00:00
|
|
|
extern cpumask_t cpus_in_sr;
|
|
|
|
static inline int kexec_sr_activated(int cpu)
|
|
|
|
{
|
|
|
|
return cpu_isset(cpu,cpus_in_sr);
|
|
|
|
}
|
2005-11-03 04:35:45 +00:00
|
|
|
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 12:35:00 +00:00
|
|
|
struct kimage;
|
2005-12-04 07:39:43 +00:00
|
|
|
struct pt_regs;
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 12:35:00 +00:00
|
|
|
extern void default_machine_kexec(struct kimage *image);
|
|
|
|
extern int default_machine_kexec_prepare(struct kimage *image);
|
2005-12-04 07:39:43 +00:00
|
|
|
extern void default_machine_crash_shutdown(struct pt_regs *regs);
|
2008-01-18 04:50:30 +00:00
|
|
|
extern int crash_shutdown_register(crash_shutdown_t handler);
|
|
|
|
extern int crash_shutdown_unregister(crash_shutdown_t handler);
|
2005-12-04 07:39:43 +00:00
|
|
|
|
2006-02-01 11:05:57 +00:00
|
|
|
extern void machine_kexec_simple(struct kimage *image);
|
2006-06-23 22:29:34 +00:00
|
|
|
extern void crash_kexec_secondary(struct pt_regs *regs);
|
2006-05-17 08:00:46 +00:00
|
|
|
extern int overlaps_crashkernel(unsigned long start, unsigned long size);
|
2006-05-18 01:16:11 +00:00
|
|
|
extern void reserve_crashkernel(void);
|
2006-05-17 08:00:46 +00:00
|
|
|
|
|
|
|
#else /* !CONFIG_KEXEC */
|
2006-06-23 22:29:34 +00:00
|
|
|
static inline int kexec_sr_activated(int cpu) { return 0; }
|
|
|
|
static inline void crash_kexec_secondary(struct pt_regs *regs) { }
|
2006-05-17 08:00:46 +00:00
|
|
|
|
|
|
|
static inline int overlaps_crashkernel(unsigned long start, unsigned long size)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2006-02-01 11:05:57 +00:00
|
|
|
|
2006-05-18 01:16:11 +00:00
|
|
|
static inline void reserve_crashkernel(void) { ; }
|
|
|
|
|
2008-06-12 09:14:34 +00:00
|
|
|
static inline int crash_shutdown_register(crash_shutdown_t handler)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int crash_shutdown_unregister(crash_shutdown_t handler)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-14 03:15:36 +00:00
|
|
|
#endif /* CONFIG_KEXEC */
|
2006-05-17 08:00:46 +00:00
|
|
|
#endif /* ! __ASSEMBLY__ */
|
2005-12-16 21:43:46 +00:00
|
|
|
#endif /* __KERNEL__ */
|
2005-11-03 04:35:45 +00:00
|
|
|
#endif /* _ASM_POWERPC_KEXEC_H */
|