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