mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
hw/mips_gictimer: provide API for retrieving frequency
Provide a new function mips_gictimer_get_freq() which returns the frequency at which a GIC timer will count. This will be useful for boards which perform setup based upon this frequency. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Reviewed-by: Leon Alrae <leon.alrae@imgtec.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
This commit is contained in:
parent
08944be1d9
commit
eb90ab9437
2 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,11 @@
|
|||
|
||||
#define TIMER_PERIOD 10 /* 10 ns period for 100 Mhz frequency */
|
||||
|
||||
uint32_t mips_gictimer_get_freq(MIPSGICTimerState *gic)
|
||||
{
|
||||
return NANOSECONDS_PER_SECOND / TIMER_PERIOD;
|
||||
}
|
||||
|
||||
static void gic_vptimer_update(MIPSGICTimerState *gictimer,
|
||||
uint32_t vp_index, uint64_t now)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue