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 #define DIAG308_VMPARM_SIZE 64
61 struct ipl_block_ccw
{
70 u8 vm_parm
[DIAG308_VMPARM_SIZE
];
72 } __attribute__((packed
));
74 struct ipl_parameter_block
{
75 struct ipl_list_hdr hdr
;
77 struct ipl_block_fcp fcp
;
78 struct ipl_block_ccw ccw
;
80 } __attribute__((packed
,aligned(4096)));
86 extern u32 dump_prefix_page
;
87 extern unsigned int zfcpdump_prefix_array
[];
89 extern void do_reipl(void);
90 extern void do_halt(void);
91 extern void do_poff(void);
92 extern void ipl_save_parameters(void);
93 extern void ipl_update_parameters(void);
94 extern void get_ipl_vmparm(char *);
98 IPL_PARMBLOCK_VALID
= 2,
103 IPL_TYPE_UNKNOWN
= 1,
106 IPL_TYPE_FCP_DUMP
= 8,
115 struct ccw_dev_id dev_id
;
118 struct ccw_dev_id dev_id
;
123 char name
[NSS_NAME_SIZE
+ 1];
128 extern struct ipl_info ipl_info
;
129 extern void setup_ipl(void);
134 enum diag308_subcode
{
142 enum diag308_ipl_type
{
143 DIAG308_IPL_TYPE_FCP
= 0,
144 DIAG308_IPL_TYPE_CCW
= 2,
148 DIAG308_IPL_OPT_IPL
= 0x10,
149 DIAG308_IPL_OPT_DUMP
= 0x20,
153 DIAG308_FLAGS_LP_VALID
= 0x80,
156 enum diag308_vm_flags
{
157 DIAG308_VM_FLAGS_NSS_VALID
= 0x80,
158 DIAG308_VM_FLAGS_VP_VALID
= 0x40,
162 DIAG308_RC_OK
= 0x0001,
163 DIAG308_RC_NOCONFIG
= 0x0102,
166 extern int diag308(unsigned long subcode
, void *addr
);
168 #endif /* _ASM_S390_IPL_H */