[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v3 03/13] hw/s390x: tod: make explicit checks for accelerators when
From: |
Claudio Fontana |
Subject: |
[RFC v3 03/13] hw/s390x: tod: make explicit checks for accelerators when initializing |
Date: |
Thu, 22 Apr 2021 13:54:20 +0200 |
replace general "else" with specific checks for each possible accelerator.
Handle qtest as a NOP, and error out for an unknown accelerator used in
combination with tod.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: David Hildenbrand <david@redhat.com>
---
hw/s390x/tod.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/hw/s390x/tod.c b/hw/s390x/tod.c
index 3c2979175e..fd5a36bf24 100644
--- a/hw/s390x/tod.c
+++ b/hw/s390x/tod.c
@@ -14,6 +14,8 @@
#include "qemu/error-report.h"
#include "qemu/module.h"
#include "sysemu/kvm.h"
+#include "sysemu/tcg.h"
+#include "sysemu/qtest.h"
#include "migration/qemu-file-types.h"
#include "migration/register.h"
@@ -23,8 +25,13 @@ void s390_init_tod(void)
if (kvm_enabled()) {
obj = object_new(TYPE_KVM_S390_TOD);
- } else {
+ } else if (tcg_enabled()) {
obj = object_new(TYPE_QEMU_S390_TOD);
+ } else if (qtest_enabled()) {
+ return;
+ } else {
+ error_report("current accelerator not handled in s390_init_tod!");
+ abort();
}
object_property_add_child(qdev_get_machine(), TYPE_S390_TOD, obj);
object_unref(obj);
--
2.26.2
- [RFC v3 00/13] s390x cleanup, Claudio Fontana, 2021/04/22
- [RFC v3 02/13] hw/s390x: only build tod-tcg from the CONFIG_TCG build, Claudio Fontana, 2021/04/22
- [RFC v3 01/13] hw/s390x: rename tod-qemu.c to tod-tcg.c, Claudio Fontana, 2021/04/22
- [RFC v3 03/13] hw/s390x: tod: make explicit checks for accelerators when initializing,
Claudio Fontana <=
- [RFC v3 08/13] target/s390x: make helper.c sysemu-only, Claudio Fontana, 2021/04/22
- [RFC v3 04/13] target/s390x: remove tcg-stub.c, Claudio Fontana, 2021/04/22
- [RFC v3 06/13] target/s390x: move sysemu-only code out to cpu-sysemu.c, Claudio Fontana, 2021/04/22
- [RFC v3 05/13] target/s390x: start moving TCG-only code to tcg/, Claudio Fontana, 2021/04/22
- [RFC v3 10/13] target/s390x: remove kvm-stub.c, Claudio Fontana, 2021/04/22
- [RFC v3 07/13] target/s390x: split cpu-dump from helper.c, Claudio Fontana, 2021/04/22