mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
rust/hpet: convert num_timers to u8 type
The C version of HPET uses the uint8_t type for num_timers, and usize
type in Rust version will break migration between the C and Rust
versions.
So convert num_timers' type to u8 (consistent with the C version of
HPET) to make it friendly for vmstate support.
Note the commit 7bda68e8e2
("qdev, rust/hpet: fix type of HPET
'timers property") supports the usize type property, but the uint8
property has to be re-supported now.
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
Link: https://lore.kernel.org/r/20250414144943.1112885-7-zhao1.liu@intel.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ae39acef49
commit
8163eeee4e
1 changed files with 18 additions and 13 deletions
|
@ -12,7 +12,7 @@ use std::{
|
|||
use qemu_api::{
|
||||
bindings::{
|
||||
address_space_memory, address_space_stl_le, qdev_prop_bit, qdev_prop_bool,
|
||||
qdev_prop_uint32, qdev_prop_usize,
|
||||
qdev_prop_uint32, qdev_prop_uint8,
|
||||
},
|
||||
c_str,
|
||||
cell::{BqlCell, BqlRefCell},
|
||||
|
@ -34,9 +34,9 @@ use crate::fw_cfg::HPETFwConfig;
|
|||
const HPET_REG_SPACE_LEN: u64 = 0x400; // 1024 bytes
|
||||
|
||||
/// Minimum recommended hardware implementation.
|
||||
const HPET_MIN_TIMERS: usize = 3;
|
||||
const HPET_MIN_TIMERS: u8 = 3;
|
||||
/// Maximum timers in each timer block.
|
||||
const HPET_MAX_TIMERS: usize = 32;
|
||||
const HPET_MAX_TIMERS: u8 = 32;
|
||||
|
||||
/// Flags that HPETState.flags supports.
|
||||
const HPET_FLAG_MSI_SUPPORT_SHIFT: usize = 0;
|
||||
|
@ -559,14 +559,19 @@ pub struct HPETState {
|
|||
|
||||
/// HPET timer array managed by this timer block.
|
||||
#[doc(alias = "timer")]
|
||||
timers: [BqlRefCell<HPETTimer>; HPET_MAX_TIMERS],
|
||||
num_timers: BqlCell<usize>,
|
||||
timers: [BqlRefCell<HPETTimer>; HPET_MAX_TIMERS as usize],
|
||||
num_timers: BqlCell<u8>,
|
||||
|
||||
/// Instance id (HPET timer block ID).
|
||||
hpet_id: BqlCell<usize>,
|
||||
}
|
||||
|
||||
impl HPETState {
|
||||
// Get num_timers with `usize` type, which is useful to play with array index.
|
||||
fn get_num_timers(&self) -> usize {
|
||||
self.num_timers.get().into()
|
||||
}
|
||||
|
||||
const fn has_msi_flag(&self) -> bool {
|
||||
self.flags & (1 << HPET_FLAG_MSI_SUPPORT_SHIFT) != 0
|
||||
}
|
||||
|
@ -628,7 +633,7 @@ impl HPETState {
|
|||
self.hpet_offset
|
||||
.set(ticks_to_ns(self.counter.get()) - CLOCK_VIRTUAL.get_ns());
|
||||
|
||||
for timer in self.timers.iter().take(self.num_timers.get()) {
|
||||
for timer in self.timers.iter().take(self.get_num_timers()) {
|
||||
let mut t = timer.borrow_mut();
|
||||
|
||||
if t.is_int_enabled() && t.is_int_active() {
|
||||
|
@ -640,7 +645,7 @@ impl HPETState {
|
|||
// Halt main counter and disable interrupt generation.
|
||||
self.counter.set(self.get_ticks());
|
||||
|
||||
for timer in self.timers.iter().take(self.num_timers.get()) {
|
||||
for timer in self.timers.iter().take(self.get_num_timers()) {
|
||||
timer.borrow_mut().del_timer();
|
||||
}
|
||||
}
|
||||
|
@ -663,7 +668,7 @@ impl HPETState {
|
|||
let new_val = val << shift;
|
||||
let cleared = new_val & self.int_status.get();
|
||||
|
||||
for (index, timer) in self.timers.iter().take(self.num_timers.get()).enumerate() {
|
||||
for (index, timer) in self.timers.iter().take(self.get_num_timers()).enumerate() {
|
||||
if cleared & (1 << index) != 0 {
|
||||
timer.borrow_mut().update_irq(false);
|
||||
}
|
||||
|
@ -737,7 +742,7 @@ impl HPETState {
|
|||
1 << HPET_CAP_COUNT_SIZE_CAP_SHIFT |
|
||||
1 << HPET_CAP_LEG_RT_CAP_SHIFT |
|
||||
HPET_CAP_VENDER_ID_VALUE << HPET_CAP_VENDER_ID_SHIFT |
|
||||
((self.num_timers.get() - 1) as u64) << HPET_CAP_NUM_TIM_SHIFT | // indicate the last timer
|
||||
((self.get_num_timers() - 1) as u64) << HPET_CAP_NUM_TIM_SHIFT | // indicate the last timer
|
||||
(HPET_CLK_PERIOD * FS_PER_NS) << HPET_CAP_CNT_CLK_PERIOD_SHIFT, // 10 ns
|
||||
);
|
||||
|
||||
|
@ -746,7 +751,7 @@ impl HPETState {
|
|||
}
|
||||
|
||||
fn reset_hold(&self, _type: ResetType) {
|
||||
for timer in self.timers.iter().take(self.num_timers.get()) {
|
||||
for timer in self.timers.iter().take(self.get_num_timers()) {
|
||||
timer.borrow_mut().reset();
|
||||
}
|
||||
|
||||
|
@ -774,7 +779,7 @@ impl HPETState {
|
|||
GlobalRegister::try_from(addr).map(HPETRegister::Global)
|
||||
} else {
|
||||
let timer_id: usize = ((addr - 0x100) / 0x20) as usize;
|
||||
if timer_id <= self.num_timers.get() {
|
||||
if timer_id <= self.get_num_timers() {
|
||||
// TODO: Add trace point - trace_hpet_ram_[read|write]_timer_id(timer_id)
|
||||
TimerRegister::try_from(addr & 0x18)
|
||||
.map(|reg| HPETRegister::Timer(&self.timers[timer_id], reg))
|
||||
|
@ -859,8 +864,8 @@ qemu_api::declare_properties! {
|
|||
c_str!("timers"),
|
||||
HPETState,
|
||||
num_timers,
|
||||
unsafe { &qdev_prop_usize },
|
||||
usize,
|
||||
unsafe { &qdev_prop_uint8 },
|
||||
u8,
|
||||
default = HPET_MIN_TIMERS
|
||||
),
|
||||
qemu_api::define_property!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue