target/openrisc: Call cpu_openrisc_clock_init() in cpu_realize()
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 14 Jan 2025 23:07:23 +0000 (00:07 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 6 Mar 2025 14:46:18 +0000 (15:46 +0100)
OpenRISC timer is architecturally tied to the CPU.

It doesn't belong to the machine init() code to
instanciate it: move its creation when a vCPU is
realized (after being created).

Reported-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250114231304.77150-1-philmd@linaro.org>

hw/openrisc/openrisc_sim.c
hw/openrisc/virt.c
target/openrisc/cpu.c

index d9e0744922a89048180e3bf450b5a3d32a906e7b..83d7c2a8afc6928dc7c85f09fe8e19049dfa256c 100644 (file)
@@ -306,8 +306,6 @@ static void openrisc_sim_init(MachineState *machine)
             exit(1);
         }
 
-        cpu_openrisc_clock_init(cpus[n]);
-
         qemu_register_reset(main_cpu_reset, cpus[n]);
     }
 
index 9afe407b00a7f6ac96b67898ab325578fd8b6ce0..3055306783e1d7b5377d2e8a5a0a7c71b93fa054 100644 (file)
@@ -487,8 +487,6 @@ static void openrisc_virt_init(MachineState *machine)
             exit(1);
         }
 
-        cpu_openrisc_clock_init(cpus[n]);
-
         qemu_register_reset(main_cpu_reset, cpus[n]);
     }
 
index 0669ba2fd108f430778ae25aad29eb15c7a626df..785b065b513d081fd217747d465e8236d1e4efc4 100644 (file)
@@ -165,6 +165,10 @@ static void openrisc_cpu_realizefn(DeviceState *dev, Error **errp)
     qemu_init_vcpu(cs);
     cpu_reset(cs);
 
+#ifndef CONFIG_USER_ONLY
+    cpu_openrisc_clock_init(OPENRISC_CPU(dev));
+#endif
+
     occ->parent_realize(dev, errp);
 }