4 * Copyright GreenSocs 2016-2020
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
14 #ifndef QEMU_HW_CLOCK_H
15 #define QEMU_HW_CLOCK_H
17 #include "qom/object.h"
18 #include "qemu/queue.h"
19 #include "qemu/host-utils.h"
20 #include "qemu/bitops.h"
22 #define TYPE_CLOCK "clock"
23 OBJECT_DECLARE_SIMPLE_TYPE(Clock
, CLOCK
)
26 * Argument to ClockCallback functions indicating why the callback
27 * has been called. A mask of these values logically ORed together
28 * is used to specify which events are interesting when the callback
29 * is registered, so these values must all be different bit values.
31 typedef enum ClockEvent
{
32 ClockUpdate
= 1, /* Clock period has just updated */
33 ClockPreUpdate
= 2, /* Clock period is about to update */
36 typedef void ClockCallback(void *opaque
, ClockEvent event
);
39 * clock store a value representing the clock's period in 2^-32ns unit.
41 * + periods from 2^-32ns up to 4seconds
42 * + frequency from ~0.25Hz 2e10Ghz
43 * Resolution of frequency representation decreases with frequency:
44 * + at 100MHz, resolution is ~2mHz
45 * + at 1Ghz, resolution is ~0.2Hz
46 * + at 10Ghz, resolution is ~20Hz
48 #define CLOCK_PERIOD_1SEC (1000000000llu << 32)
51 * macro helpers to convert to hertz / nanosecond
53 #define CLOCK_PERIOD_FROM_NS(ns) ((ns) * (CLOCK_PERIOD_1SEC / 1000000000llu))
54 #define CLOCK_PERIOD_FROM_HZ(hz) (((hz) != 0) ? CLOCK_PERIOD_1SEC / (hz) : 0u)
55 #define CLOCK_PERIOD_TO_HZ(per) (((per) != 0) ? CLOCK_PERIOD_1SEC / (per) : 0u)
59 * @parent_obj: parent class
60 * @period: unsigned integer representing the period of the clock
61 * @canonical_path: clock path string cache (used for trace purpose)
62 * @callback: called when clock changes
63 * @callback_opaque: argument for @callback
64 * @callback_events: mask of events when callback should be called
65 * @source: source (or parent in clock tree) of the clock
66 * @children: list of clocks connected to this one (it is their source)
67 * @sibling: structure used to form a clock list
75 /* all fields are private and should not be modified directly */
80 ClockCallback
*callback
;
81 void *callback_opaque
;
82 unsigned int callback_events
;
84 /* Clocks are organized in a clock tree */
86 QLIST_HEAD(, Clock
) children
;
87 QLIST_ENTRY(Clock
) sibling
;
91 * vmstate description entry to be added in device vmsd.
93 extern const VMStateDescription vmstate_clock
;
94 #define VMSTATE_CLOCK(field, state) \
95 VMSTATE_CLOCK_V(field, state, 0)
96 #define VMSTATE_CLOCK_V(field, state, version) \
97 VMSTATE_STRUCT_POINTER_V(field, state, version, vmstate_clock, Clock)
98 #define VMSTATE_ARRAY_CLOCK(field, state, num) \
99 VMSTATE_ARRAY_CLOCK_V(field, state, num, 0)
100 #define VMSTATE_ARRAY_CLOCK_V(field, state, num, version) \
101 VMSTATE_ARRAY_OF_POINTER_TO_STRUCT(field, state, num, version, \
102 vmstate_clock, Clock)
105 * clock_setup_canonical_path:
108 * compute the canonical path of the clock (used by log messages)
110 void clock_setup_canonical_path(Clock
*clk
);
114 * @parent: the clock parent
115 * @name: the clock object name
117 * Helper function to create a new clock and parent it to @parent. There is no
118 * need to call clock_setup_canonical_path on the returned clock as it is done
121 * @return the newly created clock
123 Clock
*clock_new(Object
*parent
, const char *name
);
126 * clock_set_callback:
127 * @clk: the clock to register the callback into
128 * @cb: the callback function
129 * @opaque: the argument to the callback
130 * @events: the events the callback should be called for
131 * (logical OR of ClockEvent enum values)
133 * Register a callback called on every clock update.
134 * Note that a clock has only one callback: you cannot register
135 * different callback functions for different events.
137 void clock_set_callback(Clock
*clk
, ClockCallback
*cb
,
138 void *opaque
, unsigned int events
);
141 * clock_clear_callback:
142 * @clk: the clock to delete the callback from
144 * Unregister the callback registered with clock_set_callback.
146 void clock_clear_callback(Clock
*clk
);
151 * @src: the source clock
153 * Setup @src as the clock source of @clk. The current @src period
154 * value is also copied to @clk and its subtree but no callback is
156 * Further @src update will be propagated to @clk and its subtree.
158 void clock_set_source(Clock
*clk
, Clock
*src
);
164 * Returns true if the clock has a source clock connected to it.
165 * This is useful for devices which have input clocks which must
166 * be connected by the board/SoC code which creates them. The
167 * device code can use this to check in its realize method that
168 * the clock has been connected.
170 static inline bool clock_has_source(const Clock
*clk
)
172 return clk
->source
!= NULL
;
177 * @clk: the clock to initialize.
178 * @value: the clock's value, 0 means unclocked
180 * Set the local cached period value of @clk to @value.
182 * @return: true if the clock is changed.
184 bool clock_set(Clock
*clk
, uint64_t value
);
186 static inline bool clock_set_hz(Clock
*clk
, unsigned hz
)
188 return clock_set(clk
, CLOCK_PERIOD_FROM_HZ(hz
));
191 static inline bool clock_set_ns(Clock
*clk
, unsigned ns
)
193 return clock_set(clk
, CLOCK_PERIOD_FROM_NS(ns
));
200 * Propagate the clock period that has been previously configured using
201 * @clock_set(). This will update recursively all connected clocks.
202 * It is an error to call this function on a clock which has a source.
203 * Note: this function must not be called during device inititialization
206 void clock_propagate(Clock
*clk
);
210 * @clk: the clock to update.
211 * @value: the new clock's value, 0 means unclocked
213 * Update the @clk to the new @value. All connected clocks will be informed
214 * of this update. This is equivalent to call @clock_set() then
215 * @clock_propagate().
217 static inline void clock_update(Clock
*clk
, uint64_t value
)
219 if (clock_set(clk
, value
)) {
220 clock_propagate(clk
);
224 static inline void clock_update_hz(Clock
*clk
, unsigned hz
)
226 clock_update(clk
, CLOCK_PERIOD_FROM_HZ(hz
));
229 static inline void clock_update_ns(Clock
*clk
, unsigned ns
)
231 clock_update(clk
, CLOCK_PERIOD_FROM_NS(ns
));
236 * @clk: the clk to fetch the clock
238 * @return: the current period.
240 static inline uint64_t clock_get(const Clock
*clk
)
245 static inline unsigned clock_get_hz(Clock
*clk
)
247 return CLOCK_PERIOD_TO_HZ(clock_get(clk
));
252 * @clk: the clock to query
253 * @ticks: number of ticks
255 * Returns the length of time in nanoseconds for this clock
256 * to tick @ticks times. Because a clock can have a period
257 * which is not a whole number of nanoseconds, it is important
258 * to use this function when calculating things like timer
259 * expiry deadlines, rather than attempting to obtain a "period
260 * in nanoseconds" value and then multiplying that by a number
263 * The result could in theory be too large to fit in a 64-bit
264 * value if the number of ticks and the clock period are both
265 * large; to avoid overflow the result will be saturated to INT64_MAX
266 * (because this is the largest valid input to the QEMUTimer APIs).
267 * Since INT64_MAX nanoseconds is almost 300 years, anything with
268 * an expiry later than that is in the "will never happen" category
269 * and callers can reasonably not special-case the saturated result.
271 static inline uint64_t clock_ticks_to_ns(const Clock
*clk
, uint64_t ticks
)
273 uint64_t ns_low
, ns_high
;
276 * clk->period is the period in units of 2^-32 ns, so
277 * (clk->period * ticks) is the required length of time in those
278 * units, and we can convert to nanoseconds by multiplying by
279 * 2^32, which is the same as shifting the 128-bit multiplication
280 * result right by 32.
282 mulu64(&ns_low
, &ns_high
, clk
->period
, ticks
);
283 if (ns_high
& MAKE_64BIT_MASK(31, 33)) {
286 return ns_low
>> 32 | ns_high
<< 32;
291 * @clk: the clock to query
292 * @ns: duration in nanoseconds
294 * Returns the number of ticks this clock would make in the given
295 * number of nanoseconds. Because a clock can have a period which
296 * is not a whole number of nanoseconds, it is important to use this
297 * function rather than attempting to obtain a "period in nanoseconds"
298 * value and then dividing the duration by that value.
300 * If the clock is stopped (ie it has period zero), returns 0.
302 * For some inputs the result could overflow a 64-bit value (because
303 * the clock's period is short and the duration is long). In these
304 * cases we truncate the result to a 64-bit value. This is on the
305 * assumption that generally the result is going to be used to report
306 * a 32-bit or 64-bit guest register value, so wrapping either cannot
307 * happen or is the desired behaviour.
309 static inline uint64_t clock_ns_to_ticks(const Clock
*clk
, uint64_t ns
)
312 * ticks = duration_in_ns / period_in_ns
313 * = ns / (period / 2^32)
314 * = (ns * 2^32) / period
315 * The hi, lo inputs to divu128() are (ns << 32) as a 128 bit value.
317 uint64_t lo
= ns
<< 32;
318 uint64_t hi
= ns
>> 32;
319 if (clk
->period
== 0) {
323 * Ignore divu128() return value as we've caught div-by-zero and don't
324 * need different behaviour for overflow.
326 divu128(&lo
, &hi
, clk
->period
);
334 * @return: true if the clock is running.
336 static inline bool clock_is_enabled(const Clock
*clk
)
338 return clock_get(clk
) != 0;
342 * clock_display_freq: return human-readable representation of clock frequency
345 * Return a string which has a human-readable representation of the
346 * clock's frequency, e.g. "33.3 MHz". This is intended for debug
347 * and display purposes.
349 * The caller is responsible for freeing the string with g_free().
351 char *clock_display_freq(Clock
*clk
);
353 #endif /* QEMU_HW_CLOCK_H */