1 #ifndef _ASM_POWERPC_KEXEC_H
2 #define _ASM_POWERPC_KEXEC_H
5 #if defined(CONFIG_FSL_BOOKE) || defined(CONFIG_44x)
8 * On FSL-BookE we setup a 1:1 mapping which covers the first 2GiB of memory
9 * and therefore we can only deal with memory within this range
11 #define KEXEC_SOURCE_MEMORY_LIMIT (2 * 1024 * 1024 * 1024UL - 1)
12 #define KEXEC_DESTINATION_MEMORY_LIMIT (2 * 1024 * 1024 * 1024UL - 1)
13 #define KEXEC_CONTROL_MEMORY_LIMIT (2 * 1024 * 1024 * 1024UL - 1)
18 * Maximum page that is mapped directly into kernel memory.
19 * XXX: Since we copy virt we can use any page we allocate
21 #define KEXEC_SOURCE_MEMORY_LIMIT (-1UL)
24 * Maximum address we can reach in physical address mode.
25 * XXX: I want to allow initrd in highmem. Otherwise set to rmo on LPAR.
27 #define KEXEC_DESTINATION_MEMORY_LIMIT (-1UL)
29 /* Maximum address we can use for the control code buffer */
31 #define KEXEC_CONTROL_MEMORY_LIMIT (-1UL)
33 /* TASK_SIZE, probably left over from use_mm ?? */
34 #define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
38 #define KEXEC_CONTROL_PAGE_SIZE 4096
40 /* The native architecture */
42 #define KEXEC_ARCH KEXEC_ARCH_PPC64
44 #define KEXEC_ARCH KEXEC_ARCH_PPC
47 #define KEXEC_STATE_NONE 0
48 #define KEXEC_STATE_IRQS_OFF 1
49 #define KEXEC_STATE_REAL_MODE 2
52 #include <linux/cpumask.h>
55 typedef void (*crash_shutdown_t
)(void);
60 * This function is responsible for capturing register states if coming
61 * via panic or invoking dump using sysrq-trigger.
63 static inline void crash_setup_regs(struct pt_regs
*newregs
,
64 struct pt_regs
*oldregs
)
67 memcpy(newregs
, oldregs
, sizeof(*newregs
));
69 ppc_save_regs(newregs
);
72 extern void kexec_smp_wait(void); /* get and clear naca physid, wait for
73 master to copy new code to 0 */
74 extern int crashing_cpu
;
75 extern void crash_send_ipi(void (*crash_ipi_callback
)(struct pt_regs
*));
76 extern cpumask_t cpus_in_sr
;
77 static inline int kexec_sr_activated(int cpu
)
79 return cpumask_test_cpu(cpu
, &cpus_in_sr
);
84 extern void default_machine_kexec(struct kimage
*image
);
85 extern int default_machine_kexec_prepare(struct kimage
*image
);
86 extern void default_machine_crash_shutdown(struct pt_regs
*regs
);
87 extern int crash_shutdown_register(crash_shutdown_t handler
);
88 extern int crash_shutdown_unregister(crash_shutdown_t handler
);
90 extern void machine_kexec_simple(struct kimage
*image
);
91 extern void crash_kexec_secondary(struct pt_regs
*regs
);
92 extern int overlaps_crashkernel(unsigned long start
, unsigned long size
);
93 extern void reserve_crashkernel(void);
94 extern void machine_kexec_mask_interrupts(void);
96 #else /* !CONFIG_KEXEC */
97 static inline int kexec_sr_activated(int cpu
) { return 0; }
98 static inline void crash_kexec_secondary(struct pt_regs
*regs
) { }
100 static inline int overlaps_crashkernel(unsigned long start
, unsigned long size
)
105 static inline void reserve_crashkernel(void) { ; }
107 static inline int crash_shutdown_register(crash_shutdown_t handler
)
112 static inline int crash_shutdown_unregister(crash_shutdown_t handler
)
117 #endif /* CONFIG_KEXEC */
118 #endif /* ! __ASSEMBLY__ */
119 #endif /* __KERNEL__ */
120 #endif /* _ASM_POWERPC_KEXEC_H */