Lines Matching full:timeout
56 #define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */
58 #define ESB_WDT_INTTYPE (0x11 << 0) /* Interrupt type on timer1 timeout */
61 #define ESB_WDT_RELOAD (0x01 << 8) /* prevent timeout */
114 int64_t timeout; in OBJECT_DECLARE_SIMPLE_TYPE() local
122 timeout = d->timer1_preload; in OBJECT_DECLARE_SIMPLE_TYPE()
124 timeout = d->timer2_preload; in OBJECT_DECLARE_SIMPLE_TYPE()
127 timeout <<= 15; in OBJECT_DECLARE_SIMPLE_TYPE()
129 timeout <<= 5; in OBJECT_DECLARE_SIMPLE_TYPE()
131 /* Get the timeout in nanoseconds. */ in OBJECT_DECLARE_SIMPLE_TYPE()
133 timeout = timeout * 30; /* on a PCI bus, 1 tick is 30 ns*/ in OBJECT_DECLARE_SIMPLE_TYPE()
135 i6300esb_debug("stage %d, timeout %" PRIi64 "\n", d->stage, timeout); in OBJECT_DECLARE_SIMPLE_TYPE()
137 timer_mod(d->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + timeout); in OBJECT_DECLARE_SIMPLE_TYPE()