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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_NVRAM_H
  2. #define _LINUX_NVRAM_H
  3. #include <linux/ioctl.h>
  4. /* /dev/nvram ioctls */
  5. #define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
  6. #define NVRAM_SETCKS _IO('p', 0x41) /* recalculate checksum */
  7. /* for all current systems, this is where NVRAM starts */
  8. #define NVRAM_FIRST_BYTE    14
  9. /* all these functions expect an NVRAM offset, not an absolute */
  10. #define NVRAM_OFFSET(x)   ((x)-NVRAM_FIRST_BYTE)
  11. #ifdef __KERNEL__
  12. /* __foo is foo without grabbing the rtc_lock - get it yourself */
  13. extern unsigned char __nvram_read_byte(int i);
  14. extern unsigned char nvram_read_byte(int i);
  15. extern void __nvram_write_byte(unsigned char c, int i);
  16. extern void nvram_write_byte(unsigned char c, int i);
  17. extern int __nvram_check_checksum(void);
  18. extern int nvram_check_checksum(void);
  19. extern void __nvram_set_checksum(void);
  20. extern void nvram_set_checksum(void);
  21. #endif
  22. #endif  /* _LINUX_NVRAM_H */