@@ -557,8 +557,20 @@ ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
*/
CPUState *cpu_generic_init(const char *typename, const char *cpu_model);
/**
+ * cpu_generic_init_no_realize:
+ * @typename: The CPU base type.
+ * @cpu_model: The model string including optional parameters.
+ *
+ * Instantiates a CPU, processes optional parameters.
+ *
+ * Returns: A #CPUState or %NULL if an error occurred.
+ */
+CPUState *cpu_generic_init_no_realize(const char *typename,
+ const char *cpu_model);
+
+/**
* cpu_has_work:
* @cpu: The vCPU to check.
*
* Checks whether the CPU has work to do.
@@ -42,9 +42,10 @@ bool cpu_exists(int64_t id)
}
return false;
}
-CPUState *cpu_generic_init(const char *typename, const char *cpu_model)
+static CPUState *cpu_generic_init_common(const char *typename,
+ const char *cpu_model, bool realize)
{
char *str, *name, *featurestr;
CPUState *cpu;
ObjectClass *oc;
@@ -69,10 +70,11 @@ CPUState *cpu_generic_init(const char *typename, const char *cpu_model)
if (err != NULL) {
goto out;
}
- object_property_set_bool(OBJECT(cpu), true, "realized", &err);
-
+ if (realize) {
+ object_property_set_bool(OBJECT(cpu), true, "realized", &err);
+ }
out:
if (err != NULL) {
error_report_err(err);
object_unref(OBJECT(cpu));
@@ -81,8 +83,19 @@ out:
return cpu;
}
+CPUState *cpu_generic_init(const char *typename, const char *cpu_model)
+{
+ return cpu_generic_init_common(typename, cpu_model, true);
+}
+
+CPUState *cpu_generic_init_no_realize(const char *typename,
+ const char *cpu_model)
+{
+ return cpu_generic_init_common(typename, cpu_model, false);
+}
+
bool cpu_paging_enabled(const CPUState *cpu)
{
CPUClass *cc = CPU_GET_CLASS(cpu);
This will allow PowerPC machines to compute the device-tree cpu id between initialization and realization of the cpu. Signed-off-by: Greg Kurz <groug@kaod.org> --- include/qom/cpu.h | 12 ++++++++++++ qom/cpu.c | 19 ++++++++++++++++--- 2 files changed, 28 insertions(+), 3 deletions(-)