qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v6 1/9] hw/core/clock: introduce clock objects


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH v6 1/9] hw/core/clock: introduce clock objects
Date: Mon, 25 Nov 2019 14:07:06 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.1

On 9/4/19 2:55 PM, Damien Hedde wrote:
Introduce clock objects: ClockIn and ClockOut.

These objects may be used to distribute clocks from an object to several
other objects. Each ClockIn object contains the current state of the
clock: the frequency; it allows an object to migrate its input clock state
independently of other objects.

A ClockIn may be connected to a ClockOut so that it receives update,
through a callback, whenever the Clockout is updated using the
ClockOut's set function.

This is based on the original work of Frederic Konrad.

Signed-off-by: Damien Hedde <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Philippe Mathieu-Daudé <address@hidden>
---
  Makefile.objs         |   1 +
  hw/core/Makefile.objs |   1 +
  hw/core/clock.c       | 144 ++++++++++++++++++++++++++++++++++++++++++
  hw/core/trace-events  |   6 ++
  include/hw/clock.h    | 124 ++++++++++++++++++++++++++++++++++++
  5 files changed, 276 insertions(+)
  create mode 100644 hw/core/clock.c
  create mode 100644 include/hw/clock.h

diff --git a/Makefile.objs b/Makefile.objs
index a723a47e14..4da623c759 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -153,6 +153,7 @@ trace-events-subdirs += hw/audio
  trace-events-subdirs += hw/block
  trace-events-subdirs += hw/block/dataplane
  trace-events-subdirs += hw/char
+trace-events-subdirs += hw/core
  trace-events-subdirs += hw/dma
  trace-events-subdirs += hw/hppa
  trace-events-subdirs += hw/i2c
diff --git a/hw/core/Makefile.objs b/hw/core/Makefile.objs
index 69b408ad1c..c66a5b2c6b 100644
--- a/hw/core/Makefile.objs
+++ b/hw/core/Makefile.objs
@@ -7,6 +7,7 @@ common-obj-$(CONFIG_SOFTMMU) += fw-path-provider.o
  # irq.o needed for qdev GPIO handling:
  common-obj-y += irq.o
  common-obj-y += hotplug.o
+common-obj-y += clock.o
  common-obj-$(CONFIG_SOFTMMU) += nmi.o
  common-obj-$(CONFIG_SOFTMMU) += vm-change-state-handler.o
diff --git a/hw/core/clock.c b/hw/core/clock.c
new file mode 100644
index 0000000000..888f247f2a
--- /dev/null
+++ b/hw/core/clock.c
@@ -0,0 +1,144 @@
+/*
+ * Clock inputs and outputs
+ *
+ * Copyright GreenSocs 2016-2018

2019 now?

+ *
+ * Authors:
+ *  Frederic Konrad <address@hidden>
+ *  Damien Hedde <address@hidden>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]