Home
last modified time | relevance | path

Searched refs:trtime (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/hw/char/
H A Drenesas_sci.c85 sci->rx_next = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + sci->trtime; in receive()
105 timer_mod(&sci->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + sci->trtime); in send_byte()
130 sci->trtime = 8 - FIELD_EX8(sci->smr, SMR, CHR); in update_trtime()
131 sci->trtime += FIELD_EX8(sci->smr, SMR, PE); in update_trtime()
132 sci->trtime += FIELD_EX8(sci->smr, SMR, STOP) + 1; in update_trtime()
134 sci->trtime *= 32 * sci->brr; in update_trtime()
135 sci->trtime *= 1 << (2 * FIELD_EX8(sci->smr, SMR, CKS)); in update_trtime()
136 sci->trtime *= NANOSECONDS_PER_SECOND; in update_trtime()
137 sci->trtime /= sci->input_freq; in update_trtime()
306 VMSTATE_INT64(trtime, RSCIState),
/openbmc/qemu/include/hw/char/
H A Drenesas_sci.h49 int64_t trtime; member