[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 04/10] macfb: add VMStateDescription fields for display type a
|
From: |
Mark Cave-Ayland |
|
Subject: |
[PATCH v3 04/10] macfb: add VMStateDescription fields for display type and VBL timer |
|
Date: |
Sat, 5 Mar 2022 15:55:24 +0000 |
These fields are required in the migration stream to restore macfb state
correctly.
Note this is a migration break, but since there are upcoming incompatible
changes
for the q800 machine (and migration does not even succeed without these patches)
then this is not an issue.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
---
hw/display/macfb.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hw/display/macfb.c b/hw/display/macfb.c
index dfdae90144..7371986480 100644
--- a/hw/display/macfb.c
+++ b/hw/display/macfb.c
@@ -625,9 +625,11 @@ static const VMStateDescription vmstate_macfb = {
.minimum_version_id = 1,
.post_load = macfb_post_load,
.fields = (VMStateField[]) {
+ VMSTATE_UINT8(type, MacfbState),
VMSTATE_UINT8_ARRAY(color_palette, MacfbState, 256 * 3),
VMSTATE_UINT32(palette_current, MacfbState),
VMSTATE_UINT32_ARRAY(regs, MacfbState, MACFB_NUM_REGS),
+ VMSTATE_TIMER_PTR(vbl_timer, MacfbState),
VMSTATE_END_OF_LIST()
}
};
--
2.20.1
- [PATCH v3 00/10] q800: migration fixes, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 01/10] macfb: add VMStateDescription for MacfbNubusState and MacfbSysBusState, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 02/10] macfb: don't use special irq_state and irq_mask variables in MacfbState, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 03/10] macfb: increase number of registers saved in MacfbState, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 04/10] macfb: add VMStateDescription fields for display type and VBL timer,
Mark Cave-Ayland <=
- [PATCH v3 05/10] macfb: set initial value of mode control registers in macfb_common_realize(), Mark Cave-Ayland, 2022/03/05
- [PATCH v3 06/10] esp: introduce esp_set_pdma_cb() function, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 07/10] esp: introduce esp_pdma_cb() function, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 09/10] esp: include the current PDMA callback in the migration stream, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 08/10] esp: convert ESPState pdma_cb from a function pointer to an integer, Mark Cave-Ayland, 2022/03/05
- [PATCH v3 10/10] esp: recreate ESPState current_req after migration, Mark Cave-Ayland, 2022/03/05