411ed32257
s390 machines provide hardware support for creating Linux dumps on SCSI disks. For creating a dump a special purpose dump Linux is used. The first 32 MB of memory are saved by the hardware before the dump Linux is booted. Via an SCLP interface, the saved memory can be accessed from Linux. This patch exports memory and registers of the crashed Linux to userspace via a debugfs file. For more information refer to Documentation/s390/zfcpdump.txt, which is included in this patch. Signed-off-by: Michael Holzheu <holzheu@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/*
|
|
* include/asm-s390/sclp.h
|
|
*
|
|
* Copyright IBM Corp. 2007
|
|
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
|
|
*/
|
|
|
|
#ifndef _ASM_S390_SCLP_H
|
|
#define _ASM_S390_SCLP_H
|
|
|
|
#include <linux/types.h>
|
|
#include <asm/chpid.h>
|
|
|
|
struct sccb_header {
|
|
u16 length;
|
|
u8 function_code;
|
|
u8 control_mask[3];
|
|
u16 response_code;
|
|
} __attribute__((packed));
|
|
|
|
#define LOADPARM_LEN 8
|
|
|
|
struct sclp_readinfo_sccb {
|
|
struct sccb_header header; /* 0-7 */
|
|
u16 rnmax; /* 8-9 */
|
|
u8 rnsize; /* 10 */
|
|
u8 _reserved0[24 - 11]; /* 11-23 */
|
|
u8 loadparm[LOADPARM_LEN]; /* 24-31 */
|
|
u8 _reserved1[91 - 32]; /* 32-90 */
|
|
u8 flags; /* 91 */
|
|
u8 _reserved2[100 - 92]; /* 92-99 */
|
|
u32 rnsize2; /* 100-103 */
|
|
u64 rnmax2; /* 104-111 */
|
|
u8 _reserved3[4096 - 112]; /* 112-4095 */
|
|
} __attribute__((packed, aligned(4096)));
|
|
|
|
#define SCLP_CHP_INFO_MASK_SIZE 32
|
|
|
|
struct sclp_chp_info {
|
|
u8 recognized[SCLP_CHP_INFO_MASK_SIZE];
|
|
u8 standby[SCLP_CHP_INFO_MASK_SIZE];
|
|
u8 configured[SCLP_CHP_INFO_MASK_SIZE];
|
|
};
|
|
|
|
extern struct sclp_readinfo_sccb s390_readinfo_sccb;
|
|
extern void sclp_readinfo_early(void);
|
|
extern int sclp_sdias_blk_count(void);
|
|
extern int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
|
|
extern int sclp_chp_configure(struct chp_id chpid);
|
|
extern int sclp_chp_deconfigure(struct chp_id chpid);
|
|
extern int sclp_chp_read_info(struct sclp_chp_info *info);
|
|
|
|
#endif /* _ASM_S390_SCLP_H */
|