2009-12-05 12:44:28 +01:00
|
|
|
/*
|
|
|
|
* QEMU S390 virtio target
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Alexander Graf <agraf@suse.de>
|
2012-12-18 08:50:59 +01:00
|
|
|
* Copyright IBM Corp 2012
|
2009-12-05 12:44:28 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
2012-12-18 08:50:59 +01:00
|
|
|
* Contributions after 2012-10-29 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU (Lesser) General Public
|
2009-12-05 12:44:28 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:00 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2013-01-25 01:16:39 +01:00
|
|
|
#include "hw/hw.h"
|
2015-03-17 17:22:46 +01:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2015-05-29 13:22:12 +02:00
|
|
|
#include "qemu/error-report.h"
|
2014-10-07 13:59:18 +02:00
|
|
|
#include "sysemu/block-backend.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/blockdev.h"
|
|
|
|
#include "sysemu/sysemu.h"
|
2012-10-24 08:43:34 +02:00
|
|
|
#include "net/net.h"
|
2013-01-25 01:16:39 +01:00
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "hw/loader.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/virtio/virtio.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/kvm.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/address-spaces.h"
|
2015-11-12 16:46:09 +01:00
|
|
|
#include "sysemu/qtest.h"
|
2009-12-05 12:44:28 +01:00
|
|
|
|
2012-10-29 03:13:23 +01:00
|
|
|
#include "hw/s390x/sclp.h"
|
2013-07-16 09:04:04 +02:00
|
|
|
#include "hw/s390x/s390_flic.h"
|
2013-01-25 01:16:39 +01:00
|
|
|
#include "hw/s390x/s390-virtio.h"
|
2015-06-26 20:01:00 +02:00
|
|
|
#include "hw/s390x/storage-keys.h"
|
2015-07-21 13:47:32 +02:00
|
|
|
#include "hw/s390x/ipl.h"
|
2015-03-09 15:56:08 +01:00
|
|
|
#include "cpu.h"
|
2009-12-05 12:44:28 +01:00
|
|
|
|
|
|
|
//#define DEBUG_S390
|
|
|
|
|
|
|
|
#ifdef DEBUG_S390
|
2013-07-29 14:16:37 +02:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-12-05 12:44:28 +01:00
|
|
|
do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
2013-07-29 14:16:37 +02:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-12-05 12:44:28 +01:00
|
|
|
do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MAX_BLK_DEVS 10
|
|
|
|
|
2015-03-09 15:56:08 +01:00
|
|
|
#define S390_TOD_CLOCK_VALUE_MISSING 0x00
|
|
|
|
#define S390_TOD_CLOCK_VALUE_PRESENT 0x01
|
|
|
|
|
2016-03-04 18:34:32 +01:00
|
|
|
static S390CPU **cpu_states;
|
2009-12-05 12:44:28 +01:00
|
|
|
|
2012-05-03 04:28:14 +02:00
|
|
|
S390CPU *s390_cpu_addr2state(uint16_t cpu_addr)
|
2009-12-05 12:44:28 +01:00
|
|
|
{
|
2016-03-04 18:34:32 +01:00
|
|
|
if (cpu_addr >= max_cpus) {
|
2009-12-05 12:44:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-04 18:34:32 +01:00
|
|
|
/* Fast lookup via CPU ID */
|
|
|
|
return cpu_states[cpu_addr];
|
2009-12-05 12:44:28 +01:00
|
|
|
}
|
|
|
|
|
2013-01-24 03:28:09 +01:00
|
|
|
void s390_init_ipl_dev(const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
2013-04-22 16:52:53 +02:00
|
|
|
const char *initrd_filename,
|
2015-02-12 18:02:13 +01:00
|
|
|
const char *firmware,
|
|
|
|
bool enforce_bios)
|
2013-01-24 03:28:09 +01:00
|
|
|
{
|
2015-10-08 12:32:13 +02:00
|
|
|
Object *new = object_new(TYPE_S390_IPL);
|
|
|
|
DeviceState *dev = DEVICE(new);
|
2013-01-24 03:28:09 +01:00
|
|
|
|
|
|
|
if (kernel_filename) {
|
|
|
|
qdev_prop_set_string(dev, "kernel", kernel_filename);
|
|
|
|
}
|
|
|
|
if (initrd_filename) {
|
|
|
|
qdev_prop_set_string(dev, "initrd", initrd_filename);
|
|
|
|
}
|
|
|
|
qdev_prop_set_string(dev, "cmdline", kernel_cmdline);
|
2013-04-22 16:52:53 +02:00
|
|
|
qdev_prop_set_string(dev, "firmware", firmware);
|
2015-02-12 18:02:13 +01:00
|
|
|
qdev_prop_set_bit(dev, "enforce_bios", enforce_bios);
|
2015-10-08 12:32:13 +02:00
|
|
|
object_property_add_child(qdev_get_machine(), TYPE_S390_IPL,
|
|
|
|
new, NULL);
|
|
|
|
object_unref(new);
|
2013-01-24 03:28:09 +01:00
|
|
|
qdev_init_nofail(dev);
|
|
|
|
}
|
|
|
|
|
2016-03-04 18:34:29 +01:00
|
|
|
void s390_init_cpus(MachineState *machine)
|
2013-01-24 03:28:09 +01:00
|
|
|
{
|
|
|
|
int i;
|
2016-03-04 18:34:33 +01:00
|
|
|
gchar *name;
|
2013-01-24 03:28:09 +01:00
|
|
|
|
2016-03-04 18:34:29 +01:00
|
|
|
if (machine->cpu_model == NULL) {
|
|
|
|
machine->cpu_model = "host";
|
2013-01-24 03:28:09 +01:00
|
|
|
}
|
|
|
|
|
2016-03-10 10:19:46 +01:00
|
|
|
cpu_states = g_new0(S390CPU *, max_cpus);
|
2013-01-24 03:28:09 +01:00
|
|
|
|
2016-03-04 18:34:33 +01:00
|
|
|
for (i = 0; i < max_cpus; i++) {
|
|
|
|
name = g_strdup_printf("cpu[%i]", i);
|
|
|
|
object_property_add_link(OBJECT(machine), name, TYPE_S390_CPU,
|
|
|
|
(Object **) &cpu_states[i],
|
|
|
|
object_property_allow_set_link,
|
|
|
|
OBJ_PROP_LINK_UNREF_ON_RELEASE,
|
|
|
|
&error_abort);
|
|
|
|
g_free(name);
|
|
|
|
}
|
2013-01-24 03:28:09 +01:00
|
|
|
|
2016-03-04 18:34:33 +01:00
|
|
|
for (i = 0; i < smp_cpus; i++) {
|
2016-03-04 18:34:34 +01:00
|
|
|
s390x_new_cpu(machine->cpu_model, i, &error_fatal);
|
2013-01-24 03:28:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void s390_create_virtio_net(BusState *bus, const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < nb_nics; i++) {
|
|
|
|
NICInfo *nd = &nd_table[i];
|
|
|
|
DeviceState *dev;
|
|
|
|
|
|
|
|
if (!nd->model) {
|
|
|
|
nd->model = g_strdup("virtio");
|
|
|
|
}
|
|
|
|
|
2015-12-15 17:49:15 +01:00
|
|
|
qemu_check_nic_model(nd, "virtio");
|
2013-01-24 03:28:09 +01:00
|
|
|
|
|
|
|
dev = qdev_create(bus, name);
|
|
|
|
qdev_set_nic_properties(dev, nd);
|
|
|
|
qdev_init_nofail(dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-09 15:56:08 +01:00
|
|
|
void gtod_save(QEMUFile *f, void *opaque)
|
|
|
|
{
|
|
|
|
uint64_t tod_low;
|
|
|
|
uint8_t tod_high;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = s390_get_clock(&tod_high, &tod_low);
|
|
|
|
if (r) {
|
|
|
|
fprintf(stderr, "WARNING: Unable to get guest clock for migration. "
|
|
|
|
"Error code %d. Guest clock will not be migrated "
|
|
|
|
"which could cause the guest to hang.\n", r);
|
|
|
|
qemu_put_byte(f, S390_TOD_CLOCK_VALUE_MISSING);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_put_byte(f, S390_TOD_CLOCK_VALUE_PRESENT);
|
|
|
|
qemu_put_byte(f, tod_high);
|
|
|
|
qemu_put_be64(f, tod_low);
|
|
|
|
}
|
|
|
|
|
|
|
|
int gtod_load(QEMUFile *f, void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
uint64_t tod_low;
|
|
|
|
uint8_t tod_high;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (qemu_get_byte(f) == S390_TOD_CLOCK_VALUE_MISSING) {
|
|
|
|
fprintf(stderr, "WARNING: Guest clock was not migrated. This could "
|
|
|
|
"cause the guest to hang.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
tod_high = qemu_get_byte(f);
|
|
|
|
tod_low = qemu_get_be64(f);
|
|
|
|
|
|
|
|
r = s390_set_clock(&tod_high, &tod_low);
|
|
|
|
if (r) {
|
|
|
|
fprintf(stderr, "WARNING: Unable to set guest clock value. "
|
|
|
|
"s390_get_clock returned error %d. This could cause "
|
|
|
|
"the guest to hang.\n", r);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-20 14:16:35 +02:00
|
|
|
void s390_nmi(NMIState *n, int cpu_index, Error **errp)
|
|
|
|
{
|
|
|
|
CPUState *cs = qemu_get_cpu(cpu_index);
|
|
|
|
|
|
|
|
if (s390_cpu_restart(S390_CPU(cs))) {
|
2015-03-17 11:54:50 +01:00
|
|
|
error_setg(errp, QERR_UNSUPPORTED);
|
2014-08-20 14:16:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 13:47:32 +02:00
|
|
|
void s390_machine_reset(void)
|
|
|
|
{
|
|
|
|
S390CPU *ipl_cpu = S390_CPU(qemu_get_cpu(0));
|
|
|
|
|
|
|
|
qemu_devices_reset();
|
2015-07-21 11:11:11 +02:00
|
|
|
s390_cmma_reset();
|
2015-09-30 13:48:45 +02:00
|
|
|
s390_crypto_reset();
|
2015-07-21 13:47:32 +02:00
|
|
|
|
|
|
|
/* all cpus are stopped - configure and start the ipl cpu only */
|
|
|
|
s390_ipl_prepare_cpu(ipl_cpu);
|
|
|
|
s390_cpu_set_state(CPU_STATE_OPERATING, ipl_cpu);
|
|
|
|
}
|