1 /* 2 * SCLP Support 3 * 4 * Copyright IBM, Corp. 2012 5 * 6 * Authors: 7 * Christian Borntraeger <borntraeger@de.ibm.com> 8 * Heinz Graalfs <graalfs@linux.vnet.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/units.h" 17 #include "qapi/error.h" 18 #include "cpu.h" 19 #include "hw/boards.h" 20 #include "hw/s390x/sclp.h" 21 #include "hw/s390x/event-facility.h" 22 #include "hw/s390x/s390-pci-bus.h" 23 #include "hw/s390x/ipl.h" 24 25 static inline SCLPDevice *get_sclp_device(void) 26 { 27 static SCLPDevice *sclp; 28 29 if (!sclp) { 30 sclp = SCLP(object_resolve_path_type("", TYPE_SCLP, NULL)); 31 } 32 return sclp; 33 } 34 35 static inline bool sclp_command_code_valid(uint32_t code) 36 { 37 switch (code & SCLP_CMD_CODE_MASK) { 38 case SCLP_CMDW_READ_SCP_INFO: 39 case SCLP_CMDW_READ_SCP_INFO_FORCED: 40 case SCLP_CMDW_READ_CPU_INFO: 41 case SCLP_CMDW_CONFIGURE_IOA: 42 case SCLP_CMDW_DECONFIGURE_IOA: 43 case SCLP_CMD_READ_EVENT_DATA: 44 case SCLP_CMD_WRITE_EVENT_DATA: 45 case SCLP_CMD_WRITE_EVENT_MASK: 46 return true; 47 } 48 return false; 49 } 50 51 static bool sccb_verify_boundary(uint64_t sccb_addr, uint16_t sccb_len, 52 uint32_t code) 53 { 54 uint64_t sccb_max_addr = sccb_addr + sccb_len - 1; 55 uint64_t sccb_boundary = (sccb_addr & PAGE_MASK) + PAGE_SIZE; 56 57 switch (code & SCLP_CMD_CODE_MASK) { 58 case SCLP_CMDW_READ_SCP_INFO: 59 case SCLP_CMDW_READ_SCP_INFO_FORCED: 60 case SCLP_CMDW_READ_CPU_INFO: 61 /* 62 * An extended-length SCCB is only allowed for Read SCP/CPU Info and 63 * is allowed to exceed the 4k boundary. The respective commands will 64 * set the length field to the required length if an insufficient 65 * SCCB length is provided. 66 */ 67 if (s390_has_feat(S390_FEAT_EXTENDED_LENGTH_SCCB)) { 68 return true; 69 } 70 /* fallthrough */ 71 default: 72 if (sccb_max_addr < sccb_boundary) { 73 return true; 74 } 75 } 76 77 return false; 78 } 79 80 static void prepare_cpu_entries(MachineState *ms, CPUEntry *entry, int *count) 81 { 82 uint8_t features[SCCB_CPU_FEATURE_LEN] = { 0 }; 83 int i; 84 85 s390_get_feat_block(S390_FEAT_TYPE_SCLP_CPU, features); 86 for (i = 0, *count = 0; i < ms->possible_cpus->len; i++) { 87 if (!ms->possible_cpus->cpus[i].cpu) { 88 continue; 89 } 90 entry[*count].address = ms->possible_cpus->cpus[i].arch_id; 91 entry[*count].type = 0; 92 memcpy(entry[*count].features, features, sizeof(features)); 93 (*count)++; 94 } 95 } 96 97 #define SCCB_REQ_LEN(s, max_cpus) (sizeof(s) + max_cpus * sizeof(CPUEntry)) 98 99 static inline bool ext_len_sccb_supported(SCCBHeader header) 100 { 101 return s390_has_feat(S390_FEAT_EXTENDED_LENGTH_SCCB) && 102 header.control_mask[2] & SCLP_VARIABLE_LENGTH_RESPONSE; 103 } 104 105 /* Provide information about the configuration, CPUs and storage */ 106 static void read_SCP_info(SCLPDevice *sclp, SCCB *sccb) 107 { 108 ReadInfo *read_info = (ReadInfo *) sccb; 109 MachineState *machine = MACHINE(qdev_get_machine()); 110 int cpu_count; 111 int rnsize, rnmax; 112 IplParameterBlock *ipib = s390_ipl_get_iplb(); 113 int required_len = SCCB_REQ_LEN(ReadInfo, machine->possible_cpus->len); 114 int offset_cpu = s390_has_feat(S390_FEAT_EXTENDED_LENGTH_SCCB) ? 115 offsetof(ReadInfo, entries) : 116 SCLP_READ_SCP_INFO_FIXED_CPU_OFFSET; 117 CPUEntry *entries_start = (void *)sccb + offset_cpu; 118 119 if (be16_to_cpu(sccb->h.length) < required_len) { 120 if (ext_len_sccb_supported(sccb->h)) { 121 sccb->h.length = cpu_to_be16(required_len); 122 } 123 sccb->h.response_code = cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH); 124 return; 125 } 126 127 /* CPU information */ 128 prepare_cpu_entries(machine, entries_start, &cpu_count); 129 read_info->entries_cpu = cpu_to_be16(cpu_count); 130 read_info->offset_cpu = cpu_to_be16(offset_cpu); 131 read_info->highest_cpu = cpu_to_be16(machine->smp.max_cpus - 1); 132 133 read_info->ibc_val = cpu_to_be32(s390_get_ibc_val()); 134 135 /* Configuration Characteristic (Extension) */ 136 s390_get_feat_block(S390_FEAT_TYPE_SCLP_CONF_CHAR, 137 read_info->conf_char); 138 s390_get_feat_block(S390_FEAT_TYPE_SCLP_CONF_CHAR_EXT, 139 read_info->conf_char_ext); 140 141 if (s390_has_feat(S390_FEAT_EXTENDED_LENGTH_SCCB)) { 142 s390_get_feat_block(S390_FEAT_TYPE_SCLP_FAC134, 143 &read_info->fac134); 144 } 145 146 read_info->facilities = cpu_to_be64(SCLP_HAS_CPU_INFO | 147 SCLP_HAS_IOA_RECONFIG); 148 149 read_info->mha_pow = s390_get_mha_pow(); 150 read_info->hmfai = cpu_to_be32(s390_get_hmfai()); 151 152 rnsize = 1 << (sclp->increment_size - 20); 153 if (rnsize <= 128) { 154 read_info->rnsize = rnsize; 155 } else { 156 read_info->rnsize = 0; 157 read_info->rnsize2 = cpu_to_be32(rnsize); 158 } 159 160 /* we don't support standby memory, maxram_size is never exposed */ 161 rnmax = machine->ram_size >> sclp->increment_size; 162 if (rnmax < 0x10000) { 163 read_info->rnmax = cpu_to_be16(rnmax); 164 } else { 165 read_info->rnmax = cpu_to_be16(0); 166 read_info->rnmax2 = cpu_to_be64(rnmax); 167 } 168 169 if (ipib && ipib->flags & DIAG308_FLAGS_LP_VALID) { 170 memcpy(&read_info->loadparm, &ipib->loadparm, 171 sizeof(read_info->loadparm)); 172 } else { 173 s390_ipl_set_loadparm(read_info->loadparm); 174 } 175 176 sccb->h.response_code = cpu_to_be16(SCLP_RC_NORMAL_READ_COMPLETION); 177 } 178 179 /* Provide information about the CPU */ 180 static void sclp_read_cpu_info(SCLPDevice *sclp, SCCB *sccb) 181 { 182 MachineState *machine = MACHINE(qdev_get_machine()); 183 ReadCpuInfo *cpu_info = (ReadCpuInfo *) sccb; 184 int cpu_count; 185 int required_len = SCCB_REQ_LEN(ReadCpuInfo, machine->possible_cpus->len); 186 187 if (be16_to_cpu(sccb->h.length) < required_len) { 188 if (ext_len_sccb_supported(sccb->h)) { 189 sccb->h.length = cpu_to_be16(required_len); 190 } 191 sccb->h.response_code = cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH); 192 return; 193 } 194 195 prepare_cpu_entries(machine, cpu_info->entries, &cpu_count); 196 cpu_info->nr_configured = cpu_to_be16(cpu_count); 197 cpu_info->offset_configured = cpu_to_be16(offsetof(ReadCpuInfo, entries)); 198 cpu_info->nr_standby = cpu_to_be16(0); 199 200 /* The standby offset is 16-byte for each CPU */ 201 cpu_info->offset_standby = cpu_to_be16(cpu_info->offset_configured 202 + cpu_info->nr_configured*sizeof(CPUEntry)); 203 204 205 sccb->h.response_code = cpu_to_be16(SCLP_RC_NORMAL_READ_COMPLETION); 206 } 207 208 static void sclp_configure_io_adapter(SCLPDevice *sclp, SCCB *sccb, 209 bool configure) 210 { 211 int rc; 212 213 if (be16_to_cpu(sccb->h.length) < 16) { 214 rc = SCLP_RC_INSUFFICIENT_SCCB_LENGTH; 215 goto out_err; 216 } 217 218 switch (((IoaCfgSccb *)sccb)->atype) { 219 case SCLP_RECONFIG_PCI_ATYPE: 220 if (s390_has_feat(S390_FEAT_ZPCI)) { 221 if (configure) { 222 s390_pci_sclp_configure(sccb); 223 } else { 224 s390_pci_sclp_deconfigure(sccb); 225 } 226 return; 227 } 228 /* fallthrough */ 229 default: 230 rc = SCLP_RC_ADAPTER_TYPE_NOT_RECOGNIZED; 231 } 232 233 out_err: 234 sccb->h.response_code = cpu_to_be16(rc); 235 } 236 237 static void sclp_execute(SCLPDevice *sclp, SCCB *sccb, uint32_t code) 238 { 239 SCLPDeviceClass *sclp_c = SCLP_GET_CLASS(sclp); 240 SCLPEventFacility *ef = sclp->event_facility; 241 SCLPEventFacilityClass *efc = EVENT_FACILITY_GET_CLASS(ef); 242 243 switch (code & SCLP_CMD_CODE_MASK) { 244 case SCLP_CMDW_READ_SCP_INFO: 245 case SCLP_CMDW_READ_SCP_INFO_FORCED: 246 sclp_c->read_SCP_info(sclp, sccb); 247 break; 248 case SCLP_CMDW_READ_CPU_INFO: 249 sclp_c->read_cpu_info(sclp, sccb); 250 break; 251 case SCLP_CMDW_CONFIGURE_IOA: 252 sclp_configure_io_adapter(sclp, sccb, true); 253 break; 254 case SCLP_CMDW_DECONFIGURE_IOA: 255 sclp_configure_io_adapter(sclp, sccb, false); 256 break; 257 default: 258 efc->command_handler(ef, sccb, code); 259 break; 260 } 261 } 262 263 /* 264 * We only need the address to have something valid for the 265 * service_interrupt call. 266 */ 267 #define SCLP_PV_DUMMY_ADDR 0x4000 268 int sclp_service_call_protected(CPUS390XState *env, uint64_t sccb, 269 uint32_t code) 270 { 271 SCLPDevice *sclp = get_sclp_device(); 272 SCLPDeviceClass *sclp_c = SCLP_GET_CLASS(sclp); 273 SCCBHeader header; 274 g_autofree SCCB *work_sccb = NULL; 275 276 s390_cpu_pv_mem_read(env_archcpu(env), 0, &header, sizeof(SCCBHeader)); 277 278 work_sccb = g_malloc0(be16_to_cpu(header.length)); 279 s390_cpu_pv_mem_read(env_archcpu(env), 0, work_sccb, 280 be16_to_cpu(header.length)); 281 282 if (!sclp_command_code_valid(code)) { 283 work_sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_SCLP_COMMAND); 284 goto out_write; 285 } 286 287 sclp_c->execute(sclp, work_sccb, code); 288 out_write: 289 s390_cpu_pv_mem_write(env_archcpu(env), 0, work_sccb, 290 be16_to_cpu(work_sccb->h.length)); 291 sclp_c->service_interrupt(sclp, SCLP_PV_DUMMY_ADDR); 292 return 0; 293 } 294 295 int sclp_service_call(CPUS390XState *env, uint64_t sccb, uint32_t code) 296 { 297 SCLPDevice *sclp = get_sclp_device(); 298 SCLPDeviceClass *sclp_c = SCLP_GET_CLASS(sclp); 299 SCCBHeader header; 300 g_autofree SCCB *work_sccb = NULL; 301 302 /* first some basic checks on program checks */ 303 if (env->psw.mask & PSW_MASK_PSTATE) { 304 return -PGM_PRIVILEGED; 305 } 306 if (cpu_physical_memory_is_io(sccb)) { 307 return -PGM_ADDRESSING; 308 } 309 if ((sccb & ~0x1fffUL) == 0 || (sccb & ~0x1fffUL) == env->psa 310 || (sccb & ~0x7ffffff8UL) != 0) { 311 return -PGM_SPECIFICATION; 312 } 313 314 /* the header contains the actual length of the sccb */ 315 cpu_physical_memory_read(sccb, &header, sizeof(SCCBHeader)); 316 317 /* Valid sccb sizes */ 318 if (be16_to_cpu(header.length) < sizeof(SCCBHeader)) { 319 return -PGM_SPECIFICATION; 320 } 321 322 /* 323 * we want to work on a private copy of the sccb, to prevent guests 324 * from playing dirty tricks by modifying the memory content after 325 * the host has checked the values 326 */ 327 work_sccb = g_malloc0(be16_to_cpu(header.length)); 328 cpu_physical_memory_read(sccb, work_sccb, be16_to_cpu(header.length)); 329 330 if (!sclp_command_code_valid(code)) { 331 work_sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_SCLP_COMMAND); 332 goto out_write; 333 } 334 335 if (!sccb_verify_boundary(sccb, be16_to_cpu(work_sccb->h.length), code)) { 336 work_sccb->h.response_code = cpu_to_be16(SCLP_RC_SCCB_BOUNDARY_VIOLATION); 337 goto out_write; 338 } 339 340 sclp_c->execute(sclp, work_sccb, code); 341 out_write: 342 cpu_physical_memory_write(sccb, work_sccb, 343 be16_to_cpu(work_sccb->h.length)); 344 345 sclp_c->service_interrupt(sclp, sccb); 346 347 return 0; 348 } 349 350 static void service_interrupt(SCLPDevice *sclp, uint32_t sccb) 351 { 352 SCLPEventFacility *ef = sclp->event_facility; 353 SCLPEventFacilityClass *efc = EVENT_FACILITY_GET_CLASS(ef); 354 355 uint32_t param = sccb & ~3; 356 357 /* Indicate whether an event is still pending */ 358 param |= efc->event_pending(ef) ? 1 : 0; 359 360 if (!param) { 361 /* No need to send an interrupt, there's nothing to be notified about */ 362 return; 363 } 364 s390_sclp_extint(param); 365 } 366 367 void sclp_service_interrupt(uint32_t sccb) 368 { 369 SCLPDevice *sclp = get_sclp_device(); 370 SCLPDeviceClass *sclp_c = SCLP_GET_CLASS(sclp); 371 372 sclp_c->service_interrupt(sclp, sccb); 373 } 374 375 /* qemu object creation and initialization functions */ 376 377 void s390_sclp_init(void) 378 { 379 Object *new = object_new(TYPE_SCLP); 380 381 object_property_add_child(qdev_get_machine(), TYPE_SCLP, new); 382 object_unref(new); 383 qdev_realize(DEVICE(new), NULL, &error_fatal); 384 } 385 386 static void sclp_realize(DeviceState *dev, Error **errp) 387 { 388 MachineState *machine = MACHINE(qdev_get_machine()); 389 SCLPDevice *sclp = SCLP(dev); 390 uint64_t hw_limit; 391 int ret; 392 393 /* 394 * qdev_device_add searches the sysbus for TYPE_SCLP_EVENTS_BUS. As long 395 * as we can't find a fitting bus via the qom tree, we have to add the 396 * event facility to the sysbus, so e.g. a sclp console can be created. 397 */ 398 if (!sysbus_realize(SYS_BUS_DEVICE(sclp->event_facility), errp)) { 399 return; 400 } 401 402 ret = s390_set_memory_limit(machine->maxram_size, &hw_limit); 403 if (ret == -E2BIG) { 404 error_setg(errp, "host supports a maximum of %" PRIu64 " GB", 405 hw_limit / GiB); 406 } else if (ret) { 407 error_setg(errp, "setting the guest size failed"); 408 } 409 } 410 411 static void sclp_memory_init(SCLPDevice *sclp) 412 { 413 MachineState *machine = MACHINE(qdev_get_machine()); 414 MachineClass *machine_class = MACHINE_GET_CLASS(qdev_get_machine()); 415 ram_addr_t initial_mem = machine->ram_size; 416 int increment_size = 20; 417 418 /* The storage increment size is a multiple of 1M and is a power of 2. 419 * For some machine types, the number of storage increments must be 420 * MAX_STORAGE_INCREMENTS or fewer. 421 * The variable 'increment_size' is an exponent of 2 that can be 422 * used to calculate the size (in bytes) of an increment. */ 423 while (machine_class->fixup_ram_size != NULL && 424 (initial_mem >> increment_size) > MAX_STORAGE_INCREMENTS) { 425 increment_size++; 426 } 427 sclp->increment_size = increment_size; 428 } 429 430 static void sclp_init(Object *obj) 431 { 432 SCLPDevice *sclp = SCLP(obj); 433 Object *new; 434 435 new = object_new(TYPE_SCLP_EVENT_FACILITY); 436 object_property_add_child(obj, TYPE_SCLP_EVENT_FACILITY, new); 437 object_unref(new); 438 sclp->event_facility = EVENT_FACILITY(new); 439 440 sclp_memory_init(sclp); 441 } 442 443 static void sclp_class_init(ObjectClass *oc, void *data) 444 { 445 SCLPDeviceClass *sc = SCLP_CLASS(oc); 446 DeviceClass *dc = DEVICE_CLASS(oc); 447 448 dc->desc = "SCLP (Service-Call Logical Processor)"; 449 dc->realize = sclp_realize; 450 dc->hotpluggable = false; 451 set_bit(DEVICE_CATEGORY_MISC, dc->categories); 452 /* 453 * Reason: Creates TYPE_SCLP_EVENT_FACILITY in sclp_init 454 * which is a non-pluggable sysbus device 455 */ 456 dc->user_creatable = false; 457 458 sc->read_SCP_info = read_SCP_info; 459 sc->read_cpu_info = sclp_read_cpu_info; 460 sc->execute = sclp_execute; 461 sc->service_interrupt = service_interrupt; 462 } 463 464 static TypeInfo sclp_info = { 465 .name = TYPE_SCLP, 466 .parent = TYPE_DEVICE, 467 .instance_init = sclp_init, 468 .instance_size = sizeof(SCLPDevice), 469 .class_init = sclp_class_init, 470 .class_size = sizeof(SCLPDeviceClass), 471 }; 472 473 static void register_types(void) 474 { 475 type_register_static(&sclp_info); 476 } 477 type_init(register_types); 478