blob: 571b4294dc2e84d4029120fd05853a5fa62153ac [file] [log] [blame]
Rusty Russelld3561b72006-12-07 02:14:07 +01001#ifndef _ASMi386_TIME_H
2#define _ASMi386_TIME_H
3
4#include <linux/efi.h>
5#include "mach_time.h"
6
7static inline unsigned long native_get_wallclock(void)
8{
9 unsigned long retval;
10
11 if (efi_enabled)
12 retval = efi_get_time();
13 else
14 retval = mach_get_cmos_time();
15
16 return retval;
17}
18
19static inline int native_set_wallclock(unsigned long nowtime)
20{
21 int retval;
22
23 if (efi_enabled)
24 retval = efi_set_rtc_mmss(nowtime);
25 else
26 retval = mach_set_rtc_mmss(nowtime);
27
28 return retval;
29}
30
31#ifdef CONFIG_PARAVIRT
32#include <asm/paravirt.h>
Zachary Amsdenbbab4f32007-02-13 13:26:21 +010033extern unsigned long long native_sched_clock(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010034#else /* !CONFIG_PARAVIRT */
35
36#define get_wallclock() native_get_wallclock()
37#define set_wallclock(x) native_set_wallclock(x)
38#define do_time_init() time_init_hook()
39
40#endif /* CONFIG_PARAVIRT */
41
42#endif