[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 07/11] hw/core/qdev: update hotplug reset regarding resettable
From: |
Damien Hedde |
Subject: |
[PATCH v6 07/11] hw/core/qdev: update hotplug reset regarding resettable |
Date: |
Fri, 20 Dec 2019 12:50:31 +0100 |
This commit make use of the resettable API to reset the device being
hotplugged when it is realized. Also it ensures it is put in a reset
state coherent with the parent it is plugged into.
Note that there is a difference in the reset. Instead of resetting
only the hotplugged device, we reset also its subtree (switch to
resettable API). This is not expected to be a problem because
sub-buses are just realized too. If a hotplugged device has any
sub-buses it is logical to reset them too at this point.
The recently added should_be_hidden and PCI's partially_hotplugged
mechanisms do not interfere with realize operation:
+ In the should_be_hidden use case, device creation is
delayed.
+ The partially_hotplugged mechanism prevents a device to be
unplugged and unrealized from qdev POV and unrealized.
Signed-off-by: Damien Hedde <address@hidden>
---
v6 update: clear the reset state before doing any reset. Although it
is apparently highly improbable that a device be realized again after
being unrealized. See here for a discussion about this point and the
partially_hotplugged/shoud_be_hidden cases.
https://lists.nongnu.org/archive/html/qemu-devel/2019-11/msg04897.html
---
include/hw/resettable.h | 8 ++++++++
hw/core/qdev.c | 15 ++++++++++++++-
hw/core/resettable.c | 5 +++++
3 files changed, 27 insertions(+), 1 deletion(-)
diff --git a/include/hw/resettable.h b/include/hw/resettable.h
index 2227c654a5..4ae2a3363c 100644
--- a/include/hw/resettable.h
+++ b/include/hw/resettable.h
@@ -153,6 +153,14 @@ struct ResettableState {
bool exit_phase_in_progress;
};
+/**
+ * resettable_state_clear:
+ * Clear the state. It puts the state to the initial (zeroed) state required
+ * to reuse an object. Typically used in realize step of base classes
+ * implementing the interface.
+ */
+void resettable_state_clear(ResettableState *state);
+
/**
* resettable_reset:
* Trigger a reset on an object @obj of type @type. @obj must implement
diff --git a/hw/core/qdev.c b/hw/core/qdev.c
index 9b22c7c879..495b5338e2 100644
--- a/hw/core/qdev.c
+++ b/hw/core/qdev.c
@@ -948,6 +948,12 @@ static void device_set_realized(Object *obj, bool value,
Error **errp)
}
}
+ /*
+ * Clear the reset state, in case the object was previously unrealized
+ * with a dirty state.
+ */
+ resettable_state_clear(&dev->reset);
+
QLIST_FOREACH(bus, &dev->child_bus, sibling) {
object_property_set_bool(OBJECT(bus), true, "realized",
&local_err);
@@ -956,7 +962,14 @@ static void device_set_realized(Object *obj, bool value,
Error **errp)
}
}
if (dev->hotplugged) {
- device_legacy_reset(dev);
+ /*
+ * Reset the device, as well as its subtree which, at this point,
+ * should be realized too.
+ */
+ resettable_assert_reset(OBJECT(dev), RESET_TYPE_COLD);
+ resettable_change_parent(OBJECT(dev), OBJECT(dev->parent_bus),
+ NULL);
+ resettable_release_reset(OBJECT(dev), RESET_TYPE_COLD);
}
dev->pending_deleted_event = false;
diff --git a/hw/core/resettable.c b/hw/core/resettable.c
index 9104a84b99..9f6d586fce 100644
--- a/hw/core/resettable.c
+++ b/hw/core/resettable.c
@@ -15,6 +15,11 @@
#include "hw/resettable.h"
#include "trace.h"
+void resettable_state_clear(ResettableState *state)
+{
+ memset(state, 0, sizeof(ResettableState));
+}
+
/**
* resettable_phase_enter/hold/exit:
* Function executing a phase recursively in a resettable object and its
--
2.24.0
- [PATCH v6 00/11] Multi-phase reset mechanism, Damien Hedde, 2019/12/20
- [PATCH v6 02/11] hw/core/qdev: add trace events to help with resettable transition, Damien Hedde, 2019/12/20
- [PATCH v6 08/11] hw/core: deprecate old reset functions and introduce new ones, Damien Hedde, 2019/12/20
- [PATCH v6 06/11] hw/core/qdev: handle parent bus change regarding resettable, Damien Hedde, 2019/12/20
- [PATCH v6 01/11] add device_legacy_reset function to prepare for reset api change, Damien Hedde, 2019/12/20
- [PATCH v6 04/11] hw/core: add Resettable support to BusClass and DeviceClass, Damien Hedde, 2019/12/20
- [PATCH v6 07/11] hw/core/qdev: update hotplug reset regarding resettable,
Damien Hedde <=
- [PATCH v6 05/11] hw/core/resettable: add support for changing parent, Damien Hedde, 2019/12/20
- [PATCH v6 10/11] vl: replace deprecated qbus_reset_all registration, Damien Hedde, 2019/12/20
- [PATCH v6 03/11] hw/core: create Resettable QOM interface, Damien Hedde, 2019/12/20
- [PATCH v6 09/11] docs/devel/reset.rst: add doc about Resettable interface, Damien Hedde, 2019/12/20
- [PATCH v6 11/11] hw/s390x/ipl: replace deprecated qdev_reset_all registration, Damien Hedde, 2019/12/20