]> Git Repo - qemu.git/blame - hw/s390x/s390-virtio-ccw.c
s390x/css: activate ChannelSubSys migration
[qemu.git] / hw / s390x / s390-virtio-ccw.c
CommitLineData
a5c95808
CH
1/*
2 * virtio ccw machine
3 *
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <[email protected]>
6 *
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
9 * directory.
10 */
11
9615495a 12#include "qemu/osdep.h"
da34e65c 13#include "qapi/error.h"
4771d756
PB
14#include "qemu-common.h"
15#include "cpu.h"
a5c95808
CH
16#include "hw/boards.h"
17#include "exec/address-spaces.h"
18#include "s390-virtio.h"
83c9f4ca 19#include "hw/s390x/sclp.h"
3a553fc6 20#include "hw/s390x/s390_flic.h"
bd3f16ac
PB
21#include "hw/s390x/ioinst.h"
22#include "hw/s390x/css.h"
a5c95808 23#include "virtio-ccw.h"
b6fe0124 24#include "qemu/config-file.h"
8cba80c3 25#include "s390-pci-bus.h"
0f5f6691 26#include "hw/s390x/storage-keys.h"
903fd80b 27#include "hw/s390x/storage-attributes.h"
54d8ec84 28#include "hw/compat.h"
04ca4b92 29#include "ipl.h"
8b8a61ad 30#include "hw/s390x/s390-virtio-ccw.h"
dd70bd0d 31#include "hw/s390x/css-bridge.h"
f2a8f0a6 32#include "migration/register.h"
2eb1cd07 33
09c7f58c 34static const char *const reset_dev_types[] = {
3f9e4859 35 TYPE_VIRTUAL_CSS_BRIDGE,
09c7f58c
DH
36 "s390-sclp-event-facility",
37 "s390-flic",
38 "diag288",
39};
40
d9f090ec 41void subsystem_reset(void)
4e872a3f 42{
09c7f58c
DH
43 DeviceState *dev;
44 int i;
4e872a3f 45
09c7f58c
DH
46 for (i = 0; i < ARRAY_SIZE(reset_dev_types); i++) {
47 dev = DEVICE(object_resolve_path_type("", reset_dev_types[i], NULL));
48 if (dev) {
49 qdev_reset_all(dev);
50 }
0c7322cf 51 }
4e872a3f
CB
52}
53
a5c95808
CH
54static int virtio_ccw_hcall_notify(const uint64_t *args)
55{
56 uint64_t subch_id = args[0];
57 uint64_t queue = args[1];
58 SubchDev *sch;
59 int cssid, ssid, schid, m;
60
61 if (ioinst_disassemble_sch_ident(subch_id, &m, &cssid, &ssid, &schid)) {
62 return -EINVAL;
63 }
64 sch = css_find_subch(m, cssid, ssid, schid);
65 if (!sch || !css_subch_visible(sch)) {
66 return -EINVAL;
67 }
b1914b82 68 if (queue >= VIRTIO_QUEUE_MAX) {
b57ed9bf
CH
69 return -EINVAL;
70 }
a5c95808
CH
71 virtio_queue_notify(virtio_ccw_get_vdev(sch), queue);
72 return 0;
73
74}
75
76static int virtio_ccw_hcall_early_printk(const uint64_t *args)
77{
78 uint64_t mem = args[0];
79
80 if (mem < ram_size) {
81 /* Early printk */
82 return 0;
83 }
84 return -EINVAL;
85}
86
87static void virtio_ccw_register_hcalls(void)
88{
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);
94}
95
80d23275 96void s390_memory_init(ram_addr_t mem_size)
a5c95808 97{
a5c95808
CH
98 MemoryRegion *sysmem = get_system_memory();
99 MemoryRegion *ram = g_new(MemoryRegion, 1);
80d23275
DH
100
101 /* allocate RAM for core */
ae23a335 102 memory_region_allocate_system_memory(ram, NULL, "s390.ram", mem_size);
80d23275
DH
103 memory_region_add_subregion(sysmem, 0, ram);
104
105 /* Initialize storage key device */
106 s390_skeys_init();
903fd80b
CI
107 /* Initialize storage attributes device */
108 s390_stattrib_init();
80d23275
DH
109}
110
1b6e7482
LV
111static SaveVMHandlers savevm_gtod = {
112 .save_state = gtod_save,
113 .load_state = gtod_load,
114};
115
80d23275
DH
116static void ccw_init(MachineState *machine)
117{
a5c95808
CH
118 int ret;
119 VirtualCssBus *css_bus;
8cba80c3 120 DeviceState *dev;
b6fe0124 121
1cf065fb 122 s390_sclp_init();
80d23275 123 s390_memory_init(machine->ram_size);
a5c95808 124
c572d3f3
FL
125 s390_flic_init();
126
a5c95808
CH
127 /* get a BUS */
128 css_bus = virtual_css_bus_init();
3ef96221 129 s390_init_ipl_dev(machine->kernel_filename, machine->kernel_cmdline,
5f31ade0
FA
130 machine->initrd_filename, "s390-ccw.img",
131 "s390-netboot.img", true);
a5c95808 132
8cba80c3
FB
133 dev = qdev_create(NULL, TYPE_S390_PCI_HOST_BRIDGE);
134 object_property_add_child(qdev_get_machine(), TYPE_S390_PCI_HOST_BRIDGE,
135 OBJECT(dev), NULL);
136 qdev_init_nofail(dev);
137
a5c95808
CH
138 /* register hypercalls */
139 virtio_ccw_register_hcalls();
140
a5c95808 141 /* init CPUs */
d2eae207 142 s390_init_cpus(machine);
a5c95808
CH
143
144 if (kvm_enabled()) {
145 kvm_s390_enable_css_support(s390_cpu_addr2state(0));
146 }
147 /*
817d4a6b
DJS
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.
a5c95808 151 */
817d4a6b
DJS
152 if (css_bus->squash_mcss) {
153 ret = css_create_css_image(0, true);
154 } else {
155 ret = css_create_css_image(VIRTUAL_CSSID, true);
156 }
a5c95808
CH
157 assert(ret == 0);
158
159 /* Create VirtIO network adapters */
160 s390_create_virtio_net(BUS(css_bus), "virtio-net-ccw");
3f9e59bb
JH
161
162 /* Register savevm handler for guest TOD clock */
1b6e7482 163 register_savevm_live(NULL, "todclock", 0, 1, &savevm_gtod, kvm_state);
a5c95808
CH
164}
165
502edbf8
MR
166static void s390_cpu_plug(HotplugHandler *hotplug_dev,
167 DeviceState *dev, Error **errp)
168{
169 gchar *name;
170 S390CPU *cpu = S390_CPU(dev);
171 CPUState *cs = CPU(dev);
172
173 name = g_strdup_printf("cpu[%i]", cpu->env.cpu_num);
174 object_property_set_link(OBJECT(hotplug_dev), OBJECT(cs), name,
175 errp);
176 g_free(name);
177}
178
179static void s390_machine_device_plug(HotplugHandler *hotplug_dev,
180 DeviceState *dev, Error **errp)
181{
182 if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
183 s390_cpu_plug(hotplug_dev, dev, errp);
184 }
185}
186
187static HotplugHandler *s390_get_hotplug_handler(MachineState *machine,
188 DeviceState *dev)
189{
190 if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
191 return HOTPLUG_HANDLER(machine);
192 }
193 return NULL;
194}
195
a006b67f
MR
196static void s390_hot_add_cpu(const int64_t id, Error **errp)
197{
198 MachineState *machine = MACHINE(qdev_get_machine());
a006b67f 199
6b62d961 200 s390x_new_cpu(machine->cpu_model, id, errp);
a006b67f
MR
201}
202
d07aa7c7
AK
203static void ccw_machine_class_init(ObjectClass *oc, void *data)
204{
205 MachineClass *mc = MACHINE_CLASS(oc);
3dd7852f 206 NMIClass *nc = NMI_CLASS(oc);
502edbf8 207 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
9700230b 208 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
d07aa7c7 209
9700230b 210 s390mc->ri_allowed = true;
e73316d5 211 s390mc->cpu_model_allowed = true;
e996583e 212 s390mc->css_migration_enabled = true;
d07aa7c7 213 mc->init = ccw_init;
db3b2566 214 mc->reset = s390_machine_reset;
a006b67f 215 mc->hot_add_cpu = s390_hot_add_cpu;
d07aa7c7
AK
216 mc->block_default_type = IF_VIRTIO;
217 mc->no_cdrom = 1;
218 mc->no_floppy = 1;
219 mc->no_serial = 1;
220 mc->no_parallel = 1;
221 mc->no_sdcard = 1;
fb85b34d 222 mc->use_sclp = 1;
dcddc75e 223 mc->max_cpus = 248;
502edbf8
MR
224 mc->get_hotplug_handler = s390_get_hotplug_handler;
225 hc->plug = s390_machine_device_plug;
3dd7852f 226 nc->nmi_monitor_handler = s390_nmi;
d07aa7c7
AK
227}
228
2eb1cd07
TK
229static inline bool machine_get_aes_key_wrap(Object *obj, Error **errp)
230{
231 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
232
233 return ms->aes_key_wrap;
234}
235
236static inline void machine_set_aes_key_wrap(Object *obj, bool value,
237 Error **errp)
238{
239 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
240
241 ms->aes_key_wrap = value;
242}
243
244static inline bool machine_get_dea_key_wrap(Object *obj, Error **errp)
245{
246 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
247
248 return ms->dea_key_wrap;
249}
250
251static inline void machine_set_dea_key_wrap(Object *obj, bool value,
252 Error **errp)
253{
254 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
255
256 ms->dea_key_wrap = value;
257}
258
cec8bbf7 259static S390CcwMachineClass *current_mc;
9700230b 260
cec8bbf7
HP
261static S390CcwMachineClass *get_machine_class(void)
262{
263 if (unlikely(!current_mc)) {
392529cb 264 /*
cec8bbf7
HP
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.
268 */
269 current_mc = S390_MACHINE_CLASS(
270 object_class_by_name(TYPE_S390_CCW_MACHINE));
9700230b 271 }
cec8bbf7 272 return current_mc;
9700230b
FZ
273}
274
cec8bbf7 275bool ri_allowed(void)
e73316d5 276{
cec8bbf7
HP
277 if (!kvm_enabled()) {
278 return false;
e73316d5 279 }
cec8bbf7
HP
280 /* for "none" machine this results in true */
281 return get_machine_class()->ri_allowed;
282}
283
284bool cpu_model_allowed(void)
285{
286 /* for "none" machine this results in true */
287 return get_machine_class()->cpu_model_allowed;
e73316d5
CB
288}
289
7104bae9
FA
290static char *machine_get_loadparm(Object *obj, Error **errp)
291{
292 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
293
294 return g_memdup(ms->loadparm, sizeof(ms->loadparm));
295}
296
297static void machine_set_loadparm(Object *obj, const char *val, Error **errp)
298{
299 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
300 int i;
301
302 for (i = 0; i < sizeof(ms->loadparm) && val[i]; i++) {
303 uint8_t c = toupper(val[i]); /* mimic HMC */
304
305 if (('A' <= c && c <= 'Z') || ('0' <= c && c <= '9') || (c == '.') ||
306 (c == ' ')) {
307 ms->loadparm[i] = c;
308 } else {
309 error_setg(errp, "LOADPARM: invalid character '%c' (ASCII 0x%02x)",
310 c, c);
311 return;
312 }
313 }
314
315 for (; i < sizeof(ms->loadparm); i++) {
316 ms->loadparm[i] = ' '; /* pad right with spaces */
317 }
318}
274250c3
XFR
319static inline bool machine_get_squash_mcss(Object *obj, Error **errp)
320{
321 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
322
323 return ms->s390_squash_mcss;
324}
325
326static inline void machine_set_squash_mcss(Object *obj, bool value,
327 Error **errp)
328{
329 S390CcwMachineState *ms = S390_CCW_MACHINE(obj);
330
331 ms->s390_squash_mcss = value;
332}
7104bae9 333
2eb1cd07
TK
334static inline void s390_machine_initfn(Object *obj)
335{
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",
341 NULL);
342 object_property_set_bool(obj, true, "aes-key-wrap", NULL);
343
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",
349 NULL);
350 object_property_set_bool(obj, true, "dea-key-wrap", NULL);
7104bae9
FA
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,"
356 " and guest kernel",
357 NULL);
274250c3
XFR
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",
363 NULL);
364 object_property_set_bool(obj, false, "s390-squash-mcss", NULL);
2eb1cd07
TK
365}
366
d07aa7c7
AK
367static const TypeInfo ccw_machine_info = {
368 .name = TYPE_S390_CCW_MACHINE,
369 .parent = TYPE_MACHINE,
c4d3c0a2 370 .abstract = true,
2eb1cd07
TK
371 .instance_size = sizeof(S390CcwMachineState),
372 .instance_init = s390_machine_initfn,
9700230b 373 .class_size = sizeof(S390CcwMachineClass),
d07aa7c7 374 .class_init = ccw_machine_class_init,
3dd7852f
AK
375 .interfaces = (InterfaceInfo[]) {
376 { TYPE_NMI },
502edbf8 377 { TYPE_HOTPLUG_HANDLER},
3dd7852f
AK
378 { }
379 },
a5c95808
CH
380};
381
52629b3b
HP
382bool css_migration_enabled(void)
383{
384 return get_machine_class()->css_migration_enabled;
385}
386
4fca6548
JF
387#define DEFINE_CCW_MACHINE(suffix, verstr, latest) \
388 static void ccw_machine_##suffix##_class_init(ObjectClass *oc, \
389 void *data) \
390 { \
391 MachineClass *mc = MACHINE_CLASS(oc); \
392 ccw_machine_##suffix##_class_options(mc); \
393 mc->desc = "VirtIO-ccw based S390 machine v" verstr; \
394 if (latest) { \
395 mc->alias = "s390-ccw-virtio"; \
396 mc->is_default = 1; \
397 } \
398 } \
399 static void ccw_machine_##suffix##_instance_init(Object *obj) \
400 { \
401 MachineState *machine = MACHINE(obj); \
cec8bbf7 402 current_mc = S390_MACHINE_CLASS(MACHINE_GET_CLASS(machine)); \
4fca6548
JF
403 ccw_machine_##suffix##_instance_options(machine); \
404 } \
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, \
410 }; \
411 static void ccw_machine_register_##suffix(void) \
412 { \
413 type_register_static(&ccw_machine_##suffix##_info); \
414 } \
0e6aac87 415 type_init(ccw_machine_register_##suffix)
4fca6548 416
10890873 417#define CCW_COMPAT_2_9 \
903fd80b
CI
418 HW_COMPAT_2_9 \
419 {\
420 .driver = TYPE_S390_STATTRIB,\
421 .property = "migration-enabled",\
422 .value = "off",\
423 },
10890873 424
113725a6 425#define CCW_COMPAT_2_8 \
069097da
HP
426 HW_COMPAT_2_8 \
427 {\
428 .driver = TYPE_S390_FLIC_COMMON,\
429 .property = "adapter_routes_max_batch",\
430 .value = "64",\
431 },
113725a6 432
61823988
CH
433#define CCW_COMPAT_2_7 \
434 HW_COMPAT_2_7
435
946e55f3 436#define CCW_COMPAT_2_6 \
04ca4b92
AY
437 HW_COMPAT_2_6 \
438 {\
439 .driver = TYPE_S390_IPL,\
440 .property = "iplbext_migration",\
441 .value = "off",\
2a79eb1a
CH
442 }, {\
443 .driver = TYPE_VIRTUAL_CSS_BRIDGE,\
444 .property = "css_dev_path",\
445 .value = "off",\
04ca4b92 446 },
946e55f3 447
cf87e0a3
SL
448#define CCW_COMPAT_2_5 \
449 HW_COMPAT_2_5
450
9ef40173 451#define CCW_COMPAT_2_4 \
54d8ec84 452 HW_COMPAT_2_4 \
9ef40173
JH
453 {\
454 .driver = TYPE_S390_SKEYS,\
455 .property = "migration-enabled",\
456 .value = "off",\
542571d5
CH
457 },{\
458 .driver = "virtio-blk-ccw",\
459 .property = "max_revision",\
460 .value = "0",\
461 },{\
462 .driver = "virtio-balloon-ccw",\
463 .property = "max_revision",\
464 .value = "0",\
465 },{\
466 .driver = "virtio-serial-ccw",\
467 .property = "max_revision",\
468 .value = "0",\
469 },{\
470 .driver = "virtio-9p-ccw",\
471 .property = "max_revision",\
472 .value = "0",\
473 },{\
474 .driver = "virtio-rng-ccw",\
475 .property = "max_revision",\
476 .value = "0",\
085b0b05
CH
477 },{\
478 .driver = "virtio-net-ccw",\
479 .property = "max_revision",\
480 .value = "0",\
481 },{\
482 .driver = "virtio-scsi-ccw",\
483 .property = "max_revision",\
484 .value = "0",\
485 },{\
486 .driver = "vhost-scsi-ccw",\
487 .property = "max_revision",\
488 .value = "0",\
9ef40173
JH
489 },
490
10890873
CH
491static void ccw_machine_2_10_instance_options(MachineState *machine)
492{
e996583e
HP
493 if (css_migration_enabled()) {
494 css_register_vmstate();
495 }
10890873
CH
496}
497
498static void ccw_machine_2_10_class_options(MachineClass *mc)
499{
500}
501DEFINE_CCW_MACHINE(2_10, "2.10", true);
502
113725a6
CH
503static void ccw_machine_2_9_instance_options(MachineState *machine)
504{
10890873 505 ccw_machine_2_10_instance_options(machine);
113725a6
CH
506}
507
508static void ccw_machine_2_9_class_options(MachineClass *mc)
509{
52629b3b
HP
510 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
511
10890873
CH
512 ccw_machine_2_10_class_options(mc);
513 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_9);
52629b3b 514 s390mc->css_migration_enabled = false;
113725a6 515}
10890873 516DEFINE_CCW_MACHINE(2_9, "2.9", false);
113725a6 517
61823988
CH
518static void ccw_machine_2_8_instance_options(MachineState *machine)
519{
113725a6 520 ccw_machine_2_9_instance_options(machine);
61823988
CH
521}
522
523static void ccw_machine_2_8_class_options(MachineClass *mc)
524{
113725a6
CH
525 ccw_machine_2_9_class_options(mc);
526 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_8);
61823988 527}
113725a6 528DEFINE_CCW_MACHINE(2_8, "2.8", false);
61823988 529
946e55f3
CH
530static void ccw_machine_2_7_instance_options(MachineState *machine)
531{
61823988 532 ccw_machine_2_8_instance_options(machine);
946e55f3
CH
533}
534
535static void ccw_machine_2_7_class_options(MachineClass *mc)
536{
e73316d5
CB
537 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
538
539 s390mc->cpu_model_allowed = false;
61823988
CH
540 ccw_machine_2_8_class_options(mc);
541 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_7);
946e55f3 542}
61823988 543DEFINE_CCW_MACHINE(2_7, "2.7", false);
946e55f3 544
4fca6548 545static void ccw_machine_2_6_instance_options(MachineState *machine)
c4d3c0a2 546{
946e55f3 547 ccw_machine_2_7_instance_options(machine);
c4d3c0a2
CB
548}
549
4fca6548 550static void ccw_machine_2_6_class_options(MachineClass *mc)
84b48ad6 551{
9700230b
FZ
552 S390CcwMachineClass *s390mc = S390_MACHINE_CLASS(mc);
553
554 s390mc->ri_allowed = false;
946e55f3
CH
555 ccw_machine_2_7_class_options(mc);
556 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_6);
84b48ad6 557}
946e55f3 558DEFINE_CCW_MACHINE(2_6, "2.6", false);
84b48ad6 559
4fca6548
JF
560static void ccw_machine_2_5_instance_options(MachineState *machine)
561{
946e55f3 562 ccw_machine_2_6_instance_options(machine);
4fca6548 563}
84b48ad6 564
4fca6548 565static void ccw_machine_2_5_class_options(MachineClass *mc)
b21b7598 566{
946e55f3 567 ccw_machine_2_6_class_options(mc);
4fca6548
JF
568 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_5);
569}
570DEFINE_CCW_MACHINE(2_5, "2.5", false);
b21b7598 571
4fca6548
JF
572static void ccw_machine_2_4_instance_options(MachineState *machine)
573{
574 ccw_machine_2_5_instance_options(machine);
b21b7598
CH
575}
576
4fca6548
JF
577static void ccw_machine_2_4_class_options(MachineClass *mc)
578{
946e55f3 579 ccw_machine_2_5_class_options(mc);
4fca6548
JF
580 SET_MACHINE_COMPAT(mc, CCW_COMPAT_2_4);
581}
582DEFINE_CCW_MACHINE(2_4, "2.4", false);
b21b7598 583
d07aa7c7 584static void ccw_machine_register_types(void)
a5c95808 585{
d07aa7c7 586 type_register_static(&ccw_machine_info);
a5c95808
CH
587}
588
d07aa7c7 589type_init(ccw_machine_register_types)
This page took 0.304802 seconds and 4 git commands to generate.