diff options
Diffstat (limited to 'include/asm-x86/i8253.h')
-rw-r--r-- | include/asm-x86/i8253.h | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/include/asm-x86/i8253.h b/include/asm-x86/i8253.h index b2a4f995a33f..7eff6fd27474 100644 --- a/include/asm-x86/i8253.h +++ b/include/asm-x86/i8253.h | |||
@@ -1,5 +1,23 @@ | |||
1 | #ifdef CONFIG_X86_32 | 1 | #ifndef __ASM_I8253_H__ |
2 | # include "i8253_32.h" | 2 | #define __ASM_I8253_H__ |
3 | #else | 3 | |
4 | # include "i8253_64.h" | 4 | #ifdef CONFIG_X86_64 |
5 | # include <asm/8253pit.h> | ||
5 | #endif | 6 | #endif |
7 | |||
8 | /* i8253A PIT registers */ | ||
9 | #define PIT_MODE 0x43 | ||
10 | #define PIT_CH0 0x40 | ||
11 | #define PIT_CH2 0x42 | ||
12 | |||
13 | extern spinlock_t i8253_lock; | ||
14 | |||
15 | #ifdef CONFIG_GENERIC_CLOCKEVENTS | ||
16 | |||
17 | extern struct clock_event_device *global_clock_event; | ||
18 | |||
19 | extern void setup_pit_timer(void); | ||
20 | |||
21 | #endif | ||
22 | |||
23 | #endif /* __ASM_I8253_H__ */ | ||