4 * Copyright IBM Corp. 2007
7 #ifndef _ASM_S390_IPL_H
8 #define _ASM_S390_IPL_H
10 #include <asm/types.h>
12 #include <asm/setup.h>
14 #define IPL_PARMBLOCK_ORIGIN 0x2000
16 #define IPL_PARM_BLK_FCP_LEN (sizeof(struct ipl_list_hdr) + \
17 sizeof(struct ipl_block_fcp))
19 #define IPL_PARM_BLK0_FCP_LEN (sizeof(struct ipl_block_fcp) + 8)
21 #define IPL_PARM_BLK_CCW_LEN (sizeof(struct ipl_list_hdr) + \
22 sizeof(struct ipl_block_ccw))
24 #define IPL_PARM_BLK0_CCW_LEN (sizeof(struct ipl_block_ccw) + 8)
26 #define IPL_MAX_SUPPORTED_VERSION (0)
28 #define IPL_PARMBLOCK_START ((struct ipl_parameter_block *) \
30 #define IPL_PARMBLOCK_SIZE (IPL_PARMBLOCK_START->hdr.len)
40 } __attribute__((packed));
42 struct ipl_block_fcp {
57 } __attribute__((packed));
59 struct ipl_block_ccw {
68 } __attribute__((packed));
70 struct ipl_parameter_block {
71 struct ipl_list_hdr hdr;
73 struct ipl_block_fcp fcp;
74 struct ipl_block_ccw ccw;
76 } __attribute__((packed));
82 extern u32 dump_prefix_page;
83 extern unsigned int zfcpdump_prefix_array[];
85 extern void do_reipl(void);
86 extern void do_halt(void);
87 extern void do_poff(void);
88 extern void ipl_save_parameters(void);
92 IPL_PARMBLOCK_VALID = 2,
100 IPL_TYPE_FCP_DUMP = 8,
109 struct ccw_dev_id dev_id;
112 struct ccw_dev_id dev_id;
117 char name[NSS_NAME_SIZE + 1];
122 extern struct ipl_info ipl_info;
123 extern void setup_ipl(void);
128 enum diag308_subcode {
136 enum diag308_ipl_type {
137 DIAG308_IPL_TYPE_FCP = 0,
138 DIAG308_IPL_TYPE_CCW = 2,
142 DIAG308_IPL_OPT_IPL = 0x10,
143 DIAG308_IPL_OPT_DUMP = 0x20,
147 DIAG308_FLAGS_LP_VALID = 0x80,
154 extern int diag308(unsigned long subcode, void *addr);
156 #endif /* _ASM_S390_IPL_H */