1/*
2 * Copyright 2021 Haiku, Inc. All rights reserved.
3 * Released under the terms of the MIT License.
4 *
5 * Copyright 2008, Dustin Howett, dustin.howett@gmail.com. All rights reserved.
6 * Distributed under the terms of the MIT License.
7 *
8 * Copyright 2001, Travis Geiselbrecht. All rights reserved.
9 * Distributed under the terms of the NewOS License.
10 */
11
12
13#include "arch_timer.h"
14
15#include <boot/arch/x86/arch_cpu.h>
16#include <boot/arch/x86/arch_hpet.h>
17
18
19void
20arch_timer_init(void)
21{
22	determine_cpu_conversion_factor(2);
23	hpet_init();
24}
25