summary refs log tree commit diff stats
path: root/rust/hw/timer/hpet/src/lib.rs
blob: a95cf14ac981ecf55c409cac5545782b0139cd53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2024 Intel Corporation.
// Author(s): Zhao Liu <zhao1.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 device;
pub mod fw_cfg;

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