x86/efi: Enforce CONFIG_RELOCATABLE for EFI boot stub
[linux/fpc-iii.git] / arch / x86 / include / asm / clocksource.h
blob16a57f4ed64de83d8e4321cbbd497d76b01239a7
1 /* x86-specific clocksource additions */
3 #ifndef _ASM_X86_CLOCKSOURCE_H
4 #define _ASM_X86_CLOCKSOURCE_H
6 #ifdef CONFIG_X86_64
8 #define VCLOCK_NONE 0 /* No vDSO clock available. */
9 #define VCLOCK_TSC 1 /* vDSO should use vread_tsc. */
10 #define VCLOCK_HPET 2 /* vDSO should use vread_hpet. */
11 #define VCLOCK_PVCLOCK 3 /* vDSO should use vread_pvclock. */
13 struct arch_clocksource_data {
14 int vclock_mode;
17 #endif /* CONFIG_X86_64 */
19 #endif /* _ASM_X86_CLOCKSOURCE_H */