Lines Matching refs:PL011State
13 use crate::device::{PL011State, PL011_FIFO_DEPTH};
18 let state = NonNull::new_unchecked(opaque.cast::<PL011State>()); in pl011_clock_needed()
30 vmstate_clock!(clock, PL011State),
38 let mut state = NonNull::new_unchecked(opaque.cast::<PL011State>()); in pl011_post_load()
55 vmstate_uint32!(flags, PL011State),
56 vmstate_uint32!(line_control, PL011State),
57 vmstate_uint32!(receive_status_error_clear, PL011State),
58 vmstate_uint32!(control, PL011State),
59 vmstate_uint32!(dmacr, PL011State),
60 vmstate_uint32!(int_enabled, PL011State),
61 vmstate_uint32!(int_level, PL011State),
62 vmstate_uint32_array!(read_fifo, PL011State, PL011_FIFO_DEPTH),
63 vmstate_uint32!(ilpr, PL011State),
64 vmstate_uint32!(ibrd, PL011State),
65 vmstate_uint32!(fbrd, PL011State),
66 vmstate_uint32!(ifl, PL011State),
67 vmstate_int32!(read_pos, PL011State),
68 vmstate_int32!(read_count, PL011State),
69 vmstate_int32!(read_trigger, PL011State),
81 PL011State,
88 PL011State,
112 let mut state = NonNull::new_unchecked(dev.cast::<PL011State>()); in pl011_realize()
125 let mut state = NonNull::new_unchecked(dev.cast::<PL011State>()); in pl011_reset()