Home
last modified time | relevance | path

Searched refs:PL011_FIFO_DEPTH (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/include/hw/char/
H A Dpl011.h29 #define PL011_FIFO_DEPTH 16 macro
42 uint32_t read_fifo[PL011_FIFO_DEPTH];
/openbmc/qemu/rust/hw/char/pl011/src/
H A Ddevice_class.rs13 use crate::device::{PL011State, PL011_FIFO_DEPTH};
62 vmstate_uint32_array!(read_fifo, PL011State, PL011_FIFO_DEPTH),
H A Ddevice.rs33 pub const PL011_FIFO_DEPTH: usize = 16_usize; constant
75 pub read_fifo: [u32; PL011_FIFO_DEPTH],
476 return PL011_FIFO_DEPTH; in fifo_depth()
/openbmc/qemu/hw/char/
H A Dpl011.c156 return pl011_is_fifo_enabled(s) ? PL011_FIFO_DEPTH : 1; in pl011_get_fifo_depth()
590 VMSTATE_UINT32_ARRAY(read_fifo, PL011State, PL011_FIFO_DEPTH),