mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00

These are reported as clippy::semicolon_inside_block and clippy::as_ptr_cast_mut. clippy::semicolon_inside_block can be configured not to lint single-line blocks; just go with the default. Reviewed-by: Junjie Mao <junjie.mao@hotmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
51 lines
1.6 KiB
Rust
51 lines
1.6 KiB
Rust
// Copyright 2024, Linaro Limited
|
|
// Author(s): Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
use core::ptr::NonNull;
|
|
use std::os::raw::{c_uint, c_void};
|
|
|
|
use qemu_api::{bindings::*, zeroable::Zeroable};
|
|
|
|
use crate::device::PL011State;
|
|
|
|
pub static PL011_OPS: MemoryRegionOps = MemoryRegionOps {
|
|
read: Some(pl011_read),
|
|
write: Some(pl011_write),
|
|
read_with_attrs: None,
|
|
write_with_attrs: None,
|
|
endianness: device_endian::DEVICE_NATIVE_ENDIAN,
|
|
valid: Zeroable::ZERO,
|
|
impl_: MemoryRegionOps__bindgen_ty_2 {
|
|
min_access_size: 4,
|
|
max_access_size: 4,
|
|
..Zeroable::ZERO
|
|
},
|
|
};
|
|
|
|
unsafe extern "C" fn pl011_read(opaque: *mut c_void, addr: hwaddr, size: c_uint) -> u64 {
|
|
assert!(!opaque.is_null());
|
|
let mut state = unsafe { NonNull::new_unchecked(opaque.cast::<PL011State>()) };
|
|
let val = unsafe { state.as_mut().read(addr, size) };
|
|
match val {
|
|
std::ops::ControlFlow::Break(val) => val,
|
|
std::ops::ControlFlow::Continue(val) => {
|
|
// SAFETY: self.char_backend is a valid CharBackend instance after it's been
|
|
// initialized in realize().
|
|
let cb_ptr = unsafe { core::ptr::addr_of_mut!(state.as_mut().char_backend) };
|
|
unsafe {
|
|
qemu_chr_fe_accept_input(cb_ptr);
|
|
}
|
|
|
|
val
|
|
}
|
|
}
|
|
}
|
|
|
|
unsafe extern "C" fn pl011_write(opaque: *mut c_void, addr: hwaddr, data: u64, _size: c_uint) {
|
|
unsafe {
|
|
assert!(!opaque.is_null());
|
|
let mut state = NonNull::new_unchecked(opaque.cast::<PL011State>());
|
|
state.as_mut().write(addr, data)
|
|
}
|
|
}
|