i8253.h 340 B

12345678910111213141516171819
  1. #ifndef __ASM_I8253_H__
  2. #define __ASM_I8253_H__
  3. /* i8253A PIT registers */
  4. #define PIT_MODE 0x43
  5. #define PIT_CH0 0x40
  6. #define PIT_CH2 0x42
  7. extern spinlock_t i8253_lock;
  8. #ifdef CONFIG_GENERIC_CLOCKEVENTS
  9. extern struct clock_event_device *global_clock_event;
  10. extern void setup_pit_timer(void);
  11. #endif
  12. #endif /* __ASM_I8253_H__ */