@@ -30,12 +30,25 @@
#define TYPE_CLOCK "qemu-clk"
#define QEMU_CLOCK(obj) OBJECT_CHECK(QEMUClock, (obj), TYPE_CLOCK)
+typedef struct ClkList ClkList;
+typedef uint64_t QEMUClkRateUpdateCallback(void *opaque, uint64_t rate);
+
typedef struct QEMUClock {
/*< private >*/
Object parent_obj;
char *name; /* name of this clock in the device. */
+ uint64_t ref_rate; /* rate of the clock which drive this pin. */
+ uint64_t rate; /* rate of this clock pin. */
+ void *opaque;
+ QEMUClkRateUpdateCallback *cb;
+ QLIST_HEAD(, ClkList) bound;
} QEMUClock;
+struct ClkList {
+ QEMUClock *clk;
+ QLIST_ENTRY(ClkList) node;
+};
+
/**
* qemu_clk_device_add_clock:
* @dev: the device on which the clock needs to be added.
@@ -59,4 +72,58 @@ void qemu_clk_device_add_clock(DeviceState *dev, QEMUClock *clk,
*/
QEMUClock *qemu_clk_device_get_clock(DeviceState *dev, const char *name);
+/**
+ * qemu_clk_bind:
+ * @out: the clock output.
+ * @in: the clock input.
+ *
+ * Connect the clock together. This is unidirectional so a
+ * qemu_clk_update_rate will go from @out to @in.
+ *
+ */
+void qemu_clk_bind(QEMUClock *out, QEMUClock *in);
+
+/**
+ * qemu_clk_unbind:
+ * @out: the clock output.
+ * @in: the clock input.
+ *
+ * Disconnect the clocks if they were bound together.
+ *
+ */
+void qemu_clk_unbind(QEMUClock *out, QEMUClock *in);
+
+/**
+ * qemu_clk_update_rate:
+ * @clk: the clock to update.
+ * @rate: the new rate in Hz.
+ *
+ * Update the @clk to the new @rate.
+ *
+ */
+void qemu_clk_update_rate(QEMUClock *clk, uint64_t rate);
+
+/**
+ * qemu_clk_refresh:
+ * @clk: the clock to be refreshed.
+ *
+ * If a model alters the topology of a clock tree, it must call this function on
+ * the clock source to refresh the clock tree.
+ *
+ */
+void qemu_clk_refresh(QEMUClock *clk);
+
+/**
+ * qemu_clk_set_callback:
+ * @clk: the clock associated to the callback.
+ * @cb: the function which is called when a refresh happen on the clock @clk.
+ * @opaque: the opaque data passed to the callback.
+ *
+ * Set the callback @cb which will be called when the clock @clk is updated.
+ *
+ */
+void qemu_clk_set_callback(QEMUClock *clk,
+ QEMUClkRateUpdateCallback *cb,
+ void *opaque);
+
#endif /* QEMU_CLOCK_H */
@@ -37,6 +37,64 @@
} \
} while (0);
+void qemu_clk_refresh(QEMUClock *clk)
+{
+ qemu_clk_update_rate(clk, clk->ref_rate);
+}
+
+void qemu_clk_update_rate(QEMUClock *clk, uint64_t rate)
+{
+ ClkList *child;
+
+ clk->ref_rate = rate;
+ clk->rate = rate;
+
+ if (clk->cb) {
+ clk->rate = clk->cb(clk->opaque, rate);
+ }
+
+ DPRINTF("%s output rate updated to %" PRIu64 "\n",
+ object_get_canonical_path(OBJECT(clk)),
+ clk->rate);
+
+ QLIST_FOREACH(child, &clk->bound, node) {
+ qemu_clk_update_rate(child->clk, clk->rate);
+ }
+}
+
+void qemu_clk_bind(QEMUClock *out, QEMUClock *in)
+{
+ ClkList *child;
+
+ child = g_malloc(sizeof(child));
+ assert(child);
+ child->clk = in;
+ object_ref(OBJECT(in));
+ QLIST_INSERT_HEAD(&out->bound, child, node);
+ qemu_clk_update_rate(in, out->rate);
+}
+
+void qemu_clk_unbind(QEMUClock *out, QEMUClock *in)
+{
+ ClkList *child, *next;
+
+ QLIST_FOREACH_SAFE(child, &out->bound, node, next) {
+ if (child->clk == in) {
+ QLIST_REMOVE(child, node);
+ g_free(child);
+ object_unref(OBJECT(in));
+ }
+ }
+}
+
+void qemu_clk_set_callback(QEMUClock *clk,
+ QEMUClkRateUpdateCallback *cb,
+ void *opaque)
+{
+ clk->cb = cb;
+ clk->opaque = opaque;
+}
+
void qemu_clk_device_add_clock(DeviceState *dev, QEMUClock *clk,
const char *name)
{