mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 22:17:03 +00:00
doxygen will warn that documented return type is found for functions that does not return anything in 1.9.4 or later versions. 'None' is not a special keyword in doxyge, it will recognize it as description to the return value that does not exist in void functions. Tracked-On: #8425 Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com> Reviewed-by: Junjie Mao <junjie.mao@intel.com>
48 lines
903 B
C
48 lines
903 B
C
/*
|
|
* Copyright (C) 2021 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef ARCH_X86_TSC_H
|
|
#define ARCH_X86_TSC_H
|
|
|
|
#include <types.h>
|
|
|
|
#define TSC_PER_MS ((uint64_t)get_tsc_khz())
|
|
|
|
/**
|
|
* @brief Read Time Stamp Counter (TSC).
|
|
*
|
|
* @return TSC value
|
|
*/
|
|
static inline uint64_t rdtsc(void)
|
|
{
|
|
uint32_t lo, hi;
|
|
|
|
asm volatile("rdtsc" : "=a" (lo), "=d" (hi));
|
|
return ((uint64_t)hi << 32U) | lo;
|
|
}
|
|
|
|
/**
|
|
* @brief Get Time Stamp Counter (TSC) frequency in KHz.
|
|
*
|
|
* @return TSC frequency in KHz
|
|
*/
|
|
uint32_t get_tsc_khz(void);
|
|
|
|
/**
|
|
* @brief Calibrate Time Stamp Counter (TSC) frequency.
|
|
*
|
|
* @remark Generic time related routines, e.g., cpu_tickrate(), us_to_ticks(),
|
|
* udelay(), etc., relies on this function being called earlier during system initialization.
|
|
*/
|
|
void calibrate_tsc(void);
|
|
|
|
/**
|
|
* @brief Initialize HPET.
|
|
*/
|
|
void hpet_init(void);
|
|
|
|
#endif /* ARCH_X86_TSC_H */
|