1 #ifndef _ASM_POWERPC_KEXEC_H
2 #define _ASM_POWERPC_KEXEC_H
6 * Maximum page that is mapped directly into kernel memory.
7 * XXX: Since we copy virt we can use any page we allocate
9 #define KEXEC_SOURCE_MEMORY_LIMIT (-1UL)
12 * Maximum address we can reach in physical address mode.
13 * XXX: I want to allow initrd in highmem. Otherwise set to rmo on LPAR.
15 #define KEXEC_DESTINATION_MEMORY_LIMIT (-1UL)
17 /* Maximum address we can use for the control code buffer */
19 #define KEXEC_CONTROL_MEMORY_LIMIT (-1UL)
21 /* TASK_SIZE, probably left over from use_mm ?? */
22 #define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
25 #define KEXEC_CONTROL_CODE_SIZE 4096
27 /* The native architecture */
29 #define KEXEC_ARCH KEXEC_ARCH_PPC64
31 #define KEXEC_ARCH KEXEC_ARCH_PPC
35 #include <linux/cpumask.h>
37 typedef void (*crash_shutdown_t)(void);
43 * This function is responsible for capturing register states if coming
44 * via panic or invoking dump using sysrq-trigger.
46 static inline void crash_setup_regs(struct pt_regs *newregs,
47 struct pt_regs *oldregs)
50 memcpy(newregs, oldregs, sizeof(*newregs));
52 /* FIXME Merge this with xmon_save_regs ?? */
53 unsigned long tmp1, tmp2;
54 __asm__ __volatile__ (
99 : "=&r" (tmp1), "=&r" (tmp2)
106 * Provide a dummy definition to avoid build failures. Will remain
107 * empty till crash dump support is enabled.
109 static inline void crash_setup_regs(struct pt_regs *newregs,
110 struct pt_regs *oldregs) { }
111 #endif /* !__powerpc64 __ */
113 extern void kexec_smp_wait(void); /* get and clear naca physid, wait for
114 master to copy new code to 0 */
115 extern int crashing_cpu;
116 extern void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *));
117 extern cpumask_t cpus_in_sr;
118 static inline int kexec_sr_activated(int cpu)
120 return cpu_isset(cpu,cpus_in_sr);
125 extern void default_machine_kexec(struct kimage *image);
126 extern int default_machine_kexec_prepare(struct kimage *image);
127 extern void default_machine_crash_shutdown(struct pt_regs *regs);
128 extern int crash_shutdown_register(crash_shutdown_t handler);
129 extern int crash_shutdown_unregister(crash_shutdown_t handler);
131 extern void machine_kexec_simple(struct kimage *image);
132 extern void crash_kexec_secondary(struct pt_regs *regs);
133 extern int overlaps_crashkernel(unsigned long start, unsigned long size);
134 extern void reserve_crashkernel(void);
136 #else /* !CONFIG_KEXEC */
137 static inline int kexec_sr_activated(int cpu) { return 0; }
138 static inline void crash_kexec_secondary(struct pt_regs *regs) { }
140 static inline int overlaps_crashkernel(unsigned long start, unsigned long size)
145 static inline void reserve_crashkernel(void) { ; }
147 static inline int crash_shutdown_register(crash_shutdown_t handler)
152 static inline int crash_shutdown_unregister(crash_shutdown_t handler)
157 #endif /* CONFIG_KEXEC */
158 #endif /* ! __ASSEMBLY__ */
159 #endif /* __KERNEL__ */
160 #endif /* _ASM_POWERPC_KEXEC_H */