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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* asm-m68k/rtc.h
  2.  *
  3.  * Copyright Richard Zidlicky
  4.  * implementation details for genrtc/q40rtc driver
  5.  */
  6. /* permission is hereby granted to copy, modify and redistribute this code
  7.  * in terms of the GNU Library General Public License, Version 2 or later,
  8.  * at your option.
  9.  */
  10. #ifndef _ASM_RTC_H
  11. #define _ASM_RTC_H
  12. #ifdef __KERNEL__
  13. #include <linux/config.h>
  14. #include <linux/rtc.h>
  15. #include <linux/delay.h>
  16. #include <asm/machdep.h>
  17. #define RTC_PIE 0x40 /* periodic interrupt enable */
  18. #define RTC_AIE 0x20 /* alarm interrupt enable */
  19. #define RTC_UIE 0x10 /* update-finished interrupt enable */
  20. extern void gen_rtc_interrupt(unsigned long);
  21. /* some dummy definitions */
  22. #define RTC_SQWE 0x08 /* enable square-wave output */
  23. #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
  24. #define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
  25. #define RTC_DST_EN 0x01         /* auto switch DST - works f. USA only */
  26. #endif /* __KERNEL__ */
  27. #endif /* _ASM__RTC_H */