7ce0bcfd16
Fairly straightforward implementation of VMI backend for paravirt-ops. [Adrian Bunk: some cleanups] Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Andi Kleen <ak@suse.de> Cc: Jeremy Fitzhardinge <jeremy@xensource.com> Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Chris Wright <chrisw@sous-sol.org> Signed-off-by: Andrew Morton <akpm@osdl.org>
15 lines
324 B
C
15 lines
324 B
C
#ifndef _ASMi386_TIMER_H
|
|
#define _ASMi386_TIMER_H
|
|
#include <linux/init.h>
|
|
#include <linux/pm.h>
|
|
|
|
#define TICK_SIZE (tick_nsec / 1000)
|
|
void setup_pit_timer(void);
|
|
/* Modifiers for buggy PIT handling */
|
|
extern int pit_latch_buggy;
|
|
extern int timer_ack;
|
|
extern int no_timer_check;
|
|
extern int recalibrate_cpu_khz(void);
|
|
|
|
#endif
|