i8253.h 395 B

1234567891011121314151617181920212223
  1. #ifndef __ASM_I8253_H__
  2. #define __ASM_I8253_H__
  3. #ifdef CONFIG_X86_64
  4. # include <asm/8253pit.h>
  5. #endif
  6. /* i8253A PIT registers */
  7. #define PIT_MODE 0x43
  8. #define PIT_CH0 0x40
  9. #define PIT_CH2 0x42
  10. extern spinlock_t i8253_lock;
  11. #ifdef CONFIG_GENERIC_CLOCKEVENTS
  12. extern struct clock_event_device *global_clock_event;
  13. extern void setup_pit_timer(void);
  14. #endif
  15. #endif /* __ASM_I8253_H__ */