mc146818rtc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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