qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MIPS - fix cycle counter timing calculations
@ 2021-11-16  7:26 Simon Burge
  2021-12-13 10:10 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 8+ messages in thread
From: Simon Burge @ 2021-11-16  7:26 UTC (permalink / raw)
  To: qemu-devel

The cp0_count_ns value is calculated from the CP0_COUNT_RATE_DEFAULT
constant in target/mips/cpu.c.  The cycle counter resolution is defined
per-CPU in target/mips/cpu-defs.c.inc; use this value for calculating
cp0_count_ns.  Fixings timing problems on guest OSs for the 20Kc CPU
which has a CCRes of 1.
---
 target/mips/cpu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/target/mips/cpu.c b/target/mips/cpu.c
index 4aae23934b..0766e25693 100644
--- a/target/mips/cpu.c
+++ b/target/mips/cpu.c
@@ -440,8 +440,9 @@ static void mips_cp0_period_set(MIPSCPU *cpu)
 {
     CPUMIPSState *env = &cpu->env;
 
+    /* env->CCRes isn't initialised this early, use env->cpu_model->CCRes. */
     env->cp0_count_ns = clock_ticks_to_ns(MIPS_CPU(cpu)->clock,
-                                          cpu->cp0_count_rate);
+                                          env->cpu_model->CCRes);
     assert(env->cp0_count_ns);
 }
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-12-15  0:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-16  7:26 [PATCH] MIPS - fix cycle counter timing calculations Simon Burge
2021-12-13 10:10 ` Philippe Mathieu-Daudé
2021-12-13 10:23   ` Philippe Mathieu-Daudé
2021-12-13 13:51     ` [PATCH v2] " Simon Burge
2021-12-14 15:12       ` Philippe Mathieu-Daudé
2021-12-15  0:01         ` Simon Burge
2021-12-13 13:54     ` [PATCH] " Simon Burge
2021-12-13 14:36       ` Daniel P. Berrangé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).