1 /* 2 * Device's clock input and output 3 * 4 * Copyright GreenSocs 2016-2020 5 * 6 * Authors: 7 * Frederic Konrad 8 * Damien Hedde 9 * 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. 12 */ 13 14 #ifndef QDEV_CLOCK_H 15 #define QDEV_CLOCK_H 16 17 #include "hw/clock.h" 18 19 /** 20 * qdev_init_clock_in: 21 * @dev: the device to add an input clock to 22 * @name: the name of the clock (can't be NULL). 23 * @callback: optional callback to be called on update or NULL. 24 * @opaque: argument for the callback 25 * @returns: a pointer to the newly added clock 26 * 27 * Add an input clock to device @dev as a clock named @name. 28 * This adds a child<> property. 29 * The callback will be called with @opaque as opaque parameter. 30 */ 31 Clock *qdev_init_clock_in(DeviceState *dev, const char *name, 32 ClockCallback *callback, void *opaque); 33 34 /** 35 * qdev_init_clock_out: 36 * @dev: the device to add an output clock to 37 * @name: the name of the clock (can't be NULL). 38 * @returns: a pointer to the newly added clock 39 * 40 * Add an output clock to device @dev as a clock named @name. 41 * This adds a child<> property. 42 */ 43 Clock *qdev_init_clock_out(DeviceState *dev, const char *name); 44 45 /** 46 * qdev_get_clock_in: 47 * @dev: the device which has the clock 48 * @name: the name of the clock (can't be NULL). 49 * @returns: a pointer to the clock 50 * 51 * Get the input clock @name from @dev or NULL if does not exist. 52 */ 53 Clock *qdev_get_clock_in(DeviceState *dev, const char *name); 54 55 /** 56 * qdev_get_clock_out: 57 * @dev: the device which has the clock 58 * @name: the name of the clock (can't be NULL). 59 * @returns: a pointer to the clock 60 * 61 * Get the output clock @name from @dev or NULL if does not exist. 62 */ 63 Clock *qdev_get_clock_out(DeviceState *dev, const char *name); 64 65 /** 66 * qdev_connect_clock_in: 67 * @dev: a device 68 * @name: the name of an input clock in @dev 69 * @source: the source clock (an output clock of another device for example) 70 * 71 * Set the source clock of input clock @name of device @dev to @source. 72 * @source period update will be propagated to @name clock. 73 */ 74 static inline void qdev_connect_clock_in(DeviceState *dev, const char *name, 75 Clock *source) 76 { 77 clock_set_source(qdev_get_clock_in(dev, name), source); 78 } 79 80 /** 81 * qdev_alias_clock: 82 * @dev: the device which has the clock 83 * @name: the name of the clock in @dev (can't be NULL) 84 * @alias_dev: the device to add the clock 85 * @alias_name: the name of the clock in @container 86 * @returns: a pointer to the clock 87 * 88 * Add a clock @alias_name in @alias_dev which is an alias of the clock @name 89 * in @dev. The direction _in_ or _out_ will the same as the original. 90 * An alias clock must not be modified or used by @alias_dev and should 91 * typically be only only for device composition purpose. 92 */ 93 Clock *qdev_alias_clock(DeviceState *dev, const char *name, 94 DeviceState *alias_dev, const char *alias_name); 95 96 /** 97 * qdev_finalize_clocklist: 98 * @dev: the device being finalized 99 * 100 * Clear the clocklist from @dev. Only used internally in qdev. 101 */ 102 void qdev_finalize_clocklist(DeviceState *dev); 103 104 #endif /* QDEV_CLOCK_H */ 105