2 * OS info memory interface
4 * Copyright IBM Corp. 2012
5 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
7 #ifndef _ASM_S390_OS_INFO_H
8 #define _ASM_S390_OS_INFO_H
10 #define OS_INFO_VERSION_MAJOR 1
11 #define OS_INFO_VERSION_MINOR 1
12 #define OS_INFO_MAGIC 0x4f53494e464f535aULL /* OSINFOSZ */
14 #define OS_INFO_VMCOREINFO 0
15 #define OS_INFO_REIPL_BLOCK 1
17 struct os_info_entry
{
30 struct os_info_entry entry
[2];
34 void os_info_init(void);
35 void os_info_entry_add(int nr
, void *ptr
, u64 len
);
36 void os_info_crashkernel_add(unsigned long base
, unsigned long size
);
37 u32
os_info_csum(struct os_info
*os_info
);
39 #ifdef CONFIG_CRASH_DUMP
40 void *os_info_old_entry(int nr
, unsigned long *size
);
41 int copy_from_oldmem(void *dest
, void *src
, size_t count
);
43 static inline void *os_info_old_entry(int nr
, unsigned long *size
)
49 #endif /* _ASM_S390_OS_INFO_H */