blob: 65aaa91d5850c03238ced9403da7c5ce5342a5ea [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_I8253_H
2#define _ASM_X86_I8253_H
Thomas Gleixner0190dae2007-10-12 23:04:06 +02003
Thomas Gleixner0190dae2007-10-12 23:04:06 +02004/* i8253A PIT registers */
5#define PIT_MODE 0x43
6#define PIT_CH0 0x40
7#define PIT_CH2 0x42
8
Russell King82491452011-05-08 18:55:19 +01009#define PIT_LATCH LATCH
10
Thomas Gleixnerced918e2010-02-17 16:47:10 +000011extern raw_spinlock_t i8253_lock;
Thomas Gleixner0190dae2007-10-12 23:04:06 +020012
Thomas Gleixner0190dae2007-10-12 23:04:06 +020013extern struct clock_event_device *global_clock_event;
14
15extern void setup_pit_timer(void);
16
Alan Cox466eed22008-01-30 13:33:14 +010017#define inb_pit inb_p
18#define outb_pit outb_p
19
H. Peter Anvin1965aae2008-10-22 22:26:29 -070020#endif /* _ASM_X86_I8253_H */