blob: 7eff6fd27474bcb60c5971c29f00bd9f2372f759 [file] [log] [blame]
Thomas Gleixner0190dae2007-10-12 23:04:06 +02001#ifndef __ASM_I8253_H__
2#define __ASM_I8253_H__
3
4#ifdef CONFIG_X86_64
5# include <asm/8253pit.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +02006#endif
Thomas Gleixner0190dae2007-10-12 23:04:06 +02007
8/* i8253A PIT registers */
9#define PIT_MODE 0x43
10#define PIT_CH0 0x40
11#define PIT_CH2 0x42
12
13extern spinlock_t i8253_lock;
14
15#ifdef CONFIG_GENERIC_CLOCKEVENTS
16
17extern struct clock_event_device *global_clock_event;
18
19extern void setup_pit_timer(void);
20
21#endif
22
23#endif /* __ASM_I8253_H__ */