| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | /* |
| 3 | * ARM Generic Interrupt Controller using HVF platform support stub |
| 4 | * |
| 5 | * Copyright (c) 2026 Mohamed Mediouni |
| 6 | * |
| 7 | */ |
| 8 | #include "qemu/osdep.h" |
| 9 | #include "hw/intc/arm_gicv3_common.h" |
| 10 | #include "migration/vmstate.h" |
| 11 | #include "qemu/typedefs.h" |
| 12 | |
| 13 | static bool needed_never(void *opaque) |
| 14 | { |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | const VMStateDescription vmstate_gicv3_hvf = { |
| 19 | .name = "arm_gicv3/hvf_gic_state", |
| 20 | .version_id = 1, |
| 21 | .minimum_version_id = 1, |
| 22 | .needed = needed_never, |
| 23 | .version_id = 1, |
| 24 | .minimum_version_id = 1, |
| 25 | }; |