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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * PreP compliant NVRAM access
  3.  * This needs to be updated for PPC64
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version
  8.  * 2 of the License, or (at your option) any later version.
  9.  */
  10. #ifndef _PPC64_NVRAM_H
  11. #define _PPC64_NVRAM_H
  12. #define NVRAM_AS0  0x74
  13. #define NVRAM_AS1  0x75
  14. #define NVRAM_DATA 0x77
  15. /* RTC Offsets */
  16. #define MOTO_RTC_SECONDS 0x1FF9
  17. #define MOTO_RTC_MINUTES 0x1FFA
  18. #define MOTO_RTC_HOURS 0x1FFB
  19. #define MOTO_RTC_DAY_OF_WEEK 0x1FFC
  20. #define MOTO_RTC_DAY_OF_MONTH 0x1FFD
  21. #define MOTO_RTC_MONTH 0x1FFE
  22. #define MOTO_RTC_YEAR 0x1FFF
  23. #define MOTO_RTC_CONTROLA       0x1FF8
  24. #define MOTO_RTC_CONTROLB       0x1FF9
  25. #ifndef BCD_TO_BIN
  26. #define BCD_TO_BIN(val) ((val)=((val)&15) + ((val)>>4)*10)
  27. #endif
  28. #ifndef BIN_TO_BCD
  29. #define BIN_TO_BCD(val) ((val)=(((val)/10)<<4) + (val)%10)
  30. #endif
  31. #endif /* _PPC64_NVRAM_H */