q->cwptr = ccount ? (q->rptr + ccount) & (PS2_BUFFER_SIZE - 1) : -1;
}
-static void ps2_kbd_reset(DeviceState *dev)
+static void ps2_kbd_reset_hold(Object *obj)
{
- PS2DeviceClass *ps2dc = PS2_DEVICE_GET_CLASS(dev);
- PS2KbdState *s = PS2_KBD_DEVICE(dev);
+ PS2DeviceClass *ps2dc = PS2_DEVICE_GET_CLASS(obj);
+ PS2KbdState *s = PS2_KBD_DEVICE(obj);
trace_ps2_kbd_reset(s);
- ps2dc->parent_reset(dev);
+
+ if (ps2dc->parent_phases.hold) {
+ ps2dc->parent_phases.hold(obj);
+ }
s->scan_enabled = 1;
s->translate = 0;
s->modifiers = 0;
}
-static void ps2_mouse_reset(DeviceState *dev)
+static void ps2_mouse_reset_hold(Object *obj)
{
- PS2DeviceClass *ps2dc = PS2_DEVICE_GET_CLASS(dev);
- PS2MouseState *s = PS2_MOUSE_DEVICE(dev);
+ PS2DeviceClass *ps2dc = PS2_DEVICE_GET_CLASS(obj);
+ PS2MouseState *s = PS2_MOUSE_DEVICE(obj);
trace_ps2_mouse_reset(s);
- ps2dc->parent_reset(dev);
+
+ if (ps2dc->parent_phases.hold) {
+ ps2dc->parent_phases.hold(obj);
+ }
s->mouse_status = 0;
s->mouse_resolution = 0;
static void ps2_kbd_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
+ ResettableClass *rc = RESETTABLE_CLASS(klass);
PS2DeviceClass *ps2dc = PS2_DEVICE_CLASS(klass);
dc->realize = ps2_kbd_realize;
- device_class_set_parent_reset(dc, ps2_kbd_reset, &ps2dc->parent_reset);
+ resettable_class_set_parent_phases(rc, NULL, ps2_kbd_reset_hold, NULL,
+ &ps2dc->parent_phases);
dc->vmsd = &vmstate_ps2_keyboard;
}
static void ps2_mouse_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
+ ResettableClass *rc = RESETTABLE_CLASS(klass);
PS2DeviceClass *ps2dc = PS2_DEVICE_CLASS(klass);
dc->realize = ps2_mouse_realize;
- device_class_set_parent_reset(dc, ps2_mouse_reset,
- &ps2dc->parent_reset);
+ resettable_class_set_parent_phases(rc, NULL, ps2_mouse_reset_hold, NULL,
+ &ps2dc->parent_phases);
dc->vmsd = &vmstate_ps2_mouse;
}