mc146818rtc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Machine dependent access functions for RTC registers.
  3.  */
  4. #ifndef _ASM_MC146818RTC_H
  5. #define _ASM_MC146818RTC_H
  6. #include <asm/io.h>
  7. #ifndef RTC_PORT
  8. #define RTC_PORT(x) (0x70 + (x))
  9. #define RTC_ALWAYS_BCD 1 /* RTC operates in binary mode */
  10. #endif
  11. /*
  12.  * The yet supported machines all access the RTC index register via
  13.  * an ISA port access but the way to access the date register differs ...
  14.  */
  15. #define CMOS_READ(addr) ({ 
  16. outb_p((addr),RTC_PORT(0)); 
  17. inb_p(RTC_PORT(1)); 
  18. })
  19. #define CMOS_WRITE(val, addr) ({ 
  20. outb_p((addr),RTC_PORT(0)); 
  21. outb_p((val),RTC_PORT(1)); 
  22. })
  23. #ifndef CONFIG_HPET_TIMER
  24. #define RTC_IRQ 8
  25. #else
  26. /* Temporary workaround due to IRQ routing problem. */
  27. #define RTC_IRQ 0
  28. #endif
  29. #endif /* _ASM_MC146818RTC_H */