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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.mk48t59.h 1.5 05/17/01 18:14:25 cort
  3.  */
  4. /*
  5.  * Registers for the mk48t59 real-time-clock
  6.  */
  7. #ifndef _PPC_MK48T59_H
  8. #define _PPC_MK48T59_H
  9. /* RTC Offsets */
  10. #define MK48T59_RTC_SECONDS 0x1FF9
  11. #define MK48T59_RTC_MINUTES 0x1FFA
  12. #define MK48T59_RTC_HOURS 0x1FFB
  13. #define MK48T59_RTC_DAY_OF_WEEK 0x1FFC
  14. #define MK48T59_RTC_DAY_OF_MONTH 0x1FFD
  15. #define MK48T59_RTC_MONTH 0x1FFE
  16. #define MK48T59_RTC_YEAR 0x1FFF
  17. #define MK48T59_RTC_CONTROLA 0x1FF8
  18. #define MK48T59_RTC_CA_WRITE 0x80
  19. #define MK48T59_RTC_CA_READ 0x40
  20. #define MK48T59_RTC_CA_CALIB_SIGN 0x20
  21. #define MK48T59_RTC_CA_CALIB_MASK 0x1f
  22. #define MK48T59_RTC_CONTROLB 0x1FF9
  23. #define MK48T59_RTC_CB_STOP 0x80
  24. #ifndef BCD_TO_BIN
  25. #define BCD_TO_BIN(val) ((val)=((val)&15) + ((val)>>4)*10)
  26. #endif
  27. #ifndef BIN_TO_BCD
  28. #define BIN_TO_BCD(val) ((val)=(((val)/10)<<4) + (val)%10)
  29. #endif
  30. #endif /* _PPC_MK48T59_H */