mirror of https://github.com/xemu-project/xemu.git
hw/misc/mips_itu: Remove MIPSITUState::cpu0 field
Since previous commit the MIPSITUState::cpu0 field is not used anymore. Remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240209090513.9401-6-philmd@linaro.org>
This commit is contained in:
parent
c2bb8e1bcc
commit
b8db6be27b
|
@ -103,8 +103,6 @@ static void mips_cps_realize(DeviceState *dev, Error **errp)
|
||||||
/* Inter-Thread Communication Unit */
|
/* Inter-Thread Communication Unit */
|
||||||
if (itu_present) {
|
if (itu_present) {
|
||||||
object_initialize_child(OBJECT(dev), "itu", &s->itu, TYPE_MIPS_ITU);
|
object_initialize_child(OBJECT(dev), "itu", &s->itu, TYPE_MIPS_ITU);
|
||||||
object_property_set_link(OBJECT(&s->itu), "cpu[0]",
|
|
||||||
OBJECT(first_cpu), &error_abort);
|
|
||||||
object_property_set_uint(OBJECT(&s->itu), "num-fifo", 16,
|
object_property_set_uint(OBJECT(&s->itu), "num-fifo", 16,
|
||||||
&error_abort);
|
&error_abort);
|
||||||
object_property_set_uint(OBJECT(&s->itu), "num-semaphores", 16,
|
object_property_set_uint(OBJECT(&s->itu), "num-semaphores", 16,
|
||||||
|
|
|
@ -527,10 +527,6 @@ static void mips_itu_realize(DeviceState *dev, Error **errp)
|
||||||
s->num_semaphores);
|
s->num_semaphores);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!s->cpu0) {
|
|
||||||
error_setg(errp, "Missing 'cpu[0]' property");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
s->cell = g_new(ITCStorageCell, get_num_cells(s));
|
s->cell = g_new(ITCStorageCell, get_num_cells(s));
|
||||||
}
|
}
|
||||||
|
@ -558,7 +554,6 @@ static Property mips_itu_properties[] = {
|
||||||
ITC_FIFO_NUM_MAX),
|
ITC_FIFO_NUM_MAX),
|
||||||
DEFINE_PROP_UINT32("num-semaphores", MIPSITUState, num_semaphores,
|
DEFINE_PROP_UINT32("num-semaphores", MIPSITUState, num_semaphores,
|
||||||
ITC_SEMAPH_NUM_MAX),
|
ITC_SEMAPH_NUM_MAX),
|
||||||
DEFINE_PROP_LINK("cpu[0]", MIPSITUState, cpu0, TYPE_MIPS_CPU, ArchCPU *),
|
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,6 @@ struct MIPSITUState {
|
||||||
|
|
||||||
/* SAAR */
|
/* SAAR */
|
||||||
uint64_t *saar;
|
uint64_t *saar;
|
||||||
ArchCPU *cpu0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Get ITC Configuration Tag memory region. */
|
/* Get ITC Configuration Tag memory region. */
|
||||||
|
|
Loading…
Reference in New Issue