4 * Copyright 2012 IBM Corp.
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
12 #include "qemu/osdep.h"
13 #include "qapi/error.h"
14 #include "qemu-common.h"
16 #include "hw/boards.h"
17 #include "exec/address-spaces.h"
18 #include "s390-virtio.h"
19 #include "hw/s390x/sclp.h"
20 #include "hw/s390x/s390_flic.h"
21 #include "hw/s390x/ioinst.h"
22 #include "hw/s390x/css.h"
23 #include "virtio-ccw.h"
24 #include "qemu/config-file.h"
25 #include "s390-pci-bus.h"
26 #include "hw/s390x/storage-keys.h"
27 #include "hw/s390x/storage-attributes.h"
28 #include "hw/compat.h"
30 #include "hw/s390x/s390-virtio-ccw.h"
31 #include "hw/s390x/css-bridge.h"
32 #include "migration/register.h"
34 static const char *const reset_dev_types[] = {
35 TYPE_VIRTUAL_CSS_BRIDGE,
36 "s390-sclp-event-facility",
41 void subsystem_reset(void)
46 for (i = 0; i < ARRAY_SIZE(reset_dev_types); i++) {
47 dev = DEVICE(object_resolve_path_type("", reset_dev_types[i], NULL));
54 static int virtio_ccw_hcall_notify(const uint64_t *args)
56 uint64_t subch_id = args[0];
57 uint64_t queue = args[1];
59 int cssid, ssid, schid, m;
61 if (ioinst_disassemble_sch_ident(subch_id, &m, &cssid, &ssid, &schid)) {
64 sch = css_find_subch(m, cssid, ssid, schid);
65 if (!sch || !css_subch_visible(sch)) {
68 if (queue >= VIRTIO_QUEUE_MAX) {
71 virtio_queue_notify(virtio_ccw_get_vdev(sch), queue);
76 static int virtio_ccw_hcall_early_printk(const uint64_t *args)
78 uint64_t mem = args[0];
87 static void virtio_ccw_register_hcalls(void)
89 s390_register_virtio_hypercall(KVM_S390_VIRTIO_CCW_NOTIFY,
90 virtio_ccw_hcall_notify);
91 /* Tolerate early printk. */
92 s390_register_virtio_hypercall(KVM_S390_VIRTIO_NOTIFY,
93 virtio_ccw_hcall_early_printk);
96 void s390_memory_init(ram_addr_t mem_size)
98 MemoryRegion *sysmem = get_system_memory();
99 MemoryRegion *ram = g_new(MemoryRegion, 1);
101 /* allocate RAM for core */
102 memory_region_allocate_system_memory(ram, NULL, "s390.ram", mem_size);
103 memory_region_add_subregion(sysmem, 0, ram);
105 /* Initialize storage key device */
107 /* Initialize storage attributes device */
108 s390_stattrib_init();
111 static SaveVMHandlers savevm_gtod = {
112 .save_state = gtod_save,
113 .load_state = gtod_load,
116 static void ccw_init(MachineState *machine)
119 VirtualCssBus *css_bus;
123 s390_memory_init(machine->ram_size);
128 css_bus = virtual_css_bus_init();
129 s390_init_ipl_dev(machine->kernel_filename, machine->kernel_cmdline,
130 machine->initrd_filename, "s390-ccw.img",
131 "s390-netboot.img", true);
133 dev = qdev_create(NULL, TYPE_S390_PCI_HOST_BRIDGE);
134 object_property_add_child(qdev_get_machine(), TYPE_S390_PCI_HOST_BRIDGE,
136 qdev_init_nofail(dev);
138 /* register hypercalls */
139 virtio_ccw_register_hcalls();
142 s390_init_cpus(machine);
145 kvm_s390_enable_css_support(s390_cpu_addr2state(0));
148 * Non mcss-e enabled guests only see the devices from the default
149 * css, which is determined by the value of the squash_mcss property.
150 * Note: we must not squash non virtual devices to css 0xFE.
152 if (css_bus->squash_mcss) {
153 ret = css_create_css_image(0, true);
155 ret = css_create_css_image(VIRTUAL_CSSID, true);
159 /* Create VirtIO network adapters */
160 s390_create_virtio_net(BUS(css_bus), "virtio-net-ccw");
162 /* Register savevm handler for guest TOD clock */
163 register_savevm_live(NULL, "todclock", 0, 1, &savevm_gtod, kvm_state);
166 static void s390_cpu_plug(HotplugHandler *hotplug_dev,
167 DeviceState *dev, Error **errp)
170 S390CPU *cpu = S390_CPU(dev);
171 CPUState *cs = CPU(dev);
173 name = g_strdup_printf("cpu[%i]", cpu->env.cpu_num);
174 object_property_set_link(OBJECT(hotplug_dev), OBJECT(cs), name,
179 static void s390_machine_device_plug(HotplugHandler *hotplug_dev,
180 DeviceState *dev, Error **errp)
182 if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
183 s390_cpu_plug(hotplug_dev, dev, errp);
187 static HotplugHandler *s390_get_hotplug_handler(MachineState *machine,
190 if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
191 return HOTPLUG_HANDLER(machine);
196 static void s390_hot_add_cpu(const int64_t id, Error **errp)
198 MachineState *machine = MACHINE(qdev_get_machine());
200 s390x_new_cpu(machine->cpu_model, id, errp);
203 static void ccw_machine_class_init(ObjectClass *oc, void *data)
205 MachineClass *mc = MACHINE_CLASS(oc);
206 NMIClass *nc = NMI_CLASS(oc);
207 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
208 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
210 s390mc->ri_allowed = true;
211 s390mc->cpu_model_allowed = true;
212 s390mc->css_migration_enabled = true;
214 mc->reset = s390_machine_reset;
215 mc->hot_add_cpu = s390_hot_add_cpu;
216 mc->block_default_type = IF_VIRTIO;
224 mc->get_hotplug_handler = s390_get_hotplug_handler;
225 hc->plug = s390_machine_device_plug;
226 nc->nmi_monitor_handler = s390_nmi;
229 static inline bool machine_get_aes_key_wrap(Object *obj, Error **errp)
231 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
233 return ms->aes_key_wrap;
236 static inline void machine_set_aes_key_wrap(Object *obj, bool value,
239 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
241 ms->aes_key_wrap = value;
244 static inline bool machine_get_dea_key_wrap(Object *obj, Error **errp)
246 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
248 return ms->dea_key_wrap;
251 static inline void machine_set_dea_key_wrap(Object *obj, bool value,
254 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
256 ms->dea_key_wrap = value;
259 static S390CcwMachineClass *current_mc;
261 static S390CcwMachineClass *get_machine_class(void)
263 if (unlikely(!current_mc)) {
265 * No s390 ccw machine was instantiated, we are likely to
266 * be called for the 'none' machine. The properties will
267 * have their after-initialization values.
269 current_mc = S390_MACHINE_CLASS(
270 object_class_by_name(TYPE_S390_CCW_MACHINE));
275 bool ri_allowed(void)
277 if (!kvm_enabled()) {
280 /* for "none" machine this results in true */
281 return get_machine_class()->ri_allowed;
284 bool cpu_model_allowed(void)
286 /* for "none" machine this results in true */
287 return get_machine_class()->cpu_model_allowed;
290 static char *machine_get_loadparm(Object *obj, Error **errp)
292 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
294 return g_memdup(ms->loadparm, sizeof(ms->loadparm));
297 static void machine_set_loadparm(Object *obj, const char *val, Error **errp)
299 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
302 for (i = 0; i < sizeof(ms->loadparm) && val[i]; i++) {
303 uint8_t c = toupper(val[i]); /* mimic HMC */
305 if (('A' <= c && c <= 'Z') || ('0' <= c && c <= '9') || (c == '.') ||
309 error_setg(errp, "LOADPARM: invalid character '%c' (ASCII 0x%02x)",
315 for (; i < sizeof(ms->loadparm); i++) {
316 ms->loadparm[i] = ' '; /* pad right with spaces */
319 static inline bool machine_get_squash_mcss(Object *obj, Error **errp)
321 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
323 return ms->s390_squash_mcss;
326 static inline void machine_set_squash_mcss(Object *obj, bool value,
329 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
331 ms->s390_squash_mcss = value;
334 static inline void s390_machine_initfn(Object *obj)
336 object_property_add_bool(obj, "aes-key-wrap",
337 machine_get_aes_key_wrap,
338 machine_set_aes_key_wrap, NULL);
339 object_property_set_description(obj, "aes-key-wrap",
340 "enable/disable AES key wrapping using the CPACF wrapping key",
342 object_property_set_bool(obj, true, "aes-key-wrap", NULL);
344 object_property_add_bool(obj, "dea-key-wrap",
345 machine_get_dea_key_wrap,
346 machine_set_dea_key_wrap, NULL);
347 object_property_set_description(obj, "dea-key-wrap",
348 "enable/disable DEA key wrapping using the CPACF wrapping key",
350 object_property_set_bool(obj, true, "dea-key-wrap", NULL);
351 object_property_add_str(obj, "loadparm",
352 machine_get_loadparm, machine_set_loadparm, NULL);
353 object_property_set_description(obj, "loadparm",
354 "Up to 8 chars in set of [A-Za-z0-9. ] (lower case chars converted"
355 " to upper case) to pass to machine loader, boot manager,"
358 object_property_add_bool(obj, "s390-squash-mcss",
359 machine_get_squash_mcss,
360 machine_set_squash_mcss, NULL);
361 object_property_set_description(obj, "s390-squash-mcss",
362 "enable/disable squashing subchannels into the default css",
364 object_property_set_bool(obj, false, "s390-squash-mcss", NULL);
367 static const TypeInfo ccw_machine_info = {
368 .name = TYPE_S390_CCW_MACHINE,
369 .parent = TYPE_MACHINE,
371 .instance_size = sizeof(S390CcwMachineState),
372 .instance_init = s390_machine_initfn,
373 .class_size = sizeof(S390CcwMachineClass),
374 .class_init = ccw_machine_class_init,
375 .interfaces = (InterfaceInfo[]) {
377 { TYPE_HOTPLUG_HANDLER},
382 bool css_migration_enabled(void)
384 return get_machine_class()->css_migration_enabled;
387 #define DEFINE_CCW_MACHINE(suffix, verstr, latest) \
388 static void ccw_machine_##suffix##_class_init(ObjectClass *oc, \
391 MachineClass *mc = MACHINE_CLASS(oc); \
392 ccw_machine_##suffix##_class_options(mc); \
393 mc->desc = "VirtIO-ccw based S390 machine v" verstr; \
395 mc->alias = "s390-ccw-virtio"; \
396 mc->is_default = 1; \
399 static void ccw_machine_##suffix##_instance_init(Object *obj) \
401 MachineState *machine = MACHINE(obj); \
402 current_mc = S390_MACHINE_CLASS(MACHINE_GET_CLASS(machine)); \
403 ccw_machine_##suffix##_instance_options(machine); \
405 static const TypeInfo ccw_machine_##suffix##_info = { \
406 .name = MACHINE_TYPE_NAME("s390-ccw-virtio-" verstr), \
407 .parent = TYPE_S390_CCW_MACHINE, \
408 .class_init = ccw_machine_##suffix##_class_init, \
409 .instance_init = ccw_machine_##suffix##_instance_init, \
411 static void ccw_machine_register_##suffix(void) \
413 type_register_static(&ccw_machine_##suffix##_info); \
415 type_init(ccw_machine_register_##suffix)
417 #define CCW_COMPAT_2_9 \
420 .driver = TYPE_S390_STATTRIB,\
421 .property = "migration-enabled",\
425 #define CCW_COMPAT_2_8 \
428 .driver = TYPE_S390_FLIC_COMMON,\
429 .property = "adapter_routes_max_batch",\
433 #define CCW_COMPAT_2_7 \
436 #define CCW_COMPAT_2_6 \
439 .driver = TYPE_S390_IPL,\
440 .property = "iplbext_migration",\
443 .driver = TYPE_VIRTUAL_CSS_BRIDGE,\
444 .property = "css_dev_path",\
448 #define CCW_COMPAT_2_5 \
451 #define CCW_COMPAT_2_4 \
454 .driver = TYPE_S390_SKEYS,\
455 .property = "migration-enabled",\
458 .driver = "virtio-blk-ccw",\
459 .property = "max_revision",\
462 .driver = "virtio-balloon-ccw",\
463 .property = "max_revision",\
466 .driver = "virtio-serial-ccw",\
467 .property = "max_revision",\
470 .driver = "virtio-9p-ccw",\
471 .property = "max_revision",\
474 .driver = "virtio-rng-ccw",\
475 .property = "max_revision",\
478 .driver = "virtio-net-ccw",\
479 .property = "max_revision",\
482 .driver = "virtio-scsi-ccw",\
483 .property = "max_revision",\
486 .driver = "vhost-scsi-ccw",\
487 .property = "max_revision",\
491 static void ccw_machine_2_10_instance_options(MachineState *machine)
493 if (css_migration_enabled()) {
494 css_register_vmstate();
498 static void ccw_machine_2_10_class_options(MachineClass *mc)
501 DEFINE_CCW_MACHINE(2_10, "2.10", true);
503 static void ccw_machine_2_9_instance_options(MachineState *machine)
505 ccw_machine_2_10_instance_options(machine);
508 static void ccw_machine_2_9_class_options(MachineClass *mc)
510 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
512 ccw_machine_2_10_class_options(mc);
513 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_9);
514 s390mc->css_migration_enabled = false;
516 DEFINE_CCW_MACHINE(2_9, "2.9", false);
518 static void ccw_machine_2_8_instance_options(MachineState *machine)
520 ccw_machine_2_9_instance_options(machine);
523 static void ccw_machine_2_8_class_options(MachineClass *mc)
525 ccw_machine_2_9_class_options(mc);
526 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_8);
528 DEFINE_CCW_MACHINE(2_8, "2.8", false);
530 static void ccw_machine_2_7_instance_options(MachineState *machine)
532 ccw_machine_2_8_instance_options(machine);
535 static void ccw_machine_2_7_class_options(MachineClass *mc)
537 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
539 s390mc->cpu_model_allowed = false;
540 ccw_machine_2_8_class_options(mc);
541 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_7);
543 DEFINE_CCW_MACHINE(2_7, "2.7", false);
545 static void ccw_machine_2_6_instance_options(MachineState *machine)
547 ccw_machine_2_7_instance_options(machine);
550 static void ccw_machine_2_6_class_options(MachineClass *mc)
552 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
554 s390mc->ri_allowed = false;
555 ccw_machine_2_7_class_options(mc);
556 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_6);
558 DEFINE_CCW_MACHINE(2_6, "2.6", false);
560 static void ccw_machine_2_5_instance_options(MachineState *machine)
562 ccw_machine_2_6_instance_options(machine);
565 static void ccw_machine_2_5_class_options(MachineClass *mc)
567 ccw_machine_2_6_class_options(mc);
568 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_5);
570 DEFINE_CCW_MACHINE(2_5, "2.5", false);
572 static void ccw_machine_2_4_instance_options(MachineState *machine)
574 ccw_machine_2_5_instance_options(machine);
577 static void ccw_machine_2_4_class_options(MachineClass *mc)
579 ccw_machine_2_5_class_options(mc);
580 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_4);
582 DEFINE_CCW_MACHINE(2_4, "2.4", false);
584 static void ccw_machine_register_types(void)
586 type_register_static(&ccw_machine_info);
589 type_init(ccw_machine_register_types)