summary refs log tree commit diff stats
path: root/rust/hw/timer/hpet/src/lib.rs
blob: 1954584a87e9395b9a8dfbc12a2dac11761d0f0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.

pub mod fw_cfg;
pub mod hpet;

pub const TYPE_HPET: &::std::ffi::CStr = c"hpet";