qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw/core/clock: always iterate through childs in clock_propagate_period
@ 2024-04-18 19:16 Raphael Poggi
  2024-04-18 19:43 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 7+ messages in thread
From: Raphael Poggi @ 2024-04-18 19:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: luc, damien.hedde, Raphael Poggi

When dealing with few clocks depending with each others, sometimes
we might only want to update the multiplier/diviser on a specific clock
(cf clockB in drawing below) and call "clock_propagate(clockA)" to
update the childs period according to the potential new multiplier/diviser values.

+--------+     +--------+      +--------+
| clockA | --> | clockB |  --> | clockC |
+--------+     +--------+      +--------+

The actual code would not allow that because, since we cannot call
"clock_propagate" directly on a child, it would exit on the
first child has the period has not changed for clockB, only clockC is
impacted in our example.

Signed-off-by: Raphael Poggi <raphael.poggi@lynxleap.co.uk>
---
 hw/core/clock.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/core/clock.c b/hw/core/clock.c
index a19c7db7df..85421f8b55 100644
--- a/hw/core/clock.c
+++ b/hw/core/clock.c
@@ -101,8 +101,9 @@ static void clock_propagate_period(Clock *clk, bool call_callbacks)
             if (call_callbacks) {
                 clock_call_callback(child, ClockUpdate);
             }
-            clock_propagate_period(child, call_callbacks);
         }
+
+        clock_propagate_period(child, call_callbacks);
     }
 }
 
-- 
2.44.0



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

end of thread, other threads:[~2024-04-19 16:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-18 19:16 [PATCH] hw/core/clock: always iterate through childs in clock_propagate_period Raphael Poggi
2024-04-18 19:43 ` Philippe Mathieu-Daudé
2024-04-18 20:39   ` Raphael Poggi
2024-04-19 15:08     ` Peter Maydell
2024-04-19 16:08       ` Raphael Poggi
2024-04-19 16:24         ` Peter Maydell
2024-04-19 16:30         ` Philippe Mathieu-Daudé

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).