xref: /openbmc/qemu/hw/s390x/ipl.c (revision ab2691b6c7ff360875e0af86ff463278f17786f5)
1 /*
2  * bootloader support
3  *
4  * Copyright IBM, Corp. 2012, 2020
5  *
6  * Authors:
7  *  Christian Borntraeger <borntraeger@de.ibm.com>
8  *  Janosch Frank <frankja@linux.ibm.com>
9  *
10  * This work is licensed under the terms of the GNU GPL, version 2 or (at your
11  * option) any later version.  See the COPYING file in the top-level directory.
12  *
13  */
14 
15 #include "qemu/osdep.h"
16 #include "qemu/datadir.h"
17 #include "qapi/error.h"
18 #include "sysemu/reset.h"
19 #include "sysemu/runstate.h"
20 #include "sysemu/tcg.h"
21 #include "elf.h"
22 #include "hw/loader.h"
23 #include "hw/qdev-properties.h"
24 #include "hw/boards.h"
25 #include "hw/s390x/virtio-ccw.h"
26 #include "hw/s390x/vfio-ccw.h"
27 #include "hw/s390x/css.h"
28 #include "hw/s390x/ebcdic.h"
29 #include "target/s390x/kvm/pv.h"
30 #include "hw/scsi/scsi.h"
31 #include "hw/virtio/virtio-net.h"
32 #include "ipl.h"
33 #include "qemu/error-report.h"
34 #include "qemu/config-file.h"
35 #include "qemu/cutils.h"
36 #include "qemu/option.h"
37 #include "standard-headers/linux/virtio_ids.h"
38 
39 #define KERN_IMAGE_START                0x010000UL
40 #define LINUX_MAGIC_ADDR                0x010008UL
41 #define KERN_PARM_AREA_SIZE_ADDR        0x010430UL
42 #define KERN_PARM_AREA                  0x010480UL
43 #define LEGACY_KERN_PARM_AREA_SIZE      0x000380UL
44 #define INITRD_START                    0x800000UL
45 #define INITRD_PARM_START               0x010408UL
46 #define PARMFILE_START                  0x001000UL
47 #define ZIPL_IMAGE_START                0x009000UL
48 #define BIOS_MAX_SIZE                   0x300000UL
49 #define IPL_PSW_MASK                    (PSW_MASK_32 | PSW_MASK_64)
50 
51 static bool iplb_extended_needed(void *opaque)
52 {
53     S390IPLState *ipl = S390_IPL(object_resolve_path(TYPE_S390_IPL, NULL));
54 
55     return ipl->iplbext_migration;
56 }
57 
58 static const VMStateDescription vmstate_iplb_extended = {
59     .name = "ipl/iplb_extended",
60     .version_id = 0,
61     .minimum_version_id = 0,
62     .needed = iplb_extended_needed,
63     .fields = (const VMStateField[]) {
64         VMSTATE_UINT8_ARRAY(reserved_ext, IplParameterBlock, 4096 - 200),
65         VMSTATE_END_OF_LIST()
66     }
67 };
68 
69 static const VMStateDescription vmstate_iplb = {
70     .name = "ipl/iplb",
71     .version_id = 0,
72     .minimum_version_id = 0,
73     .fields = (const VMStateField[]) {
74         VMSTATE_UINT8_ARRAY(reserved1, IplParameterBlock, 110),
75         VMSTATE_UINT16(devno, IplParameterBlock),
76         VMSTATE_UINT8_ARRAY(reserved2, IplParameterBlock, 88),
77         VMSTATE_END_OF_LIST()
78     },
79     .subsections = (const VMStateDescription * const []) {
80         &vmstate_iplb_extended,
81         NULL
82     }
83 };
84 
85 static const VMStateDescription vmstate_ipl = {
86     .name = "ipl",
87     .version_id = 0,
88     .minimum_version_id = 0,
89     .fields = (const VMStateField[]) {
90         VMSTATE_UINT64(compat_start_addr, S390IPLState),
91         VMSTATE_UINT64(compat_bios_start_addr, S390IPLState),
92         VMSTATE_STRUCT(iplb, S390IPLState, 0, vmstate_iplb, IplParameterBlock),
93         VMSTATE_BOOL(iplb_valid, S390IPLState),
94         VMSTATE_UINT8(cssid, S390IPLState),
95         VMSTATE_UINT8(ssid, S390IPLState),
96         VMSTATE_UINT16(devno, S390IPLState),
97         VMSTATE_END_OF_LIST()
98      }
99 };
100 
101 static S390IPLState *get_ipl_device(void)
102 {
103     return S390_IPL(object_resolve_path_type("", TYPE_S390_IPL, NULL));
104 }
105 
106 static uint64_t bios_translate_addr(void *opaque, uint64_t srcaddr)
107 {
108     uint64_t dstaddr = *(uint64_t *) opaque;
109     /*
110      * Assuming that our s390-ccw.img was linked for starting at address 0,
111      * we can simply add the destination address for the final location
112      */
113     return srcaddr + dstaddr;
114 }
115 
116 static uint64_t get_max_kernel_cmdline_size(void)
117 {
118     uint64_t *size_ptr = rom_ptr(KERN_PARM_AREA_SIZE_ADDR, sizeof(*size_ptr));
119 
120     if (size_ptr) {
121         uint64_t size;
122 
123         size = be64_to_cpu(*size_ptr);
124         if (size) {
125             return size;
126         }
127     }
128     return LEGACY_KERN_PARM_AREA_SIZE;
129 }
130 
131 static void s390_ipl_realize(DeviceState *dev, Error **errp)
132 {
133     MachineState *ms = MACHINE(qdev_get_machine());
134     S390IPLState *ipl = S390_IPL(dev);
135     uint32_t *ipl_psw;
136     uint64_t pentry;
137     char *magic;
138     int kernel_size;
139 
140     int bios_size;
141     char *bios_filename;
142 
143     /*
144      * Always load the bios if it was enforced,
145      * even if an external kernel has been defined.
146      */
147     if (!ipl->kernel || ipl->enforce_bios) {
148         uint64_t fwbase;
149 
150         if (ms->ram_size < BIOS_MAX_SIZE) {
151             error_setg(errp, "not enough RAM to load the BIOS file");
152             return;
153         }
154 
155         fwbase = (MIN(ms->ram_size, 0x80000000U) - BIOS_MAX_SIZE) & ~0xffffUL;
156 
157         bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, ipl->firmware);
158         if (bios_filename == NULL) {
159             error_setg(errp, "could not find stage1 bootloader");
160             return;
161         }
162 
163         bios_size = load_elf(bios_filename, NULL,
164                              bios_translate_addr, &fwbase,
165                              &ipl->bios_start_addr, NULL, NULL, NULL, 1,
166                              EM_S390, 0, 0);
167         if (bios_size > 0) {
168             /* Adjust ELF start address to final location */
169             ipl->bios_start_addr += fwbase;
170         } else {
171             /* Try to load non-ELF file */
172             bios_size = load_image_targphys(bios_filename, ZIPL_IMAGE_START,
173                                             4096);
174             ipl->bios_start_addr = ZIPL_IMAGE_START;
175         }
176         g_free(bios_filename);
177 
178         if (bios_size == -1) {
179             error_setg(errp, "could not load bootloader '%s'", ipl->firmware);
180             return;
181         }
182 
183         /* default boot target is the bios */
184         ipl->start_addr = ipl->bios_start_addr;
185     }
186 
187     if (ipl->kernel) {
188         kernel_size = load_elf(ipl->kernel, NULL, NULL, NULL,
189                                &pentry, NULL,
190                                NULL, NULL, 1, EM_S390, 0, 0);
191         if (kernel_size < 0) {
192             kernel_size = load_image_targphys(ipl->kernel, 0, ms->ram_size);
193             if (kernel_size < 0) {
194                 error_setg(errp, "could not load kernel '%s'", ipl->kernel);
195                 return;
196             }
197             /* if this is Linux use KERN_IMAGE_START */
198             magic = rom_ptr(LINUX_MAGIC_ADDR, 6);
199             if (magic && !memcmp(magic, "S390EP", 6)) {
200                 pentry = KERN_IMAGE_START;
201             } else {
202                 /* if not Linux load the address of the (short) IPL PSW */
203                 ipl_psw = rom_ptr(4, 4);
204                 if (ipl_psw) {
205                     pentry = be32_to_cpu(*ipl_psw) & PSW_MASK_SHORT_ADDR;
206                 } else {
207                     error_setg(errp, "Could not get IPL PSW");
208                     return;
209                 }
210             }
211         }
212         /*
213          * Is it a Linux kernel (starting at 0x10000)? If yes, we fill in the
214          * kernel parameters here as well. Note: For old kernels (up to 3.2)
215          * we can not rely on the ELF entry point - it was 0x800 (the SALIPL
216          * loader) and it won't work. For this case we force it to 0x10000, too.
217          */
218         if (pentry == KERN_IMAGE_START || pentry == 0x800) {
219             size_t cmdline_size = strlen(ipl->cmdline) + 1;
220             char *parm_area = rom_ptr(KERN_PARM_AREA, cmdline_size);
221 
222             ipl->start_addr = KERN_IMAGE_START;
223             /* Overwrite parameters in the kernel image, which are "rom" */
224             if (parm_area) {
225                 uint64_t max_cmdline_size = get_max_kernel_cmdline_size();
226 
227                 if (cmdline_size > max_cmdline_size) {
228                     error_setg(errp,
229                                "kernel command line exceeds maximum size:"
230                                " %zu > %" PRIu64,
231                                cmdline_size, max_cmdline_size);
232                     return;
233                 }
234 
235                 strcpy(parm_area, ipl->cmdline);
236             }
237         } else {
238             ipl->start_addr = pentry;
239         }
240 
241         if (ipl->initrd) {
242             ram_addr_t initrd_offset;
243             int initrd_size;
244             uint64_t *romptr;
245 
246             initrd_offset = INITRD_START;
247             while (kernel_size + 0x100000 > initrd_offset) {
248                 initrd_offset += 0x100000;
249             }
250             initrd_size = load_image_targphys(ipl->initrd, initrd_offset,
251                                               ms->ram_size - initrd_offset);
252             if (initrd_size == -1) {
253                 error_setg(errp, "could not load initrd '%s'", ipl->initrd);
254                 return;
255             }
256 
257             /*
258              * we have to overwrite values in the kernel image,
259              * which are "rom"
260              */
261             romptr = rom_ptr(INITRD_PARM_START, 16);
262             if (romptr) {
263                 stq_be_p(romptr, initrd_offset);
264                 stq_be_p(romptr + 1, initrd_size);
265             }
266         }
267     }
268     /*
269      * Don't ever use the migrated values, they could come from a different
270      * BIOS and therefore don't work. But still migrate the values, so
271      * QEMUs relying on it don't break.
272      */
273     ipl->compat_start_addr = ipl->start_addr;
274     ipl->compat_bios_start_addr = ipl->bios_start_addr;
275     /*
276      * Because this Device is not on any bus in the qbus tree (it is
277      * not a sysbus device and it's not on some other bus like a PCI
278      * bus) it will not be automatically reset by the 'reset the
279      * sysbus' hook registered by vl.c like most devices. So we must
280      * manually register a reset hook for it.
281      * TODO: there should be a better way to do this.
282      */
283     qemu_register_reset(resettable_cold_reset_fn, dev);
284 }
285 
286 static Property s390_ipl_properties[] = {
287     DEFINE_PROP_STRING("kernel", S390IPLState, kernel),
288     DEFINE_PROP_STRING("initrd", S390IPLState, initrd),
289     DEFINE_PROP_STRING("cmdline", S390IPLState, cmdline),
290     DEFINE_PROP_STRING("firmware", S390IPLState, firmware),
291     DEFINE_PROP_BOOL("enforce_bios", S390IPLState, enforce_bios, false),
292     DEFINE_PROP_BOOL("iplbext_migration", S390IPLState, iplbext_migration,
293                      true),
294     DEFINE_PROP_END_OF_LIST(),
295 };
296 
297 static void s390_ipl_set_boot_menu(S390IPLState *ipl)
298 {
299     unsigned long splash_time = 0;
300 
301     if (!get_boot_device(0)) {
302         if (current_machine->boot_config.has_menu && current_machine->boot_config.menu) {
303             error_report("boot menu requires a bootindex to be specified for "
304                          "the IPL device");
305         }
306         return;
307     }
308 
309     switch (ipl->iplb.pbt) {
310     case S390_IPL_TYPE_CCW:
311         /* In the absence of -boot menu, use zipl parameters */
312         if (!current_machine->boot_config.has_menu) {
313             ipl->qipl.qipl_flags |= QIPL_FLAG_BM_OPTS_ZIPL;
314             return;
315         }
316         break;
317     case S390_IPL_TYPE_QEMU_SCSI:
318         break;
319     default:
320         if (current_machine->boot_config.has_menu && current_machine->boot_config.menu) {
321             error_report("boot menu is not supported for this device type");
322         }
323         return;
324     }
325 
326     if (!current_machine->boot_config.has_menu || !current_machine->boot_config.menu) {
327         return;
328     }
329 
330     ipl->qipl.qipl_flags |= QIPL_FLAG_BM_OPTS_CMD;
331 
332     if (current_machine->boot_config.has_splash_time) {
333         splash_time = current_machine->boot_config.splash_time;
334     }
335     if (splash_time > 0xffffffff) {
336         error_report("splash-time is too large, forcing it to max value");
337         ipl->qipl.boot_menu_timeout = 0xffffffff;
338         return;
339     }
340 
341     ipl->qipl.boot_menu_timeout = cpu_to_be32(splash_time);
342 }
343 
344 #define CCW_DEVTYPE_NONE        0x00
345 #define CCW_DEVTYPE_VIRTIO      0x01
346 #define CCW_DEVTYPE_VIRTIO_NET  0x02
347 #define CCW_DEVTYPE_SCSI        0x03
348 #define CCW_DEVTYPE_VFIO        0x04
349 
350 static CcwDevice *s390_get_ccw_device(DeviceState *dev_st, int *devtype)
351 {
352     CcwDevice *ccw_dev = NULL;
353     int tmp_dt = CCW_DEVTYPE_NONE;
354 
355     if (dev_st) {
356         VirtIONet *virtio_net_dev = (VirtIONet *)
357             object_dynamic_cast(OBJECT(dev_st), TYPE_VIRTIO_NET);
358         VirtioCcwDevice *virtio_ccw_dev = (VirtioCcwDevice *)
359             object_dynamic_cast(OBJECT(qdev_get_parent_bus(dev_st)->parent),
360                                 TYPE_VIRTIO_CCW_DEVICE);
361         VFIOCCWDevice *vfio_ccw_dev = (VFIOCCWDevice *)
362             object_dynamic_cast(OBJECT(dev_st), TYPE_VFIO_CCW);
363 
364         if (virtio_ccw_dev) {
365             ccw_dev = CCW_DEVICE(virtio_ccw_dev);
366             if (virtio_net_dev) {
367                 tmp_dt = CCW_DEVTYPE_VIRTIO_NET;
368             } else {
369                 tmp_dt = CCW_DEVTYPE_VIRTIO;
370             }
371         } else if (vfio_ccw_dev) {
372             ccw_dev = CCW_DEVICE(vfio_ccw_dev);
373             tmp_dt = CCW_DEVTYPE_VFIO;
374         } else {
375             SCSIDevice *sd = (SCSIDevice *)
376                 object_dynamic_cast(OBJECT(dev_st),
377                                     TYPE_SCSI_DEVICE);
378             if (sd) {
379                 SCSIBus *sbus = scsi_bus_from_device(sd);
380                 VirtIODevice *vdev = (VirtIODevice *)
381                     object_dynamic_cast(OBJECT(sbus->qbus.parent),
382                                         TYPE_VIRTIO_DEVICE);
383                 if (vdev) {
384                     ccw_dev = (CcwDevice *)
385                         object_dynamic_cast(OBJECT(qdev_get_parent_bus(DEVICE(vdev))->parent),
386                                             TYPE_CCW_DEVICE);
387                     if (ccw_dev) {
388                         tmp_dt = CCW_DEVTYPE_SCSI;
389                     }
390                 }
391             }
392         }
393     }
394     if (devtype) {
395         *devtype = tmp_dt;
396     }
397     return ccw_dev;
398 }
399 
400 static bool s390_gen_initial_iplb(S390IPLState *ipl)
401 {
402     DeviceState *dev_st;
403     CcwDevice *ccw_dev = NULL;
404     SCSIDevice *sd;
405     int devtype;
406 
407     dev_st = get_boot_device(0);
408     if (dev_st) {
409         ccw_dev = s390_get_ccw_device(dev_st, &devtype);
410     }
411 
412     /*
413      * Currently allow IPL only from CCW devices.
414      */
415     if (ccw_dev) {
416         switch (devtype) {
417         case CCW_DEVTYPE_SCSI:
418             sd = SCSI_DEVICE(dev_st);
419             ipl->iplb.len = cpu_to_be32(S390_IPLB_MIN_QEMU_SCSI_LEN);
420             ipl->iplb.blk0_len =
421                 cpu_to_be32(S390_IPLB_MIN_QEMU_SCSI_LEN - S390_IPLB_HEADER_LEN);
422             ipl->iplb.pbt = S390_IPL_TYPE_QEMU_SCSI;
423             ipl->iplb.scsi.lun = cpu_to_be32(sd->lun);
424             ipl->iplb.scsi.target = cpu_to_be16(sd->id);
425             ipl->iplb.scsi.channel = cpu_to_be16(sd->channel);
426             ipl->iplb.scsi.devno = cpu_to_be16(ccw_dev->sch->devno);
427             ipl->iplb.scsi.ssid = ccw_dev->sch->ssid & 3;
428             break;
429         case CCW_DEVTYPE_VFIO:
430             ipl->iplb.len = cpu_to_be32(S390_IPLB_MIN_CCW_LEN);
431             ipl->iplb.pbt = S390_IPL_TYPE_CCW;
432             ipl->iplb.ccw.devno = cpu_to_be16(ccw_dev->sch->devno);
433             ipl->iplb.ccw.ssid = ccw_dev->sch->ssid & 3;
434             break;
435         case CCW_DEVTYPE_VIRTIO_NET:
436             ipl->netboot = true;
437             /* Fall through to CCW_DEVTYPE_VIRTIO case */
438         case CCW_DEVTYPE_VIRTIO:
439             ipl->iplb.len = cpu_to_be32(S390_IPLB_MIN_CCW_LEN);
440             ipl->iplb.blk0_len =
441                 cpu_to_be32(S390_IPLB_MIN_CCW_LEN - S390_IPLB_HEADER_LEN);
442             ipl->iplb.pbt = S390_IPL_TYPE_CCW;
443             ipl->iplb.ccw.devno = cpu_to_be16(ccw_dev->sch->devno);
444             ipl->iplb.ccw.ssid = ccw_dev->sch->ssid & 3;
445             break;
446         }
447 
448         if (!s390_ipl_set_loadparm(ipl->iplb.loadparm)) {
449             ipl->iplb.flags |= DIAG308_FLAGS_LP_VALID;
450         }
451 
452         return true;
453     }
454 
455     return false;
456 }
457 
458 int s390_ipl_set_loadparm(uint8_t *loadparm)
459 {
460     MachineState *machine = MACHINE(qdev_get_machine());
461     char *lp = object_property_get_str(OBJECT(machine), "loadparm", NULL);
462 
463     if (lp) {
464         int i;
465 
466         /* lp is an uppercase string without leading/embedded spaces */
467         for (i = 0; i < 8 && lp[i]; i++) {
468             loadparm[i] = ascii2ebcdic[(uint8_t) lp[i]];
469         }
470 
471         if (i < 8) {
472             memset(loadparm + i, 0x40, 8 - i); /* fill with EBCDIC spaces */
473         }
474 
475         g_free(lp);
476         return 0;
477     }
478 
479     return -1;
480 }
481 
482 static bool is_virtio_ccw_device_of_type(IplParameterBlock *iplb,
483                                          int virtio_id)
484 {
485     uint8_t cssid;
486     uint8_t ssid;
487     uint16_t devno;
488     uint16_t schid;
489     SubchDev *sch = NULL;
490 
491     if (iplb->pbt != S390_IPL_TYPE_CCW) {
492         return false;
493     }
494 
495     devno = be16_to_cpu(iplb->ccw.devno);
496     ssid = iplb->ccw.ssid & 3;
497 
498     for (schid = 0; schid < MAX_SCHID; schid++) {
499         for (cssid = 0; cssid < MAX_CSSID; cssid++) {
500             sch = css_find_subch(1, cssid, ssid, schid);
501 
502             if (sch && sch->devno == devno) {
503                 return sch->id.cu_model == virtio_id;
504             }
505         }
506     }
507     return false;
508 }
509 
510 static bool is_virtio_net_device(IplParameterBlock *iplb)
511 {
512     return is_virtio_ccw_device_of_type(iplb, VIRTIO_ID_NET);
513 }
514 
515 static bool is_virtio_scsi_device(IplParameterBlock *iplb)
516 {
517     return is_virtio_ccw_device_of_type(iplb, VIRTIO_ID_SCSI);
518 }
519 
520 static void update_machine_ipl_properties(IplParameterBlock *iplb)
521 {
522     Object *machine = qdev_get_machine();
523     Error *err = NULL;
524 
525     /* Sync loadparm */
526     if (iplb->flags & DIAG308_FLAGS_LP_VALID) {
527         uint8_t *ebcdic_loadparm = iplb->loadparm;
528         char ascii_loadparm[9];
529         int i;
530 
531         for (i = 0; i < 8 && ebcdic_loadparm[i]; i++) {
532             ascii_loadparm[i] = ebcdic2ascii[(uint8_t) ebcdic_loadparm[i]];
533         }
534         ascii_loadparm[i] = 0;
535         object_property_set_str(machine, "loadparm", ascii_loadparm, &err);
536     } else {
537         object_property_set_str(machine, "loadparm", "", &err);
538     }
539     if (err) {
540         warn_report_err(err);
541     }
542 }
543 
544 void s390_ipl_update_diag308(IplParameterBlock *iplb)
545 {
546     S390IPLState *ipl = get_ipl_device();
547 
548     /*
549      * The IPLB set and retrieved by subcodes 8/9 is completely
550      * separate from the one managed via subcodes 5/6.
551      */
552     if (iplb->pbt == S390_IPL_TYPE_PV) {
553         ipl->iplb_pv = *iplb;
554         ipl->iplb_valid_pv = true;
555     } else {
556         ipl->iplb = *iplb;
557         ipl->iplb_valid = true;
558     }
559     ipl->netboot = is_virtio_net_device(iplb);
560     update_machine_ipl_properties(iplb);
561 }
562 
563 IplParameterBlock *s390_ipl_get_iplb_pv(void)
564 {
565     S390IPLState *ipl = get_ipl_device();
566 
567     if (!ipl->iplb_valid_pv) {
568         return NULL;
569     }
570     return &ipl->iplb_pv;
571 }
572 
573 IplParameterBlock *s390_ipl_get_iplb(void)
574 {
575     S390IPLState *ipl = get_ipl_device();
576 
577     if (!ipl->iplb_valid) {
578         return NULL;
579     }
580     return &ipl->iplb;
581 }
582 
583 void s390_ipl_reset_request(CPUState *cs, enum s390_reset reset_type)
584 {
585     S390IPLState *ipl = get_ipl_device();
586 
587     if (reset_type == S390_RESET_EXTERNAL || reset_type == S390_RESET_REIPL) {
588         /* use CPU 0 for full resets */
589         ipl->reset_cpu_index = 0;
590     } else {
591         ipl->reset_cpu_index = cs->cpu_index;
592     }
593     ipl->reset_type = reset_type;
594 
595     if (reset_type == S390_RESET_REIPL &&
596         ipl->iplb_valid &&
597         !ipl->netboot &&
598         ipl->iplb.pbt == S390_IPL_TYPE_CCW &&
599         is_virtio_scsi_device(&ipl->iplb)) {
600         CcwDevice *ccw_dev = s390_get_ccw_device(get_boot_device(0), NULL);
601 
602         if (ccw_dev &&
603             cpu_to_be16(ccw_dev->sch->devno) == ipl->iplb.ccw.devno &&
604             (ccw_dev->sch->ssid & 3) == ipl->iplb.ccw.ssid) {
605             /*
606              * this is the original boot device's SCSI
607              * so restore IPL parameter info from it
608              */
609             ipl->iplb_valid = s390_gen_initial_iplb(ipl);
610         }
611     }
612     if (reset_type == S390_RESET_MODIFIED_CLEAR ||
613         reset_type == S390_RESET_LOAD_NORMAL ||
614         reset_type == S390_RESET_PV) {
615         /* ignore -no-reboot, send no event  */
616         qemu_system_reset_request(SHUTDOWN_CAUSE_SUBSYSTEM_RESET);
617     } else {
618         qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
619     }
620     /* as this is triggered by a CPU, make sure to exit the loop */
621     if (tcg_enabled()) {
622         cpu_loop_exit(cs);
623     }
624 }
625 
626 void s390_ipl_get_reset_request(CPUState **cs, enum s390_reset *reset_type)
627 {
628     S390IPLState *ipl = get_ipl_device();
629 
630     *cs = qemu_get_cpu(ipl->reset_cpu_index);
631     if (!*cs) {
632         /* use any CPU */
633         *cs = first_cpu;
634     }
635     *reset_type = ipl->reset_type;
636 }
637 
638 void s390_ipl_clear_reset_request(void)
639 {
640     S390IPLState *ipl = get_ipl_device();
641 
642     ipl->reset_type = S390_RESET_EXTERNAL;
643     /* use CPU 0 for full resets */
644     ipl->reset_cpu_index = 0;
645 }
646 
647 static void s390_ipl_prepare_qipl(S390CPU *cpu)
648 {
649     S390IPLState *ipl = get_ipl_device();
650     uint8_t *addr;
651     uint64_t len = 4096;
652 
653     addr = cpu_physical_memory_map(cpu->env.psa, &len, true);
654     if (!addr || len < QIPL_ADDRESS + sizeof(QemuIplParameters)) {
655         error_report("Cannot set QEMU IPL parameters");
656         return;
657     }
658     memcpy(addr + QIPL_ADDRESS, &ipl->qipl, sizeof(QemuIplParameters));
659     cpu_physical_memory_unmap(addr, len, 1, len);
660 }
661 
662 int s390_ipl_prepare_pv_header(Error **errp)
663 {
664     IplParameterBlock *ipib = s390_ipl_get_iplb_pv();
665     IPLBlockPV *ipib_pv = &ipib->pv;
666     void *hdr = g_malloc(ipib_pv->pv_header_len);
667     int rc;
668 
669     cpu_physical_memory_read(ipib_pv->pv_header_addr, hdr,
670                              ipib_pv->pv_header_len);
671     rc = s390_pv_set_sec_parms((uintptr_t)hdr, ipib_pv->pv_header_len, errp);
672     g_free(hdr);
673     return rc;
674 }
675 
676 int s390_ipl_pv_unpack(void)
677 {
678     IplParameterBlock *ipib = s390_ipl_get_iplb_pv();
679     IPLBlockPV *ipib_pv = &ipib->pv;
680     int i, rc = 0;
681 
682     for (i = 0; i < ipib_pv->num_comp; i++) {
683         rc = s390_pv_unpack(ipib_pv->components[i].addr,
684                             TARGET_PAGE_ALIGN(ipib_pv->components[i].size),
685                             ipib_pv->components[i].tweak_pref);
686         if (rc) {
687             break;
688         }
689     }
690     return rc;
691 }
692 
693 void s390_ipl_prepare_cpu(S390CPU *cpu)
694 {
695     S390IPLState *ipl = get_ipl_device();
696 
697     cpu->env.psw.addr = ipl->start_addr;
698     cpu->env.psw.mask = IPL_PSW_MASK;
699 
700     if (!ipl->kernel || ipl->iplb_valid) {
701         cpu->env.psw.addr = ipl->bios_start_addr;
702         if (!ipl->iplb_valid) {
703             ipl->iplb_valid = s390_gen_initial_iplb(ipl);
704         }
705     }
706     s390_ipl_set_boot_menu(ipl);
707     s390_ipl_prepare_qipl(cpu);
708 }
709 
710 static void s390_ipl_reset(DeviceState *dev)
711 {
712     S390IPLState *ipl = S390_IPL(dev);
713 
714     if (ipl->reset_type != S390_RESET_REIPL) {
715         ipl->iplb_valid = false;
716         memset(&ipl->iplb, 0, sizeof(IplParameterBlock));
717     }
718 }
719 
720 static void s390_ipl_class_init(ObjectClass *klass, void *data)
721 {
722     DeviceClass *dc = DEVICE_CLASS(klass);
723 
724     dc->realize = s390_ipl_realize;
725     device_class_set_props(dc, s390_ipl_properties);
726     device_class_set_legacy_reset(dc, s390_ipl_reset);
727     dc->vmsd = &vmstate_ipl;
728     set_bit(DEVICE_CATEGORY_MISC, dc->categories);
729     /* Reason: Loads the ROMs and thus can only be used one time - internally */
730     dc->user_creatable = false;
731 }
732 
733 static const TypeInfo s390_ipl_info = {
734     .class_init = s390_ipl_class_init,
735     .parent = TYPE_DEVICE,
736     .name  = TYPE_S390_IPL,
737     .instance_size  = sizeof(S390IPLState),
738 };
739 
740 static void s390_ipl_register_types(void)
741 {
742     type_register_static(&s390_ipl_info);
743 }
744 
745 type_init(s390_ipl_register_types)
746