Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 1 | #ifndef LINUX_CRASH_DUMP_H |
| 2 | #define LINUX_CRASH_DUMP_H |
| 3 | |
| 4 | #ifdef CONFIG_CRASH_DUMP |
| 5 | #include <linux/kexec.h> |
Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 6 | #include <linux/proc_fs.h> |
Fabio Estevam | 1f536b9 | 2012-01-12 17:20:20 -0800 | [diff] [blame] | 7 | #include <linux/elf.h> |
Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 8 | |
Qais Yousef | 5a610fc | 2014-01-14 17:56:41 -0800 | [diff] [blame] | 9 | #include <asm/pgtable.h> /* for pgprot_t */ |
| 10 | |
Vivek Goyal | 666bfdd | 2005-06-25 14:58:21 -0700 | [diff] [blame] | 11 | #define ELFCORE_ADDR_MAX (-1ULL) |
Simon Horman | 85a0ee3 | 2008-10-18 20:28:29 -0700 | [diff] [blame] | 12 | #define ELFCORE_ADDR_ERR (-2ULL) |
Ingo Molnar | 36ac261 | 2008-07-26 11:22:33 +0200 | [diff] [blame] | 13 | |
Vivek Goyal | 2030eae | 2005-06-25 14:58:20 -0700 | [diff] [blame] | 14 | extern unsigned long long elfcorehdr_addr; |
Michael Holzheu | d3bf3795 | 2011-10-30 15:16:37 +0100 | [diff] [blame] | 15 | extern unsigned long long elfcorehdr_size; |
Ingo Molnar | 36ac261 | 2008-07-26 11:22:33 +0200 | [diff] [blame] | 16 | |
Bjorn Helgaas | 5ab03ac | 2014-10-13 18:59:41 -0600 | [diff] [blame] | 17 | extern int elfcorehdr_alloc(unsigned long long *addr, unsigned long long *size); |
| 18 | extern void elfcorehdr_free(unsigned long long addr); |
| 19 | extern ssize_t elfcorehdr_read(char *buf, size_t count, u64 *ppos); |
| 20 | extern ssize_t elfcorehdr_read_notes(char *buf, size_t count, u64 *ppos); |
| 21 | extern int remap_oldmem_pfn_range(struct vm_area_struct *vma, |
| 22 | unsigned long from, unsigned long pfn, |
| 23 | unsigned long size, pgprot_t prot); |
Michael Holzheu | be8a8d0 | 2013-09-11 14:24:49 -0700 | [diff] [blame] | 24 | |
Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 25 | extern ssize_t copy_oldmem_page(unsigned long, char *, size_t, |
| 26 | unsigned long, int); |
Rashika Kheria | 82e0703 | 2014-04-07 15:38:50 -0700 | [diff] [blame] | 27 | void vmcore_cleanup(void); |
Vivek Goyal | 666bfdd | 2005-06-25 14:58:21 -0700 | [diff] [blame] | 28 | |
Ian Campbell | 79e0301 | 2007-05-02 19:27:09 +0200 | [diff] [blame] | 29 | /* Architecture code defines this if there are other possible ELF |
| 30 | * machine types, e.g. on bi-arch capable hardware. */ |
| 31 | #ifndef vmcore_elf_check_arch_cross |
| 32 | #define vmcore_elf_check_arch_cross(x) 0 |
| 33 | #endif |
| 34 | |
Mika Westerberg | 9833c39 | 2010-11-19 09:29:24 +0100 | [diff] [blame] | 35 | /* |
| 36 | * Architecture code can redefine this if there are any special checks |
| 37 | * needed for 64-bit ELF vmcores. In case of 32-bit only architecture, |
| 38 | * this can be set to zero. |
| 39 | */ |
| 40 | #ifndef vmcore_elf64_check_arch |
| 41 | #define vmcore_elf64_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x)) |
| 42 | #endif |
Ian Campbell | 79e0301 | 2007-05-02 19:27:09 +0200 | [diff] [blame] | 43 | |
Vivek Goyal | 57cac4d | 2008-10-18 20:28:25 -0700 | [diff] [blame] | 44 | /* |
| 45 | * is_kdump_kernel() checks whether this kernel is booting after a panic of |
| 46 | * previous kernel or not. This is determined by checking if previous kernel |
| 47 | * has passed the elf core header address on command line. |
| 48 | * |
| 49 | * This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will |
| 50 | * return 1 if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic of |
| 51 | * previous kernel. |
| 52 | */ |
| 53 | |
Chandru | 95b68de | 2008-07-25 01:47:55 -0700 | [diff] [blame] | 54 | static inline int is_kdump_kernel(void) |
| 55 | { |
| 56 | return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0; |
| 57 | } |
Simon Horman | 85a0ee3 | 2008-10-18 20:28:29 -0700 | [diff] [blame] | 58 | |
| 59 | /* is_vmcore_usable() checks if the kernel is booting after a panic and |
| 60 | * the vmcore region is usable. |
| 61 | * |
| 62 | * This makes use of the fact that due to alignment -2ULL is not |
| 63 | * a valid pointer, much in the vain of IS_ERR(), except |
| 64 | * dealing directly with an unsigned long long rather than a pointer. |
| 65 | */ |
| 66 | |
| 67 | static inline int is_vmcore_usable(void) |
| 68 | { |
| 69 | return is_kdump_kernel() && elfcorehdr_addr != ELFCORE_ADDR_ERR ? 1 : 0; |
| 70 | } |
| 71 | |
| 72 | /* vmcore_unusable() marks the vmcore as unusable, |
| 73 | * without disturbing the logic of is_kdump_kernel() |
| 74 | */ |
| 75 | |
| 76 | static inline void vmcore_unusable(void) |
| 77 | { |
| 78 | if (is_kdump_kernel()) |
| 79 | elfcorehdr_addr = ELFCORE_ADDR_ERR; |
| 80 | } |
Olaf Hering | 997c136 | 2011-05-26 16:25:54 -0700 | [diff] [blame] | 81 | |
| 82 | #define HAVE_OLDMEM_PFN_IS_RAM 1 |
| 83 | extern int register_oldmem_pfn_is_ram(int (*fn)(unsigned long pfn)); |
| 84 | extern void unregister_oldmem_pfn_is_ram(void); |
| 85 | |
Chandru | 95b68de | 2008-07-25 01:47:55 -0700 | [diff] [blame] | 86 | #else /* !CONFIG_CRASH_DUMP */ |
| 87 | static inline int is_kdump_kernel(void) { return 0; } |
Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 88 | #endif /* CONFIG_CRASH_DUMP */ |
Chandru | 95b68de | 2008-07-25 01:47:55 -0700 | [diff] [blame] | 89 | |
| 90 | extern unsigned long saved_max_pfn; |
Vivek Goyal | 60e64d4 | 2005-06-25 14:58:19 -0700 | [diff] [blame] | 91 | #endif /* LINUX_CRASHDUMP_H */ |