Merge tag 'backport/v3.14.24-ltsi-rc1/phy-rcar-gen2-usb-to-v3.15' into backport/v3...
[platform/adaptation/renesas_rcar/renesas_kernel.git] / include / linux / crash_dump.h
1 #ifndef LINUX_CRASH_DUMP_H
2 #define LINUX_CRASH_DUMP_H
3
4 #ifdef CONFIG_CRASH_DUMP
5 #include <linux/kexec.h>
6 #include <linux/proc_fs.h>
7 #include <linux/elf.h>
8
9 #include <asm/pgtable.h> /* for pgprot_t */
10
11 #define ELFCORE_ADDR_MAX        (-1ULL)
12 #define ELFCORE_ADDR_ERR        (-2ULL)
13
14 extern unsigned long long elfcorehdr_addr;
15 extern unsigned long long elfcorehdr_size;
16
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);
24
25 extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
26                                                 unsigned long, int);
27
28 /* Architecture code defines this if there are other possible ELF
29  * machine types, e.g. on bi-arch capable hardware. */
30 #ifndef vmcore_elf_check_arch_cross
31 #define vmcore_elf_check_arch_cross(x) 0
32 #endif
33
34 /*
35  * Architecture code can redefine this if there are any special checks
36  * needed for 64-bit ELF vmcores. In case of 32-bit only architecture,
37  * this can be set to zero.
38  */
39 #ifndef vmcore_elf64_check_arch
40 #define vmcore_elf64_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
41 #endif
42
43 /*
44  * is_kdump_kernel() checks whether this kernel is booting after a panic of
45  * previous kernel or not. This is determined by checking if previous kernel
46  * has passed the elf core header address on command line.
47  *
48  * This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will
49  * return 1 if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic of
50  * previous kernel.
51  */
52
53 static inline int is_kdump_kernel(void)
54 {
55         return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0;
56 }
57
58 /* is_vmcore_usable() checks if the kernel is booting after a panic and
59  * the vmcore region is usable.
60  *
61  * This makes use of the fact that due to alignment -2ULL is not
62  * a valid pointer, much in the vain of IS_ERR(), except
63  * dealing directly with an unsigned long long rather than a pointer.
64  */
65
66 static inline int is_vmcore_usable(void)
67 {
68         return is_kdump_kernel() && elfcorehdr_addr != ELFCORE_ADDR_ERR ? 1 : 0;
69 }
70
71 /* vmcore_unusable() marks the vmcore as unusable,
72  * without disturbing the logic of is_kdump_kernel()
73  */
74
75 static inline void vmcore_unusable(void)
76 {
77         if (is_kdump_kernel())
78                 elfcorehdr_addr = ELFCORE_ADDR_ERR;
79 }
80
81 #define HAVE_OLDMEM_PFN_IS_RAM 1
82 extern int register_oldmem_pfn_is_ram(int (*fn)(unsigned long pfn));
83 extern void unregister_oldmem_pfn_is_ram(void);
84
85 #else /* !CONFIG_CRASH_DUMP */
86 static inline int is_kdump_kernel(void) { return 0; }
87 #endif /* CONFIG_CRASH_DUMP */
88
89 extern unsigned long saved_max_pfn;
90 #endif /* LINUX_CRASHDUMP_H */