mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
hw/intc: Convert TYPE_ARM_GICV3_COMMON to 3-phase reset
Convert the TYPE_ARM_GICV3_COMMON parent class to 3-phase reset. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20221109161444.3397405-6-peter.maydell@linaro.org
This commit is contained in:
parent
d39270b559
commit
183cac319e
1 changed files with 4 additions and 3 deletions
|
@ -450,9 +450,9 @@ static void arm_gicv3_finalize(Object *obj)
|
|||
g_free(s->redist_region_count);
|
||||
}
|
||||
|
||||
static void arm_gicv3_common_reset(DeviceState *dev)
|
||||
static void arm_gicv3_common_reset_hold(Object *obj)
|
||||
{
|
||||
GICv3State *s = ARM_GICV3_COMMON(dev);
|
||||
GICv3State *s = ARM_GICV3_COMMON(obj);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < s->num_cpu; i++) {
|
||||
|
@ -578,9 +578,10 @@ static Property arm_gicv3_common_properties[] = {
|
|||
static void arm_gicv3_common_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
ResettableClass *rc = RESETTABLE_CLASS(klass);
|
||||
ARMLinuxBootIfClass *albifc = ARM_LINUX_BOOT_IF_CLASS(klass);
|
||||
|
||||
dc->reset = arm_gicv3_common_reset;
|
||||
rc->phases.hold = arm_gicv3_common_reset_hold;
|
||||
dc->realize = arm_gicv3_common_realize;
|
||||
device_class_set_props(dc, arm_gicv3_common_properties);
|
||||
dc->vmsd = &vmstate_gicv3;
|
||||
|
|
Loading…
Reference in a new issue