Home
last modified time | relevance | path

Searched refs:fbrd (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/hw/char/
H A Dpl011.c293 r = s->fbrd; in pl011_read()
353 return (clk / ((s->ibrd << 6) + s->fbrd)) << 2; in pl011_get_baudrate()
360 s->ibrd, s->fbrd); in pl011_trace_baudrate_change()
438 s->fbrd = value & FBRD_MASK; in pl011_write()
571 s->fbrd &= FBRD_MASK; in pl011_post_load()
593 VMSTATE_UINT32(fbrd, PL011State),
649 s->fbrd = 0; in pl011_reset()
H A Dtrace-events63 …e, uint64_t clock, uint32_t ibrd, uint32_t fbrd) "new baudrate %u (clk: %" PRIu64 "hz, ibrd: %" PR…
/openbmc/qemu/rust/hw/char/pl011/src/
H A Ddevice.rs78 pub fbrd: u32, field
213 Ok(FBRD) => self.fbrd.into(), in read()
270 self.fbrd = value; in write()
434 self.fbrd = 0; in reset()
522 self.fbrd &= FBRD_MASK; in post_load()
H A Ddevice_class.rs65 vmstate_uint32!(fbrd, PL011State),
/openbmc/qemu/include/hw/char/
H A Dpl011.h45 uint32_t fbrd; member
/openbmc/linux/drivers/tty/serial/
H A Damba-pl011.c2380 unsigned int lcr_h, ibrd, fbrd; in pl011_console_get_options() local
2398 fbrd = pl011_read(uap, REG_FBRD); in pl011_console_get_options()
2400 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd); in pl011_console_get_options()