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