xref: /openbmc/qemu/hw/s390x/ipl.h (revision 42fc5eae91bb9ec08b816d33d43cc08f96d1b683)
1 /*
2  * s390 IPL device
3  *
4  * Copyright 2015, 2020 IBM Corp.
5  * Author(s): Zhang Fan <bjfanzh@cn.ibm.com>
6  * Janosch Frank <frankja@linux.ibm.com>
7  *
8  * This work is licensed under the terms of the GNU GPL, version 2 or (at
9  * your option) any later version. See the COPYING file in the top-level
10  * directory.
11  */
12 
13 #ifndef HW_S390_IPL_H
14 #define HW_S390_IPL_H
15 
16 #include "cpu.h"
17 #include "hw/qdev-core.h"
18 
19 struct IPLBlockPVComp {
20     uint64_t tweak_pref;
21     uint64_t addr;
22     uint64_t size;
23 } QEMU_PACKED;
24 typedef struct IPLBlockPVComp IPLBlockPVComp;
25 
26 struct IPLBlockPV {
27     uint8_t  reserved18[87];    /* 0x18 */
28     uint8_t  version;           /* 0x6f */
29     uint32_t reserved70;        /* 0x70 */
30     uint32_t num_comp;          /* 0x74 */
31     uint64_t pv_header_addr;    /* 0x78 */
32     uint64_t pv_header_len;     /* 0x80 */
33     struct IPLBlockPVComp components[];
34 } QEMU_PACKED;
35 typedef struct IPLBlockPV IPLBlockPV;
36 
37 struct IplBlockCcw {
38     uint8_t  reserved0[85];
39     uint8_t  ssid;
40     uint16_t devno;
41     uint8_t  vm_flags;
42     uint8_t  reserved3[3];
43     uint32_t vm_parm_len;
44     uint8_t  nss_name[8];
45     uint8_t  vm_parm[64];
46     uint8_t  reserved4[8];
47 } QEMU_PACKED;
48 typedef struct IplBlockCcw IplBlockCcw;
49 
50 struct IplBlockFcp {
51     uint8_t  reserved1[305 - 1];
52     uint8_t  opt;
53     uint8_t  reserved2[3];
54     uint16_t reserved3;
55     uint16_t devno;
56     uint8_t  reserved4[4];
57     uint64_t wwpn;
58     uint64_t lun;
59     uint32_t bootprog;
60     uint8_t  reserved5[12];
61     uint64_t br_lba;
62     uint32_t scp_data_len;
63     uint8_t  reserved6[260];
64     uint8_t  scp_data[];
65 } QEMU_PACKED;
66 typedef struct IplBlockFcp IplBlockFcp;
67 
68 struct IplBlockQemuScsi {
69     uint32_t lun;
70     uint16_t target;
71     uint16_t channel;
72     uint8_t  reserved0[77];
73     uint8_t  ssid;
74     uint16_t devno;
75 } QEMU_PACKED;
76 typedef struct IplBlockQemuScsi IplBlockQemuScsi;
77 
78 #define DIAG308_FLAGS_LP_VALID 0x80
79 
80 union IplParameterBlock {
81     struct {
82         uint32_t len;
83         uint8_t  reserved0[3];
84         uint8_t  version;
85         uint32_t blk0_len;
86         uint8_t  pbt;
87         uint8_t  flags;
88         uint16_t reserved01;
89         uint8_t  loadparm[8];
90         union {
91             IplBlockCcw ccw;
92             IplBlockFcp fcp;
93             IPLBlockPV pv;
94             IplBlockQemuScsi scsi;
95         };
96     } QEMU_PACKED;
97     struct {
98         uint8_t  reserved1[110];
99         uint16_t devno;
100         uint8_t  reserved2[88];
101         uint8_t  reserved_ext[4096 - 200];
102     } QEMU_PACKED;
103 } QEMU_PACKED;
104 typedef union IplParameterBlock IplParameterBlock;
105 
106 int s390_ipl_set_loadparm(uint8_t *loadparm);
107 void s390_ipl_update_diag308(IplParameterBlock *iplb);
108 int s390_ipl_prepare_pv_header(void);
109 int s390_ipl_pv_unpack(void);
110 void s390_ipl_prepare_cpu(S390CPU *cpu);
111 IplParameterBlock *s390_ipl_get_iplb(void);
112 IplParameterBlock *s390_ipl_get_iplb_pv(void);
113 
114 enum s390_reset {
115     /* default is a reset not triggered by a CPU e.g. issued by QMP */
116     S390_RESET_EXTERNAL = 0,
117     S390_RESET_REIPL,
118     S390_RESET_MODIFIED_CLEAR,
119     S390_RESET_LOAD_NORMAL,
120     S390_RESET_PV,
121 };
122 void s390_ipl_reset_request(CPUState *cs, enum s390_reset reset_type);
123 void s390_ipl_get_reset_request(CPUState **cs, enum s390_reset *reset_type);
124 void s390_ipl_clear_reset_request(void);
125 
126 #define QIPL_ADDRESS  0xcc
127 
128 /* Boot Menu flags */
129 #define QIPL_FLAG_BM_OPTS_CMD   0x80
130 #define QIPL_FLAG_BM_OPTS_ZIPL  0x40
131 
132 /*
133  * The QEMU IPL Parameters will be stored at absolute address
134  * 204 (0xcc) which means it is 32-bit word aligned but not
135  * double-word aligned.
136  * Placement of data fields in this area must account for
137  * their alignment needs. E.g., netboot_start_address must
138  * have an offset of 4 + n * 8 bytes within the struct in order
139  * to keep it double-word aligned.
140  * The total size of the struct must never exceed 28 bytes.
141  * This definition must be kept in sync with the defininition
142  * in pc-bios/s390-ccw/iplb.h.
143  */
144 struct QemuIplParameters {
145     uint8_t  qipl_flags;
146     uint8_t  reserved1[3];
147     uint64_t netboot_start_addr;
148     uint32_t boot_menu_timeout;
149     uint8_t  reserved2[12];
150 } QEMU_PACKED;
151 typedef struct QemuIplParameters QemuIplParameters;
152 
153 #define TYPE_S390_IPL "s390-ipl"
154 #define S390_IPL(obj) OBJECT_CHECK(S390IPLState, (obj), TYPE_S390_IPL)
155 
156 struct S390IPLState {
157     /*< private >*/
158     DeviceState parent_obj;
159     IplParameterBlock iplb;
160     IplParameterBlock iplb_pv;
161     QemuIplParameters qipl;
162     uint64_t start_addr;
163     uint64_t compat_start_addr;
164     uint64_t bios_start_addr;
165     uint64_t compat_bios_start_addr;
166     bool enforce_bios;
167     bool iplb_valid;
168     bool iplb_valid_pv;
169     bool netboot;
170     /* reset related properties don't have to be migrated or reset */
171     enum s390_reset reset_type;
172     int reset_cpu_index;
173 
174     /*< public >*/
175     char *kernel;
176     char *initrd;
177     char *cmdline;
178     char *firmware;
179     char *netboot_fw;
180     uint8_t cssid;
181     uint8_t ssid;
182     uint16_t devno;
183     bool iplbext_migration;
184 };
185 typedef struct S390IPLState S390IPLState;
186 QEMU_BUILD_BUG_MSG(offsetof(S390IPLState, iplb) & 3, "alignment of iplb wrong");
187 
188 #define DIAG_308_RC_OK              0x0001
189 #define DIAG_308_RC_NO_CONF         0x0102
190 #define DIAG_308_RC_INVALID         0x0402
191 #define DIAG_308_RC_NO_PV_CONF      0x0902
192 #define DIAG_308_RC_INVAL_FOR_PV    0x0a02
193 
194 #define DIAG308_RESET_MOD_CLR       0
195 #define DIAG308_RESET_LOAD_NORM     1
196 #define DIAG308_LOAD_CLEAR          3
197 #define DIAG308_LOAD_NORMAL_DUMP    4
198 #define DIAG308_SET                 5
199 #define DIAG308_STORE               6
200 #define DIAG308_PV_SET              8
201 #define DIAG308_PV_STORE            9
202 #define DIAG308_PV_START            10
203 
204 #define S390_IPL_TYPE_FCP 0x00
205 #define S390_IPL_TYPE_CCW 0x02
206 #define S390_IPL_TYPE_PV 0x05
207 #define S390_IPL_TYPE_QEMU_SCSI 0xff
208 
209 #define S390_IPLB_HEADER_LEN 8
210 #define S390_IPLB_MIN_PV_LEN 148
211 #define S390_IPLB_MIN_CCW_LEN 200
212 #define S390_IPLB_MIN_FCP_LEN 384
213 #define S390_IPLB_MIN_QEMU_SCSI_LEN 200
214 
215 static inline bool iplb_valid_len(IplParameterBlock *iplb)
216 {
217     return be32_to_cpu(iplb->len) <= sizeof(IplParameterBlock);
218 }
219 
220 static inline bool ipl_valid_pv_components(IplParameterBlock *iplb)
221 {
222     IPLBlockPV *ipib_pv = &iplb->pv;
223     int i;
224 
225     if (ipib_pv->num_comp == 0) {
226         return false;
227     }
228 
229     for (i = 0; i < ipib_pv->num_comp; i++) {
230         /* Addr must be 4k aligned */
231         if (ipib_pv->components[i].addr & ~TARGET_PAGE_MASK) {
232             return false;
233         }
234 
235         /* Tweak prefix is monotonically increasing with each component */
236         if (i < ipib_pv->num_comp - 1 &&
237             ipib_pv->components[i].tweak_pref >=
238             ipib_pv->components[i + 1].tweak_pref) {
239             return false;
240         }
241     }
242     return true;
243 }
244 
245 static inline bool ipl_valid_pv_header(IplParameterBlock *iplb)
246 {
247         IPLBlockPV *ipib_pv = &iplb->pv;
248 
249         if (ipib_pv->pv_header_len > 2 * TARGET_PAGE_SIZE) {
250             return false;
251         }
252 
253         if (!address_space_access_valid(&address_space_memory,
254                                         ipib_pv->pv_header_addr,
255                                         ipib_pv->pv_header_len,
256                                         false,
257                                         MEMTXATTRS_UNSPECIFIED)) {
258             return false;
259         }
260 
261         return true;
262 }
263 
264 static inline bool iplb_valid_pv(IplParameterBlock *iplb)
265 {
266     if (iplb->pbt != S390_IPL_TYPE_PV ||
267         be32_to_cpu(iplb->len) < S390_IPLB_MIN_PV_LEN) {
268         return false;
269     }
270     if (!ipl_valid_pv_header(iplb)) {
271         return false;
272     }
273     return ipl_valid_pv_components(iplb);
274 }
275 
276 static inline bool iplb_valid(IplParameterBlock *iplb)
277 {
278     switch (iplb->pbt) {
279     case S390_IPL_TYPE_FCP:
280         return be32_to_cpu(iplb->len) >= S390_IPLB_MIN_FCP_LEN;
281     case S390_IPL_TYPE_CCW:
282         return be32_to_cpu(iplb->len) >= S390_IPLB_MIN_CCW_LEN;
283     default:
284         return false;
285     }
286 }
287 
288 #endif
289