aboutsummaryrefslogtreecommitdiff
path: root/rust/hw/timer/hpet/src/lib.rs
blob: 5e7c961c289403b10ba3c28fce2b321602bda3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2024 Intel Corporation.
// Author(s): Zhao Liu <zhai1.liu@intel.com>
// SPDX-License-Identifier: GPL-2.0-or-later

//! # HPET QEMU Device Model
//!
//! This library implements a device model for the IA-PC HPET (High
//! Precision Event Timers) device in QEMU.

use qemu_api::c_str;

pub mod fw_cfg;
pub mod hpet;

pub const TYPE_HPET: &::std::ffi::CStr = c_str!("hpet");